courthive-components 0.8.6 → 0.8.8

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "courthive-components",
3
- "version": "0.8.6",
3
+ "version": "0.8.8",
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 build && npm run commits && npm run release:patch",
38
+ "release": "npm run release:patch",
39
39
  "dev": "vite",
40
- "build": "vite build && ./addVersion $npm_package_version",
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 build && npm run commits && npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
52
- "release:minor": "npm run build && npm run commits && npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
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",
@@ -84,7 +86,7 @@
84
86
  "class-variance-authority": "0.7.1",
85
87
  "classnames": "2.5.1",
86
88
  "dayjs": "1.11.19",
87
- "tods-competition-factory": "2.2.34",
89
+ "tods-competition-factory": "2.2.35",
88
90
  "vanillajs-datepicker": "1.3.4"
89
91
  }
90
92
  }