Skip to content

Commit

Permalink
CI: fix prepack (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm authored Sep 21, 2024
1 parent 20f205a commit dbbce40
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@ packages/*/dist/
packages/*/test/fixtures/*/build/
packages/*/junit.xml
packages/*/LICENSE
packages/*/README.md
2 changes: 1 addition & 1 deletion packages/chdman-darwin-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && pwd && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-darwin-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-linux-arm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-linux-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-linux-ia32/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-linux-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-win32-ia32/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/chdman-win32-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"build": "tsc --build --verbose",
"prepack": "npm run build && cp -f ../../{LICENSE,README.md} ./",
"prepack": "npm run build && cp -f ../../LICENSE ../../README.md ./",
"postpack": "rm ./LICENSE ./README.md"
},
"description": "💿 chdman binaries and wrapper for Node.js.",
Expand Down

0 comments on commit dbbce40

Please sign in to comment.