aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/build/client/sass.sh
blob: 0caa0df20a227b65f391d9d4b9f4aa126fd433f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/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/"