aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-05-24 15:48:48 +0200
committerChocobozzz <chocobozzz@cpy.re>2019-05-27 14:56:06 +0200
commit7e9d3f259d5dac0d17ca4f3d6844e8cfbb7e33d1 (patch)
treefb3b258dd55bcf2d85a3cf507ea0bb9e6d2b9fc2 /scripts
parentff747e79400f43de79df578c14d9b81ff55de84b (diff)
downloadPeerTube-7e9d3f259d5dac0d17ca4f3d6844e8cfbb7e33d1.tar.gz
PeerTube-7e9d3f259d5dac0d17ca4f3d6844e8cfbb7e33d1.tar.zst
PeerTube-7e9d3f259d5dac0d17ca4f3d6844e8cfbb7e33d1.zip
Move CLI dependencies in their own package.json
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setup/cli.sh16
-rwxr-xr-xscripts/travis.sh3
2 files changed, 18 insertions, 1 deletions
diff --git a/scripts/setup/cli.sh b/scripts/setup/cli.sh
new file mode 100755
index 000000000..94ca3c441
--- /dev/null
+++ b/scripts/setup/cli.sh
@@ -0,0 +1,16 @@
1#!/bin/sh
2
3set -eu
4
5NOCLIENT=1 yarn install --pure-lockfile
6
7rm -rf ./dist/server/tools/
8
9(
10 cd ./server/tools
11 yarn install --pure-lockfile
12)
13
14npm run tsc -- --build ./server/tools/tsconfig.json
15
16cp -r "./server/tools/node_modules" "./dist/server/tools"
diff --git a/scripts/travis.sh b/scripts/travis.sh
index c38bd2cab..454ac5e14 100755
--- a/scripts/travis.sh
+++ b/scripts/travis.sh
@@ -28,7 +28,8 @@ elif [ "$1" = "api-3" ]; then
28 npm run build:server 28 npm run build:server
29 sh ./server/tests/api/travis-3.sh 2 29 sh ./server/tests/api/travis-3.sh 2
30elif [ "$1" = "api-4" ]; then 30elif [ "$1" = "api-4" ]; then
31 npm run build:server 31 npm run setup:cli
32 npm run build-server
32 sh ./server/tests/api/travis-4.sh 2 33 sh ./server/tests/api/travis-4.sh 2
33elif [ "$1" = "lint" ]; then 34elif [ "$1" = "lint" ]; then
34 npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts" 35 npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"