@tpitre/story-ui 1.5.2 โ 1.7.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 +6 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -17,6 +17,10 @@ Story UI is a flexible, AI-powered tool that generates Storybook stories for any
|
|
|
17
17
|
- ๐งน **Cleanup Utilities**: Built-in cleanup for old generated stories
|
|
18
18
|
- ๐จ **Built-in UI**: Includes a Storybook panel for easy interaction
|
|
19
19
|
|
|
20
|
+
## Roadmap
|
|
21
|
+
|
|
22
|
+
Check out our [development roadmap](./ROADMAP.md) to see what's coming next and how you can contribute to the future of Story UI. We're planning exciting features like multi-framework support, story sharing, and advanced collaboration tools.
|
|
23
|
+
|
|
20
24
|
## Quick Start
|
|
21
25
|
|
|
22
26
|
### 1. Installation
|
|
@@ -489,7 +493,6 @@ npx story-ui config --generate --type=json
|
|
|
489
493
|
```bash
|
|
490
494
|
CLAUDE_API_KEY=your_claude_api_key_here
|
|
491
495
|
CLAUDE_MODEL=claude-sonnet-4-20250514 # Optional, defaults to latest Sonnet
|
|
492
|
-
PORT=4001 # Optional, defaults to 4001
|
|
493
496
|
```
|
|
494
497
|
|
|
495
498
|
## Production-Ready Deployment
|
|
@@ -552,6 +555,8 @@ npx story-ui init --auto-detect
|
|
|
552
555
|
5. Iterate and refine layouts
|
|
553
556
|
6. Implement approved layouts in actual codebase
|
|
554
557
|
|
|
558
|
+
|
|
559
|
+
|
|
555
560
|
### ๐ **Production Monitoring**
|
|
556
561
|
|
|
557
562
|
```bash
|
|
@@ -694,4 +699,3 @@ module.exports = {
|
|
|
694
699
|
|
|
695
700
|
- ๐ [Documentation](https://github.com/southleft/story-ui#readme)
|
|
696
701
|
- ๐ [Issues](https://github.com/southleft/story-ui/issues)
|
|
697
|
-
- ๐ฌ [Discussions](https://github.com/southleft/story-ui/discussions)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tpitre/story-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "AI-powered Storybook story generator for any React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"release": "semantic-release",
|
|
25
25
|
"release:dry-run": "semantic-release --dry-run",
|
|
26
26
|
"commit": "cz",
|
|
27
|
-
"prepare": "husky"
|
|
27
|
+
"prepare": "husky",
|
|
28
|
+
"push": "./scripts/push.sh"
|
|
28
29
|
},
|
|
29
30
|
"keywords": [
|
|
30
31
|
"storybook",
|