Skip to content

Commit

Permalink
chore: fix scripts storybook -> story
Browse files Browse the repository at this point in the history
  • Loading branch information
productdevbook committed Aug 5, 2023
1 parent a1a02d9 commit 6d2a2bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Note: What is Terminals Maganger and Commands -> https://github.com/oku-ui/prim
`pnpm build:all`
4. If new package vue, go to `packages/example-package` example `packages/components` or `packages/core` copy. You can copy
this file and build your new build on it.
5. Storybook works with the command `pnpm dev:all`

Note: If only working on the core package

Expand All @@ -59,7 +58,7 @@ pnpm build:all # Build all packages
pnpm build:components # Build components package
pnpm build:core # Build core package

pnpm storybook # Run Storybook
pnpm story # Run Storybook
pnpm build:storybook # Build Storybook

pnpm dev:all # Run all packages
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dev:all": "turbo run dev --filter='./packages/**' --concurrency $(($(ls -1 packages/components packages/core | wc -l)+3))",
"dev:core": "turbo run dev --filter='./packages/core/**'",
"dev:components": "turbo run dev --filter='./packages/components/**' --concurrency $(($(ls -1 packages/components | wc -l)+3))",
"storybook": "pnpm storybook dev -p 6006 --no-open",
"story": "pnpm storybook dev -p 6006 --no-open",
"lint": "eslint . --cache ",
"lint:fix": "eslint . --fix --cache",
"play:vue": "pnpm clean:dts && turbo run dev --filter='./playground/vue3/**'",
Expand Down

0 comments on commit 6d2a2bb

Please sign in to comment.