Skip to content

Commit

Permalink
build: specify node 18 in pkg command
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastCicada committed Feb 6, 2024
1 parent 19b25e0 commit b50ba52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"build": "babel src --keep-file-extension --out-dir build --copy-files && cp package.json ./build",
"build-migrations": "babel migrations --keep-file-extension --out-dir dist/migrations --copy-files",
"prepare-binary": "rm -rf dist && mkdir dist",
"create-win-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-win-x64 --out-path dist",
"create-mac-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-macos-x64 --out-path dist",
"create-linux-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-linux-x64 --out-path dist",
"create-linux-arm64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-linux-arm64 --out-path dist"
"create-win-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node18-win-x64 --out-path dist",
"create-mac-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node18-macos-x64 --out-path dist",
"create-linux-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node18-linux-x64 --out-path dist",
"create-linux-arm64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node18-linux-arm64 --out-path dist"
},
"pkg": {
"scripts": "package.json",
Expand Down

0 comments on commit b50ba52

Please sign in to comment.