@package-pal/cli 0.0.3 → 0.0.4

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/ppal +2 -0
  2. package/package.json +3 -2
package/bin/ppal ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ throw new Error("Native binary not linked yet. Re-run `npm install` or check postinstall script.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@package-pal/cli",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "CLI tool exposing core PackagePal functionality.",
5
5
  "keywords": [
6
6
  "package",
@@ -38,7 +38,8 @@
38
38
  "dppal": "./src/index.ts"
39
39
  },
40
40
  "files": [
41
- "./src/link-binary.js"
41
+ "src/link-binary.js",
42
+ "bin/ppal"
42
43
  ],
43
44
  "scripts": {
44
45
  "postinstall": "node ./src/link-binary.js"