@incursa/ui-kit 0.3.3 → 0.3.4

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.
Files changed (1) hide show
  1. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incursa/ui-kit",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "private": false,
5
5
  "description": "Reusable UI kit for data-heavy business applications.",
6
6
  "keywords": [
@@ -49,9 +49,9 @@
49
49
  "build:js": "node -e \"require('fs').copyFileSync('src/inc-design-language.js', 'dist/inc-design-language.js')\"",
50
50
  "build": "npm run build:css && npm run build:css:min && npm run build:js",
51
51
  "preversion": "npm run build && npm pack --dry-run",
52
- "release:patch": "npm version patch",
53
- "release:minor": "npm version minor",
54
- "release:major": "npm version major",
52
+ "release:patch": "node scripts/assert-changelog-version.mjs patch && npm version patch",
53
+ "release:minor": "node scripts/assert-changelog-version.mjs minor && npm version minor",
54
+ "release:major": "node scripts/assert-changelog-version.mjs major && npm version major",
55
55
  "pack:tarball": "npm pack",
56
56
  "package": "npm run build && npm run pack:tarball"
57
57
  },