Skip to content

Commit

Permalink
💚 Target package.json so pkg config gets read
Browse files Browse the repository at this point in the history
  • Loading branch information
segersniels committed Jul 3, 2022
1 parent 13da961 commit b13f2cf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@
"files": [
"dist"
],
"pkg": {
"assets": "dist/*"
},
"scripts": {
"compile:tsup": "tsup index.ts --clean --target node12 --minify --keep-names --out-dir dist && make copy",
"compile:wasm": "make build",
"compile": "yarn compile:wasm && yarn compile:tsup",
"build": "pkg dist/index.js --target node16 -o ./bin/supdock",
"build:ci": "pkg dist/index.js --targets node16-linux-x64,node16-macos-x64,node16-win-x64 --out-path ./bin",
"build": "pkg . --target node16 -o ./bin/supdock",
"build:ci": "pkg . --targets node16-linux-x64,node16-macos-x64,node16-win-x64 --out-path ./bin --",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"check:typescript": "tsc --noEmit --skipLibCheck --project .",
Expand Down

0 comments on commit b13f2cf

Please sign in to comment.