courthive-components 1.0.2 → 1.0.3

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": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "engines": {
5
5
  "node": ">=20.19.0 < 25"
6
6
  },
@@ -44,7 +44,6 @@
44
44
  "test:ui": "vitest --ui",
45
45
  "dev": "vite",
46
46
  "build": "vite build",
47
- "postbuild": "./addVersion $npm_package_version",
48
47
  "prepublishOnly": "npm run build",
49
48
  "preview": "vite preview",
50
49
  "storybook": "storybook dev -p 6006",
@@ -56,10 +55,10 @@
56
55
  "lint": "eslint src --fix --cache",
57
56
  "lint:report": "eslint src & eslint --cache src -f json > eslint-report.json",
58
57
  "format": "prettier --write src",
59
- "release:major": "npm run commits && npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
60
- "release:minor": "npm run commits && npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
61
- "release:patch": "npm run commits && npm version $(semver $npm_package_version -i patch) && npm publish --tag latest",
62
- "release:beta": "npm run commits && npm version $(semver $npm_package_version -i prerelease --preid beta) && npm publish --tag beta",
58
+ "release:major": "npm run commits && npm version $(semver $npm_package_version -i major) && git push && git push --tags",
59
+ "release:minor": "npm run commits && npm version $(semver $npm_package_version -i minor) && git push && git push --tags",
60
+ "release:patch": "npm run commits && npm version $(semver $npm_package_version -i patch) && git push && git push --tags",
61
+ "release:beta": "npm run commits && npm version $(semver $npm_package_version -i prerelease --preid beta) && git push && git push --tags",
63
62
  "patch:beta": "npm run commits && npm version $(semver $npm_package_version -i prerelease --preid beta) && npm publish --tag beta"
64
63
  },
65
64
  "lint-staged": {
@@ -108,12 +107,7 @@
108
107
  "focus-trap": "^8.0.0",
109
108
  "timepicker-ui": "^4.1.2",
110
109
  "tippy.js": "6.3.7",
111
- "tods-competition-factory": "^3.1.0",
110
+ "tods-competition-factory": "^3.1.2",
112
111
  "vanillajs-datepicker": "1.3.4"
113
- },
114
- "pnpm": {
115
- "overrides": {
116
- "tods-competition-factory": "link:../factory"
117
- }
118
112
  }
119
113
  }