summary refs log tree commit diff
diff options
context:
space:
mode:
authorxnacly <matteogropp@protonmail.com>2021-08-18 13:58:20 +0200
committerxnacly <matteogropp@protonmail.com>2021-08-18 13:58:20 +0200
commitb1ee66a8bc4dca5f5ae88b8147032ed3d540ead9 (patch)
treeb6f9cea08dd2b84523defeeffc3c38e7c920c4e5
parentadded unittest setup + ping route test (diff)
parent:bug: update build script (diff)
downloadserver-b1ee66a8bc4dca5f5ae88b8147032ed3d540ead9.tar.xz
Merge branch 'master' of git://github.com/fosscord/fosscord-server
-rw-r--r--api/package.json2
-rw-r--r--bundle/package.json2
-rw-r--r--cdn/package.json2
-rw-r--r--gateway/package.json2
-rw-r--r--util/package.json2
-rw-r--r--webrtc/package.json2
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 7e69b65d..c1f66d58 100644 --- a/cdn/package.json +++ b/cdn/package.json
@@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "scripts": { "test": "npm run build && jest --coverage ./tests", - "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": [],