Skip to content

Commit

Permalink
Change storybook build dir to build-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Apr 19, 2021
1 parent 3496894 commit cf6c47e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# React Build Files
/build

# Storybook Build Files
/build-docs

# React local environment files
.env.local
.env.development.local
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"start:api": "cd api/ && venv/bin/gunicorn -b 127.0.0.1:5000 api:app",
"start:docs": "start-storybook -p 6006 -s public -c storybook-config",
"build:frontend": "react-scripts build",
"build:docs": "build-storybook -s public -c storybook-config",
"build:docs": "build-storybook -s public -c storybook-config -o build-docs",
"kill:frontend": "pgrep -u $(whoami) -f 'react-scripts/scripts/start.js' -d ' ' | xargs kill -9",
"kill:api": "pgrep -u $(whoami) -f gunicorn -d ' ' | xargs kill -9",
"venv:create": "python3 utils/venv-manager.py create",
Expand Down

0 comments on commit cf6c47e

Please sign in to comment.