From 35702adf50b8ed1588c5bb5429f977c34f6443be Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Wed, 18 Aug 2021 13:47:31 +0200 Subject: :bug: update build script --- api/package.json | 2 +- bundle/package.json | 2 +- cdn/package.json | 2 +- gateway/package.json | 2 +- util/package.json | 2 +- webrtc/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/api/package.json b/api/package.json index 7b2de011..d2070850 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 tsc -b .", + "build": "npx typescript -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 1e6c95c5..5ffd004c 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 tsc -b .", + "build:bundle": "npx typescript -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 083fbf5b..73a8c2b5 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 tsc -b .", + "build": "npx typescript -b .", "start": "npm run build && node dist/start.js" }, "repository": { diff --git a/gateway/package.json b/gateway/package.json index e55ebe30..541df1cb 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 tsc -b .", + "build": "npx typescript -b .", "dev": "tsnd --respawn src/start.ts" }, "keywords": [], diff --git a/util/package.json b/util/package.json index d84897dc..d1867440 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 tsc -b ." + "build": "npx typescript -b ." }, "repository": { "type": "git", diff --git a/webrtc/package.json b/webrtc/package.json index 041dbbe3..34d88168 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 tsc -b .", + "build": "npx typescript -b .", "start": "npm run build && node dist/start.js" }, "keywords": [], -- cgit 1.4.1