Skip to content

Commit

Permalink
Update lockfile in changeset version script
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Nov 5, 2024
1 parent a92e2d3 commit d6c5b8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
id: changesets
uses: changesets/action@v1
with:
version: npm run version
publish: npm run release
title: Publish <version>
env:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
"generate:tests": "tsx scripts/generateNewClientTests",
"lint": "biome lint --write",
"prepublishOnly": "tsx scripts/testChangedPackageNames",
"prerelease": "npm run build && changeset version && npm i --lockfile-only",
"release": "changeset publish",
"test": "vitest"
"release": "npm run build && changeset publish",
"test": "vitest",
"version": "changeset version && npm i --package-lock-only"
},
"dependencies": {
"jscodeshift": "17.1.1"
Expand Down

0 comments on commit d6c5b8e

Please sign in to comment.