tods-competition-factory 2.0.0-alpha.0 → 2.0.0-beta.0
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/README.md +2 -14
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.d.ts +371 -153
- package/dist/tods-competition-factory.development.cjs.js +1554 -1317
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"seeding",
|
|
23
23
|
"tennis"
|
|
24
24
|
],
|
|
25
|
-
"version": "2.0.0-
|
|
25
|
+
"version": "2.0.0-beta.0",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"private": false,
|
|
28
28
|
"homepage": "https://courthive.github.io/tods-competition-factory/",
|
|
@@ -71,15 +71,18 @@
|
|
|
71
71
|
"scripts": {
|
|
72
72
|
"commits": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges --pretty=format:'%s: %h' | sed '/factory/d'",
|
|
73
73
|
"release": "npm run release:patch",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
74
|
+
"release:alpha": "npm run commits && npm version $(semver $npm_package_version -i premajor --preid alpha) && npm publish --tag alpha",
|
|
75
|
+
"minor:alpha": "npm run commits && npm version $(semver $npm_package_version -i preminor --preid alpha) && npm publish --tag alpha",
|
|
76
|
+
"patch:alpha": "npm run commits && npm version $(semver $npm_package_version -i prerelease --preid alpha) && npm publish --tag alpha",
|
|
77
|
+
"release:beta": "npm run commits && npm version $(semver $npm_package_version -i prerelease --preid beta) && npm publish --tag beta",
|
|
78
|
+
"minor:beta": "npm run commits && npm version $(semver $npm_package_version -i preminor --preid beta) && npm publish --tag beta",
|
|
79
|
+
"patch:beta": "npm run commits && npm version $(semver $npm_package_version -i prerelease --preid beta) && npm publish --tag beta",
|
|
77
80
|
"release:major": "npm run commits && npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
|
|
78
81
|
"release:minor": "npm run commits && npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
|
|
79
82
|
"release:patch": "npm run commits && npm version $(semver $npm_package_version -i patch) && npm publish --tag latest",
|
|
80
83
|
"start": "rollup --config -w",
|
|
81
84
|
"build": "rimraf dist && rollup --config",
|
|
82
|
-
"test": "vitest",
|
|
85
|
+
"test": "VITE_CJS_IGNORE_WARNING=true vitest",
|
|
83
86
|
"tuic": "vitest --ui --coverage.enabled",
|
|
84
87
|
"tui": "vitest --ui",
|
|
85
88
|
"coverage": "vitest run --coverage",
|
|
@@ -129,7 +132,7 @@
|
|
|
129
132
|
"agadoo": "^3.0.0",
|
|
130
133
|
"ajv": "8.12.0",
|
|
131
134
|
"ajv-formats": "2.1.1",
|
|
132
|
-
"c8": "
|
|
135
|
+
"c8": "9.0.0",
|
|
133
136
|
"chalk": "^5.2.0",
|
|
134
137
|
"esbuild": "0.19.11",
|
|
135
138
|
"eslint": "8.56.0",
|
|
@@ -149,7 +152,7 @@
|
|
|
149
152
|
"prettier-eslint": "16.2.0",
|
|
150
153
|
"quicktype": "23.0.80",
|
|
151
154
|
"rimraf": "5.0.5",
|
|
152
|
-
"rollup": "4.9.
|
|
155
|
+
"rollup": "4.9.3",
|
|
153
156
|
"rollup-plugin-dts": "6.1.0",
|
|
154
157
|
"rollup-plugin-esbuild": "6.1.0",
|
|
155
158
|
"semver": "^7.5.1",
|