@policystudio/policy-studio-ui-vue 1.0.41 → 1.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,10 +59,10 @@ jobs:
59
59
 
60
60
  - name: Install dependencies
61
61
  if: steps.check.outputs.changed == 'true' && success()
62
- run: npm ci
62
+ run: npm install
63
63
 
64
64
  - name: Publish to npm.js
65
65
  if: steps.check.outputs.changed == 'true' && success()
66
- run: npm publish
66
+ run: npm run full-publish
67
67
  env:
68
68
  NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.0.41",
3
+ "version": "1.0.44",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -15,7 +15,7 @@
15
15
  "build-storybook": "STORYBOOK_ENV=production build-storybook",
16
16
  "build-tailwind": "postcss src/assets/scss/base.scss -o dist/css/psui_styles.css",
17
17
  "build-temp-tailwind": "postcss src/assets/scss/base.scss -o temp/css/psui_styles.css",
18
- "publish": "npm run lint && npm run build-tailwind && build-storybook && npm publish",
18
+ "full-publish": "npm run lint && npm run build-tailwind && build-storybook && npm publish",
19
19
  "serve": "concurrently --kill-others \"npm run watch-storybook\" \"npm run watch-tailwind\"",
20
20
  "serve-prod": "concurrently --kill-others \"npm run watch-storybook\" \"npm run watch-prod-tailwind\"",
21
21
  "watch-storybook": "start-storybook -p 6006",