8000 chore: do not publish artifacts without the built executables · pnpm/pnpm@97197e7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 97197e7

Browse files
committed
chore: do not publish artifacts without the built executables
1 parent 55a5ca7 commit 97197e7

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

pnpm/artifacts/linux-arm64/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"bugs": {
1313
"url": "https://github.com/pnpm/pnpm/issues"
1414
},
15+
"scripts": {
16+
"prepublishOnly": "test -f pnpm || (echo 'Error: pnpm is missing' && exit 1)"
17+
},
1518
"devDependencies": {
1619
"@pnpm/linux-arm64": "workspace:*"
1720
},

pnpm/artifacts/linux-x64/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"bugs": {
1313
"url": "https://github.com/pnpm/pnpm/issues"
1414
},
15+
"scripts": {
16+
"prepublishOnly": "test -f pnpm || (echo 'Error: pnpm is missing' && exit 1)"
17+
},
1518
"devDependencies": {
1619
"@pnpm/linux-x64": "workspace:*"
1720
},

pnpm/artifacts/macos-arm64/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"bugs": {
1313
"url": "https://github.com/pnpm/pnpm/issues"
1414
},
15+
"scripts": {
16+
"prepublishOnly": "test -f pnpm || (echo 'Error: pnpm is missing' && exit 1)"
17+
},
1518
"devDependencies": {
1619
"@pnpm/macos-arm64": "workspace:*"
1720
},

pnpm/artifacts/macos-x64/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"bugs": {
1313
"url": "https://github.com/pnpm/pnpm/issues"
1414
},
15+
"scripts": {
16+
"prepublishOnly": "test -f pnpm || (echo 'Error: pnpm is missing' && exit 1)"
17+
},
1518
"devDependencies": {
1619
"@pnpm/macos-x64": "workspace:*"
1720
},

pnpm/artifacts/win-arm64/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"bugs": {
1313
"url": "https://github.com/pnpm/pnpm/issues"
1414
},
15+
"scripts": {
16+
"prepublishOnly": "test -f pnpm.exe || (echo 'Error: pnpm.exe is missing' && exit 1)"
17+
},
1518
"devDependencies": {
1619
"@pnpm/win-arm64": "workspace:*"
1720
},

pnpm/artifacts/win-x64/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"bugs": {
1313
"url": "https://github.com/pnpm/pnpm/issues"
1414
},
15+
"scripts": {
16+
"prepublishOnly": "test -f pnpm.exe || (echo 'Error: pnpm.exe is missing' && exit 1)"
17+
},
1518
"devDependencies": {
1619
"@pnpm/win-x64": "workspace:*"
1720
},

0 commit comments

Comments
 (0)
0