Skip to content

Commit

Permalink
chore(package): add postinstall script to release process
Browse files Browse the repository at this point in the history
Updated the `release` script in `package.json` to include
`pnpm run postinstall`. This ensures that any necessary
post-installation steps are executed during the release
process, improving the overall setup for users after
publishing.
  • Loading branch information
s00d committed Jan 20, 2025
1 parent c1f8d79 commit 582e0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"dev:generate": "nuxi generate playground",
"release": "pnpm run lint && pnpm run typecheck && pnpm run test:types && pnpm run test && pnpm run test:workspaces && pnpm run prepack && changelogen --release && pnpm publish -r && git push --follow-tags",
"release": "pnpm run lint && pnpm run typecheck && pnpm run test:types && pnpm run test && pnpm run test:workspaces && pnpm run postinstall && changelogen --release && pnpm publish -r && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "playwright test",
Expand Down

0 comments on commit 582e0c8

Please sign in to comment.