fix(ci): run pnpm publish with --no-git-checks

This commit is contained in:
Lucas Nogueira 2024-08-17 00:12:24 -03:00
parent 30667714c0
commit 07a5f505d9
No known key found for this signature in database
GPG Key ID: 7C32FCA95C8C95D7
2 changed files with 3 additions and 3 deletions

View File

@ -113,8 +113,8 @@
"pipe": true
},
{
"command": "pnpm publish --access public --loglevel silly --tag next --provenance",
"dryRunCommand": "npm publish --dry-run --access public --provenance",
"command": "pnpm publish --access public --loglevel silly --tag next --provenance --no-git-checks",
"dryRunCommand": "npm publish --dry-run --access public --provenance --no-git-checks",
"pipe": true
},
{

View File

@ -38,7 +38,7 @@
"scripts": {
"build": "rollup -c --configPlugin typescript",
"npm-pack": "pnpm build && cd ./dist && npm pack",
"npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --tag next",
"npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --tag next --no-git-checks",
"ts:check": "tsc --noEmit",
"eslint:check": "eslint src/**.ts",
"eslint:fix": "eslint src/**.ts --fix"