lbry-desktop/watch.sh

20 lines
524 B
Bash
Raw Normal View History

#!/bin/bash
2016-08-17 21:15:09 +02:00
set -euo pipefail
#set -x
2016-08-17 21:15:09 +02:00
#trap 'kill $(jobs -p)' EXIT # IS THIS NECESSARY? on linux, it kills all child processes when you ctrl-c
2016-03-15 17:12:43 +01:00
2016-08-17 21:15:09 +02:00
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
mkdir -p $DIR/dist/css
mkdir -p $DIR/dist/js
if [ ! -d "$DIR/node_modules" ]; then
echo "Installing NPM modules"
npm install
fi
$DIR/node_modules/.bin/node-sass --output $DIR/dist/css --sourcemap=none --watch $DIR/scss/ &
$DIR/node_modules/.bin/babel --presets es2015,react --out-dir $DIR/dist/js/ --watch $DIR/js/