aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/watch
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/watch')
-rwxr-xr-xscripts/watch/client/sass.sh7
-rwxr-xr-xscripts/watch/client/tsc.sh5
2 files changed, 12 insertions, 0 deletions
diff --git a/scripts/watch/client/sass.sh b/scripts/watch/client/sass.sh
new file mode 100755
index 000000000..7d716cb7c
--- /dev/null
+++ b/scripts/watch/client/sass.sh
@@ -0,0 +1,7 @@
1#!/usr/bin/env sh
2
3cd client || exit -1
4
5concurrently \
6 "node-sass -w --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css client/angular/**/ client/angular/**/**" \
7 "node-sass -w angular/ --output angular/"
diff --git a/scripts/watch/client/tsc.sh b/scripts/watch/client/tsc.sh
new file mode 100755
index 000000000..f00656d2e
--- /dev/null
+++ b/scripts/watch/client/tsc.sh
@@ -0,0 +1,5 @@
1#!/usr/bin/env sh
2
3cd client || exit -1
4
5npm run tsc:w