Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ endif
LOC_DEBUG := target/debug/loc$(EXE_SUFFIX)
LOC_RELEASE := target/release/loc$(EXE_SUFFIX)
LOCALITY_FILE_PROVIDER_TARGET ?= notion-main
PROMPT_TEST_APP_ARGS ?=

ifeq ($(OS),Windows_NT)
CLEAN_START_PLAN_CMD := & '.\scripts\clean-start.ps1'
Expand Down Expand Up @@ -148,6 +149,10 @@ prepare-macos-file-provider: ## Stage the macOS File Provider extension for Taur
install-macos-file-provider: ## Install/register the local macOS File Provider development bundle.
platform/macos/LocalityFileProvider/scripts/install-dev-bundle.sh

.PHONY: install-macos-prompt-test-app
install-macos-prompt-test-app: build-tauri ## Build, reset, install, register, and launch a fresh macOS File Provider prompt test app.
scripts/install-macos-prompt-test-app.sh $(PROMPT_TEST_APP_ARGS)

.PHONY: prepare-desktop-dev-sidecars
prepare-desktop-dev-sidecars: ## Build debug desktop sidecars used by Tauri dev.
$(DESKTOP_NPM) run dev:prepare
Expand Down Expand Up @@ -204,6 +209,10 @@ test-linux-publish-config: ## Validate Linux package publish configuration.
test-macos-publish-config: ## Validate macOS package publish configuration.
tests/macos_publish_config.sh

.PHONY: test-macos-prompt-test-app-installer
test-macos-prompt-test-app-installer: ## Validate the macOS prompt test app installer dry-run plan.
bash scripts/install-macos-prompt-test-app.test.sh

.PHONY: test-windows-publish-config
test-windows-publish-config: ## Validate Windows package publish configuration.
tests/windows_publish_config.sh
Expand Down
Loading
Loading