mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
17 lines
395 B
Bash
Executable File
17 lines
395 B
Bash
Executable File
#!/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,stories --plugins "transform-runtime" ./src --out-dir ./lib
|
|
echo ""
|
|
echo "=> Transpiling completed."
|
|
|
|
. .scripts/user/prepublish.sh
|