@package-pal/cli 0.0.19 → 0.0.20

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 -2
  2. package/package.json +4 -1
package/bin/ppal CHANGED
@@ -21,9 +21,9 @@ const exec = (binPath) => {
21
21
 
22
22
  async function main() {
23
23
  const {
24
- platform, targetPackage, outputBinDir
24
+ platform, targetPackage
25
25
  } = getPlatformInfo();
26
- const { targetBinPath, binExecutableName } = getPathInfo({ platform, targetPackage });
26
+ const { targetBinPath, binExecutableName, outputBinDir } = getPathInfo({ platform, targetPackage });
27
27
  const binarySourceDir = join(outputBinDir, 'source');
28
28
 
29
29
  if (targetBinPath) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@package-pal/cli",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "CLI tool exposing core PackagePal functionality.",
5
5
  "keywords": [
6
6
  "package",
@@ -33,6 +33,9 @@
33
33
  "@package-pal/cli-darwin-x64": "0.0.2",
34
34
  "@package-pal/cli-windows-x64": "0.0.2"
35
35
  },
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
36
39
  "bin": {
37
40
  "ppal": "bin/ppal"
38
41
  },