blob: d8dfedca362d7f2b9c774e7c993845fa200740bf (
plain) (
tree)
|
|
#!/usr/bin/env sh
npm run clean:client:sass
cd client || exit -1
# Compile index and angular files
concurrently \
"node-sass --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css" \
"node-sass app/ --output app/"
|