hans-ui-design-lib 1.0.21 → 1.0.22

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "hans-ui-design-lib",
3
3
  "description": "UI Design System Base Lib",
4
4
  "author": "Victor Hanszman",
5
- "version": "1.0.21",
5
+ "version": "1.0.22",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "main": "dist/index.cjs.js",
@@ -38,6 +38,9 @@
38
38
  "build:cdn": "vite build --mode cdn && npm run postbuild:cdn",
39
39
  "build:cdn-local": "npm run build:cdn && vite preview --outDir cdn --port 5173",
40
40
  "postbuild:cdn": "node ./src/scripts/create-cdn-index.js",
41
+ "release:patch": "npm run lint && npm run test:coverage && npm version patch --no-git-tag-version && npm run build && npm run build:cdn && npm run build:storybook && npm publish",
42
+ "release:minor": "npm run lint && npm run test:coverage && npm version minor --no-git-tag-version && npm run build && npm run build:cdn && npm run build:storybook && npm publish",
43
+ "release:major": "npm run lint && npm run test:coverage && npm version major --no-git-tag-version && npm run build && npm run build:cdn && npm run build:storybook && npm publish",
41
44
  "publish:patch": "npm version patch --no-git-tag-version && npm publish",
42
45
  "publish:minor": "npm version minor --no-git-tag-version && npm publish",
43
46
  "publish:major": "npm version major --no-git-tag-version && npm publish",