@soloworks/smking-wizard 0.2.0 → 0.2.1
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/CHANGELOG.md +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @soloworks/smking-wizard
|
|
2
2
|
|
|
3
|
+
## 0.2.1 — 2026-05-14
|
|
4
|
+
|
|
5
|
+
**Fixes broken 0.2.0 install (404 on `@smking/shared`).**
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- `@smking/shared` (monorepo internal workspace package, not on npm) leaked into the published `dependencies` block on 0.2.0, so `npx @soloworks/smking-wizard` failed with `404 @smking/shared@0.0.0 is not in this registry`. Moved to `devDependencies` — the package is already inlined into `dist/bin.mjs` via tsdown's `noExternal` setting, so it's never needed at runtime by customers.
|
|
10
|
+
|
|
11
|
+
0.2.0 has been deprecated on npm. All users should jump straight from 0.1.0 to 0.2.1.
|
|
12
|
+
|
|
3
13
|
## 0.2.0 — 2026-05-14
|
|
4
14
|
|
|
5
15
|
**CMS webhook secret integration.**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soloworks/smking-wizard",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "AI-powered install wizard for smking SDKs — npx @soloworks/smking-wizard auto-installs smking/laravel or @soloworks/smking-next with OAuth + a Claude agent that runs doctor and auto-fixes failures.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/sillyleo/smking/tree/main/packages/smking-wizard",
|
|
@@ -39,8 +39,7 @@
|
|
|
39
39
|
"react": "^19.0.0",
|
|
40
40
|
"yargs": "^17.7.2",
|
|
41
41
|
"zod": "^4.0.0",
|
|
42
|
-
"zustand": "^5.0.0"
|
|
43
|
-
"@smking/shared": "0.0.0"
|
|
42
|
+
"zustand": "^5.0.0"
|
|
44
43
|
},
|
|
45
44
|
"devDependencies": {
|
|
46
45
|
"@types/node": "^22.0.0",
|
|
@@ -48,7 +47,8 @@
|
|
|
48
47
|
"@types/yargs": "^17.0.0",
|
|
49
48
|
"tsdown": "^0.18.0",
|
|
50
49
|
"typescript": "^5",
|
|
51
|
-
"vitest": "^4.1.5"
|
|
50
|
+
"vitest": "^4.1.5",
|
|
51
|
+
"@smking/shared": "0.0.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "tsdown",
|