Skip to content

Commit 52ab0a0

Browse files
authored
chore: align changesets setup with svelte core (#10280)
1 parent 4069622 commit 52ab0a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: changesets/action@v1
3636
with:
3737
# This expects you to have a script called release which does a build for your packages and calls changeset publish
38-
publish: pnpm release
38+
publish: pnpm changeset:release
3939
version: pnpm changeset:version
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"lint": "pnpm -r lint && eslint --cache --cache-location node_modules/.eslintcache 'packages/**/*.js'",
1515
"format": "pnpm -r format",
1616
"precommit": "pnpm format && pnpm lint",
17-
"changeset:version": "pnpm -r generate:version && git add --all",
18-
"release": "changeset publish",
17+
"changeset:version": "changeset version && pnpm -r generate:version && git add --all",
18+
"changeset:release": "changeset publish",
1919
"start": "cd sites/kit.svelte.dev && npm run dev"
2020
},
2121
"devDependencies": {

0 commit comments

Comments
 (0)