blob: 0caa0df20a227b65f391d9d4b9f4aa126fd433f0 (
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 angular/ --output angular/"
|