webanvil 0.0.17 → 0.0.18
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 +4 -2
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -167,8 +167,10 @@ export default defineConfig({
|
|
|
167
167
|
### Storybook
|
|
168
168
|
|
|
169
169
|
WebAnvil includes Storybook, the supported Vite framework adapters, Vitest's
|
|
170
|
-
browser support, and Chromium.
|
|
171
|
-
|
|
170
|
+
browser support, and Chromium. It exposes that exact Storybook release as a
|
|
171
|
+
peer dependency, so package-manager-installed addons resolve against the same
|
|
172
|
+
runtime. Add a Storybook configuration, addons, and your project's normal
|
|
173
|
+
framework dependencies.
|
|
172
174
|
|
|
173
175
|
For a Node design-system project, configure Storybook beside the package build:
|
|
174
176
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webanvil",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "A unified CLI for building, testing, linting, formatting, and type-checking JavaScript and TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"build-tool",
|
|
@@ -161,6 +161,9 @@
|
|
|
161
161
|
"obuild": "^0.4.38",
|
|
162
162
|
"unplugin": "^3.3.0"
|
|
163
163
|
},
|
|
164
|
+
"peerDependencies": {
|
|
165
|
+
"storybook": "10.5.9"
|
|
166
|
+
},
|
|
164
167
|
"engines": {
|
|
165
168
|
"node": "^22.18.0 || >=24.11.0"
|
|
166
169
|
}
|