aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-12-17 15:33:58 +0100
committerChocobozzz <me@florianbigard.com>2019-12-18 10:14:24 +0100
commitc026a2e67357bd4bd4fcc4c10f8c5cd4749435c9 (patch)
tree692d4f1b3b3dd68fc79cec4e3b5d1b93c72d037e /scripts
parent478924a044f6a7b0fb5156c3e4a0e8ef4ed30a4a (diff)
downloadPeerTube-c026a2e67357bd4bd4fcc4c10f8c5cd4749435c9.tar.gz
PeerTube-c026a2e67357bd4bd4fcc4c10f8c5cd4749435c9.tar.zst
PeerTube-c026a2e67357bd4bd4fcc4c10f8c5cd4749435c9.zip
Remove watch scripts
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build/client.sh2
-rwxr-xr-xscripts/build/embed.sh5
-rwxr-xr-xscripts/build/index.sh7
-rwxr-xr-xscripts/dev/client.sh2
-rw-r--r--scripts/dev/embed.sh7
-rwxr-xr-xscripts/dev/server.sh17
-rwxr-xr-xscripts/watch/client.sh7
-rwxr-xr-xscripts/watch/server.sh20
8 files changed, 37 insertions, 30 deletions
diff --git a/scripts/build/client.sh b/scripts/build/client.sh
index 2518702cf..fd9190660 100755
--- a/scripts/build/client.sh
+++ b/scripts/build/client.sh
@@ -62,7 +62,7 @@ if [ -z ${1+x} ] || [ "$1" != "--light" ]; then
62 done 62 done
63fi 63fi
64 64
65NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production --json > "./dist/embed-stats.json" 65npm run build:embed
66 66
67# Copy runtime locales 67# Copy runtime locales
68cp -r "./src/locale" "./dist/locale" 68cp -r "./src/locale" "./dist/locale"
diff --git a/scripts/build/embed.sh b/scripts/build/embed.sh
new file mode 100755
index 000000000..ea5e7d57d
--- /dev/null
+++ b/scripts/build/embed.sh
@@ -0,0 +1,5 @@
1#!/bin/sh
2
3set -eu
4
5NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production --json > "./dist/embed-stats.json"
diff --git a/scripts/build/index.sh b/scripts/build/index.sh
new file mode 100755
index 000000000..fde6efe32
--- /dev/null
+++ b/scripts/build/index.sh
@@ -0,0 +1,7 @@
1#!/bin/sh
2
3set -eu
4
5npm run concurrently -- -k \
6 "npm run build:client" \
7 "npm run build:server"
diff --git a/scripts/dev/client.sh b/scripts/dev/client.sh
index c630de2c4..d6669ed78 100755
--- a/scripts/dev/client.sh
+++ b/scripts/dev/client.sh
@@ -3,5 +3,5 @@
3set -eu 3set -eu
4 4
5NODE_ENV=test npm run concurrently -- -k \ 5NODE_ENV=test npm run concurrently -- -k \
6 "npm run watch:client" \ 6 "cd client && npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" \
7 "npm run build:server && NODE_ENV=test npm start" 7 "npm run build:server && NODE_ENV=test npm start"
diff --git a/scripts/dev/embed.sh b/scripts/dev/embed.sh
new file mode 100644
index 000000000..9b0ef27cf
--- /dev/null
+++ b/scripts/dev/embed.sh
@@ -0,0 +1,7 @@
1#!/bin/sh
2
3set -eu
4
5NODE_ENV=test npm run concurrently -- -k \
6 "cd client && npm run webpack -- --config webpack/webpack.video-embed.js --mode development --watch" \
7 "npm run build:server && NODE_ENV=test npm start"
diff --git a/scripts/dev/server.sh b/scripts/dev/server.sh
index beee5b8d4..a7fa88fbd 100755
--- a/scripts/dev/server.sh
+++ b/scripts/dev/server.sh
@@ -7,4 +7,19 @@ if [ ! -f "./client/dist/en-US/index.html" ]; then
7 npm run build:client -- --light 7 npm run build:client -- --light
8fi 8fi
9 9
10npm run watch:server 10# Copy locales
11mkdir -p "./client/dist"
12rm -rf "./client/dist/locale"
13cp -r "./client/src/locale" "./client/dist/locale"
14
15rm -rf "./dist"
16
17mkdir "./dist"
18cp "./tsconfig.json" "./dist"
19
20npm run tsc -- --incremental --sourceMap
21cp -r ./server/static ./server/assets ./dist/server
22
23NODE_ENV=test npm run concurrently -- -k \
24 "npm run nodemon -- --delay 1 --watch ./dist dist/server" \
25 "npm run tsc -- --incremental --sourceMap --preserveWatchOutput -w"
diff --git a/scripts/watch/client.sh b/scripts/watch/client.sh
deleted file mode 100755
index 1d6b8c2aa..000000000
--- a/scripts/watch/client.sh
+++ /dev/null
@@ -1,7 +0,0 @@
1#!/bin/sh
2
3set -eu
4
5cd client
6
7npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000
diff --git a/scripts/watch/server.sh b/scripts/watch/server.sh
deleted file mode 100755
index 2e3231865..000000000
--- a/scripts/watch/server.sh
+++ /dev/null
@@ -1,20 +0,0 @@
1#!/bin/sh
2
3set -eu
4
5# Copy locales
6mkdir -p "./client/dist"
7rm -rf "./client/dist/locale"
8cp -r "./client/src/locale" "./client/dist/locale"
9
10rm -rf "./dist"
11
12mkdir "./dist"
13cp "./tsconfig.json" "./dist"
14
15npm run tsc -- --incremental --sourceMap
16cp -r ./server/static ./server/assets ./dist/server
17
18NODE_ENV=test npm run concurrently -- -k \
19 "npm run nodemon -- --delay 1 --watch ./dist dist/server" \
20 "npm run tsc -- --incremental --sourceMap --preserveWatchOutput -w"