lbry-desktop/ui/watch.sh

23 lines
703 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
2016-08-17 22:27:53 +02:00
# run sass once without --watch to force update. then run with --watch to keep watching
2017-02-08 22:16:15 +01:00
$DIR/node_modules/.bin/node-sass --output $DIR/../app/dist/css --sourcemap=none $DIR/scss/
$DIR/node_modules/.bin/node-sass --output $DIR/../app/dist/css --sourcemap=none --watch $DIR/scss/ &
2016-08-17 22:27:53 +02:00
2017-02-08 22:16:15 +01:00
node_modules/.bin/webpack --config webpack.dev.config.js --progress --colors --watch