skillgrid 0.0.16-beta → 0.0.18-alpha.20250911T13103

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 +11 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillgrid",
3
- "version": "0.0.16-beta",
3
+ "version": "0.0.18-alpha.20250911T13103",
4
4
  "description": "Skillgrid Components Library",
5
5
  "keywords": [
6
6
  "react",
@@ -54,7 +54,15 @@
54
54
  "docs:dev": "vitepress dev docs",
55
55
  "docs:build": "vitepress build docs",
56
56
  "docs:preview": "vitepress preview docs",
57
- "docs": "yarn docs:dev"
57
+ "docs": "yarn docs:dev",
58
+ "version:major": "node ./scripts/publish/version.js major",
59
+ "version:minor": "node ./scripts/publish/version.js minor",
60
+ "version:patch": "node ./scripts/publish/version.js patch",
61
+ "publish:current": "node ./scripts/publish/publish.js current",
62
+ "publish:alpha": "node ./scripts/publish/publish.js alpha",
63
+ "publish:beta": "node ./scripts/publish/publish.js beta",
64
+ "publish:next": "node ./scripts/publish/publish.js next",
65
+ "publish:latest": "node ./scripts/publish/publish.js latest"
58
66
  },
59
67
  "devDependencies": {
60
68
  "@eslint/js": "^9.25.0",
@@ -136,4 +144,4 @@
136
144
  "wrap-ansi": "7.0.0",
137
145
  "cliui": "7.0.4"
138
146
  }
139
- }
147
+ }