Skip to content

Commit

Permalink
fix(): Build command.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Dec 19, 2023
1 parent 89c0d1c commit 0defea2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: npm ci

- name: Build library and storybook
run: npm run build-lib && npm run build-storybook
run: npm run build && npm run build-storybook

- name: Setup pages.
uses: actions/configure-pages@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Based on [shadcn](https://ui.shadcn.com/), an opinionated tailwind theme and rad
```bash
npm run dev # Run storybook application to view components.
npm run build-storybook # Build storybook application as static HTML.
npm run build-lib # Build component library with rollup.
npm run build # Build component library with rollup.
```

### Design Tokens
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"dev": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-lib": "rm -rf ./dist && rollup -c"
"build": "rm -rf ./dist && rollup -c"
},
"release": {
"branches": [
Expand Down

0 comments on commit 0defea2

Please sign in to comment.