diff options
Diffstat (limited to 'scripts/build/client/sass.sh')
-rwxr-xr-x | scripts/build/client/sass.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/build/client/sass.sh b/scripts/build/client/sass.sh new file mode 100755 index 000000000..0caa0df20 --- /dev/null +++ b/scripts/build/client/sass.sh | |||
@@ -0,0 +1,9 @@ | |||
1 | #!/usr/bin/env sh | ||
2 | |||
3 | npm run clean:client:sass | ||
4 | cd client || exit -1 | ||
5 | |||
6 | # Compile index and angular files | ||
7 | concurrently \ | ||
8 | "node-sass --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css" \ | ||
9 | "node-sass angular/ --output angular/" | ||