Files
outline/build.sh
2023-01-10 20:32:37 -05:00

14 lines
464 B
Bash
Executable File

#!/bin/sh
yarn babel --extensions .ts,.tsx --quiet -d ./build/server ./server
yarn babel --extensions .ts,.tsx --quiet -d ./build/shared ./shared
# Copy static files
cp ./server/collaboration/Procfile ./build/server/collaboration/Procfile
cp package.json ./build
cp ./server/static/error.dev.html ./build/server/error.dev.html
cp ./server/static/error.prod.html ./build/server/error.prod.html
# Link webpack config
ln -sf "$(pwd)/webpack.config.dev.js" ./build