diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-18 16:10:11 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-18 16:10:11 +0200 |
commit | 67dfaa36449d4d58b4bface1d21ea5bee614db56 (patch) | |
tree | d20e909212c71827f41fbba90b9060ae584300fd | |
parent | :bug: update build script (diff) | |
download | server-67dfaa36449d4d58b4bface1d21ea5bee614db56.tar.xz |
revert 2cff55f
-rw-r--r-- | api/package.json | 2 | ||||
-rw-r--r-- | bundle/package.json | 2 | ||||
-rw-r--r-- | cdn/package.json | 2 | ||||
-rw-r--r-- | gateway/package.json | 2 | ||||
-rw-r--r-- | util/package.json | 2 | ||||
-rw-r--r-- | webrtc/package.json | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/api/package.json b/api/package.json index d2070850..7b2de011 100644 --- a/api/package.json +++ b/api/package.json @@ -8,7 +8,7 @@ "test": "jest", "test:watch": "jest --watch", "start": "npm run build && node dist/start", - "build": "npx typescript -b .", + "build": "npx tsc -b .", "build-docker": "tsc -p tsconfig-docker.json", "dev": "tsnd --respawn src/start.ts" }, diff --git a/bundle/package.json b/bundle/package.json index 5ffd004c..1e6c95c5 100644 --- a/bundle/package.json +++ b/bundle/package.json @@ -6,7 +6,7 @@ "scripts": { "postinstall": "cd ../util && npm i && cd ../api && npm i && cd ../cdn && npm i && cd ../gateway && npm i", "build": "npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle", - "build:bundle": "npx typescript -b .", + "build:bundle": "npx tsc -b .", "build:api": "cd ../api/ && npm run build", "build:cdn": "cd ../cdn/ && npm run build", "build:gateway": "cd ../gateway/ && npm run build", diff --git a/cdn/package.json b/cdn/package.json index 73a8c2b5..083fbf5b 100644 --- a/cdn/package.json +++ b/cdn/package.json @@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build": "npx typescript -b .", + "build": "npx tsc -b .", "start": "npm run build && node dist/start.js" }, "repository": { diff --git a/gateway/package.json b/gateway/package.json index 541df1cb..e55ebe30 100644 --- a/gateway/package.json +++ b/gateway/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "npm run build && node dist/start.js", - "build": "npx typescript -b .", + "build": "npx tsc -b .", "dev": "tsnd --respawn src/start.ts" }, "keywords": [], diff --git a/util/package.json b/util/package.json index d1867440..d84897dc 100644 --- a/util/package.json +++ b/util/package.json @@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "scripts": { "postinstall": "npm run build", - "build": "npx typescript -b ." + "build": "npx tsc -b ." }, "repository": { "type": "git", diff --git a/webrtc/package.json b/webrtc/package.json index 34d88168..041dbbe3 100644 --- a/webrtc/package.json +++ b/webrtc/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "npm run build && node dist/test.js", - "build": "npx typescript -b .", + "build": "npx tsc -b .", "start": "npm run build && node dist/start.js" }, "keywords": [], |