Skip to content

Commit

Permalink
build: add release e2e script and tweak bumpp usage
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Jan 24, 2024
1 parent 91d8e3d commit f096adc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
"lint": "eslint --ext .cjs,.js,.ts,.vue . && prettier --check .",
"lint:fix": "eslint --fix --ext .cjs,.js,.ts,.vue . && prettier --write .",
"prepare": "husky install",
"release": "pnpm release:check && pnpm release:version && pnpm release:publish",
"release": "pnpm release:check && pnpm release:e2e && pnpm release:version && pnpm release:publish",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:check": "pnpm lint && pnpm clean && pnpm build && pnpm test",
"release:e2e": "pnpm --filter e2e e2e:ci:dev && pnpm --filter e2e e2e:ci:build",
"release:publish": "pnpm -r publish --tag next",
"release:version": "bumpp package.json packages/*/package.json --execute=\"pnpm release:changelog\" --commit \"build: publish v%s\" --all",
"release:version": "bumpp -r --execute=\"pnpm release:changelog\" --commit \"build: publish v%s\" --all",
"test": "vitest run",
"test:cov": "vitest run --coverage"
},
Expand Down

0 comments on commit f096adc

Please sign in to comment.