@phosphor-tools/cli-darwin-arm64 0.1.0-dev.1 → 0.1.0-dev.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/phosphor-eda +0 -0
  2. package/package.json +8 -3
package/bin/phosphor-eda CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phosphor-tools/cli-darwin-arm64",
3
- "version": "0.1.0-dev.1",
3
+ "version": "0.1.0-dev.5",
4
4
  "description": "phosphor-eda CLI binary for macOS ARM64",
5
5
  "license": "UNLICENSED",
6
6
  "os": [
@@ -17,6 +17,11 @@
17
17
  "url": "git+ssh://git@github.com/emmapowers/phosphor-tools.git"
18
18
  },
19
19
  "publishConfig": {
20
- "access": "restricted"
20
+ "access": "public"
21
+ },
22
+ "scripts": {
23
+ "build": "../../scripts/build-cli-if-current-platform.sh darwin arm64",
24
+ "publish:npm": "[ -f bin/phosphor-eda ] && pnpm publish --access public --no-git-checks || echo 'Skipping (no binary for this platform)'",
25
+ "publish:npm-dev": "[ -f bin/phosphor-eda ] && pnpm publish --access public --tag dev --no-git-checks || echo 'Skipping (no binary for this platform)'"
21
26
  }
22
- }
27
+ }