courthive-components 0.8.5 → 0.8.7
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/dist/courthive-components.es.js +1306 -1277
- package/dist/courthive-components.umd.js +11 -11
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "courthive-components",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.7",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=16.16.0 < 25"
|
|
6
6
|
},
|
|
@@ -35,9 +35,11 @@
|
|
|
35
35
|
"homepage": "https://courthive.github.io/courthive-component",
|
|
36
36
|
"scripts": {
|
|
37
37
|
"commits": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges --pretty=format:'%s: %h' | sed '/courthive-components/d'",
|
|
38
|
-
"release": "npm run
|
|
38
|
+
"release": "npm run release:patch",
|
|
39
39
|
"dev": "vite",
|
|
40
40
|
"build": "vite build",
|
|
41
|
+
"postbuild": "./addVersion $npm_package_version",
|
|
42
|
+
"prepublishOnly": "npm run build",
|
|
41
43
|
"preview": "vite preview",
|
|
42
44
|
"storybook": "storybook dev -p 6006",
|
|
43
45
|
"build-storybook": "storybook build",
|
|
@@ -48,9 +50,9 @@
|
|
|
48
50
|
"lint": "eslint src --fix --cache",
|
|
49
51
|
"lint:report": "eslint src & eslint --cache src -f json > eslint-report.json",
|
|
50
52
|
"format": "prettier --write src",
|
|
51
|
-
"release:major": "npm run
|
|
52
|
-
"release:minor": "npm run
|
|
53
|
-
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest"
|
|
53
|
+
"release:major": "npm run commits && npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
|
|
54
|
+
"release:minor": "npm run commits && npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
|
|
55
|
+
"release:patch": "npm run commits && npm version $(semver $npm_package_version -i patch) && npm publish --tag latest"
|
|
54
56
|
},
|
|
55
57
|
"lint-staged": {
|
|
56
58
|
"*.{js,ts}": "eslint --cache --fix",
|