Skip to content

Commit

Permalink
Use --no-git-checks to publish snapshot release with dirty working tree
Browse files Browse the repository at this point in the history
  • Loading branch information
s1hofmann committed Feb 15, 2024
1 parent e81bddc commit 90fd3c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/nut.js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"test": "jest --runInBand",
"coverage": "jest --coverage --runInBand --logHeapUsage",
"coverage:clean": "rimraf coverage",
"publish:next": "pnpm publish --tag next",
"publish:next": "pnpm publish --tag next --no-git-checks",
"prepublishOnly": "pnpm run compile",
"versionBump": "bump --tag --push --all",
"typedoc": "typedoc --options ./typedoc.js --entryPointStrategy expand ./lib"
Expand Down
2 changes: 1 addition & 1 deletion core/provider-interfaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"clean": "rimraf dist",
"compile": "pnpm run clean && tsc -p .",
"publish:next": "pnpm publish --tag next",
"publish:next": "pnpm publish --tag next --no-git-checks",
"prepublishOnly": "pnpm run compile"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion core/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"coverage:clean": "rimraf coverage",
"clean": "rimraf dist",
"compile": "pnpm run clean && tsc -p .",
"publish:next": "pnpm publish --tag next",
"publish:next": "pnpm publish --tag next --no-git-checks",
"prepublishOnly": "pnpm run compile"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion providers/clipboardy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test": "jest --runInBand",
"clean": "rimraf dist",
"compile": "pnpm run clean && tsc -p .",
"publish:next": "pnpm publish --tag next",
"publish:next": "pnpm publish --tag next --no-git-checks",
"prepublishOnly": "pnpm run compile"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion providers/libnut/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test": "jest --runInBand",
"coverage": "jest --coverage --runInBand",
"coverage:clean": "rimraf coverage",
"publish:next": "pnpm publish --tag next",
"publish:next": "pnpm publish --tag next --no-git-checks",
"prepublishOnly": "pnpm run compile",
"version": "npm version --no-git-tag -f"
},
Expand Down

0 comments on commit 90fd3c3

Please sign in to comment.