aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/build/client/sass.sh
blob: d8dfedca362d7f2b9c774e7c993845fa200740bf (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 app/ --output app/"