UNPKG

259 Bapplication/x-shView Raw
1#!/bin/bash
2
3echo "> Start transpiling ES2015"
4echo ""
5rm -rf ./dist
6./node_modules/.bin/babel --ignore __tests__ --plugins "transform-runtime" ./src --out-dir ./dist
7cp -r ./src/server/public ./dist/server/public
8echo ""
9echo "> Complete transpiling ES2015"