mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
15 lines
361 B
Bash
15 lines
361 B
Bash
#!/bin/bash
|
|
|
|
# IMPORTANT
|
|
# ---------
|
|
# This is an auto generated file with React CDK.
|
|
# Do not modify this file.
|
|
# Use `.scripts/user/prepublish.sh instead`.
|
|
|
|
echo "=> Transpiling 'src' into ES5 ..."
|
|
echo ""
|
|
rm -rf ./dist
|
|
./node_modules/.bin/babel --ignore __tests__ --plugins "transform-runtime" ./src --out-dir ./dist
|
|
echo ""
|
|
echo "=> Transpiling completed."
|