Merged
Conversation
Add scripts/dev-install-mac.sh and a pnpm dev:install:mac shortcut so contributors can build a local production bundle, install it into /Applications, and launch it with a single command. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a one-shot developer workflow for building and installing Spool from source on Apple Silicon macs, so contributors can quickly smoke-test a production build without copy-pasting commands.
scripts/dev-install-mac.sh— builds viapnpm -F @spool/app build:mac, quits any running Spool, replaces/Applications/Spool.app, strips thecom.apple.quarantineattribute (unsigned local builds would otherwise be blocked by Gatekeeper), then launches the app.pnpm dev:install:macshortcut added to the rootpackage.json.CONTRIBUTING.mdgets a short section explaining when to use it.Design notes
dev-install-mac.shrather than a cross-platform script withunamebranching. All current contributors are on macOS; a siblingdev-install-linux.shcan be added when we onboard a Linux developer, without touching the mac path.build:mactarget (--arm64). Fails fast with a clear error on Intel or non-Darwin.packages/landing/public/install.shand is unaffected.Test plan
pnpm dev:install:macon a clean checkout on an M-series mac/Applications/Spool.appis replaced and launches without a Gatekeeper prompt🤖 Generated with Claude Code