diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-04-30 11:17:50 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-04-30 12:56:36 +0200 |
commit | 9353449515ff6881a54ce6887297b7eab2855186 (patch) | |
tree | d3a6a3e84b3684e3689c4b40ed2e1d53b26a3dc8 /scripts/build | |
parent | 1342381694456da6bfcb01a6f9e23c54cc90c82e (diff) | |
download | PeerTube-9353449515ff6881a54ce6887297b7eab2855186.tar.gz PeerTube-9353449515ff6881a54ce6887297b7eab2855186.tar.zst PeerTube-9353449515ff6881a54ce6887297b7eab2855186.zip |
Use scripty instead of writing shell commands in package.json
Diffstat (limited to 'scripts/build')
-rwxr-xr-x | scripts/build/client/sass.sh | 9 | ||||
-rwxr-xr-x | scripts/build/client/tsc.sh | 5 |
2 files changed, 14 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/" | ||
diff --git a/scripts/build/client/tsc.sh b/scripts/build/client/tsc.sh new file mode 100755 index 000000000..ec06b643a --- /dev/null +++ b/scripts/build/client/tsc.sh | |||
@@ -0,0 +1,5 @@ | |||
1 | #!/usr/bin/env sh | ||
2 | |||
3 | cd client || exit -1 | ||
4 | |||
5 | npm run tsc | ||