Skip to content

Commit

Permalink
fix pkg error with version
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Jan 10, 2024
1 parent b399565 commit 755db1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
node-version: "18"

- name: Install dependencies
run: npm install
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"cli": "tsx ./cli.ts",
"build": "tsup",
"postbuild": "ncc build ./dist/cli.cjs -o ./bin && mv ./bin/index.cjs ./bin/seam.cjs",
"build:binaries": "pkg --out-path bin ./bin/seam.cjs",
"build:binaries": "pkg -t node18-macos-arm64,node18-win-x64,node18-linux-x64,node18-macos-x64 --out-path bin ./bin/seam.cjs",
"build:binaries:mac": "pkg --out-path bin -t node18-macos-arm64 ./bin/seam.cjs",
"format": "prettier --write --ignore-path .gitignore .",
"typecheck": "tsc --noEmit"
Expand Down

0 comments on commit 755db1b

Please sign in to comment.