Skip to content

Commit

Permalink
chore: fix release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwuapps committed Apr 7, 2024
1 parent fd38087 commit 1eb21f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions packages/demo-frame/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"prerelease": "npm run build",
"release": "npm publish"
"release": "npm run build && npm publish"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"rollup": "rollup -c",
"cpyScss": "cpy \"node_modules/@go-ui/core/src/global/scss/**/*\" \"dist/scss\"",
"cpyCss": "cpy \"node_modules/@go-ui/core/dist/go-ui/go-ui.css\" \"dist\" --flat",
"release": "npm publish"
"release": "pnpm run build &&npm publish"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "rimraf dist && vue-tsc && vite build && pnpm run cpyCss && pnpm run cpyScss",
"cpyScss": "cpy \"node_modules/@go-ui/core/src/global/scss/**/*\" \"dist/scss\"",
"cpyCss": "cpy \"node_modules/@go-ui/core/dist/go-ui/*.css\" \"dist\"",
"release": "npm publish"
"release": "pnpm run build && npm publish"
},
"dependencies": {
"@duetds/date-picker": "^1.4.0",
Expand Down

0 comments on commit 1eb21f9

Please sign in to comment.