11 lines
169 B
Bash
Executable file
11 lines
169 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
export PATH="$PATH:./node_modules/.bin"
|
|
|
|
: "${NODE_ENV:=production}"
|
|
|
|
export STORYBOOK_DISABLE_TELEMETRY=1
|
|
|
|
storybook build "$@"
|