Skip to content

Commit b400510

Browse files
committed
fix: problems building
1 parent 53f3e3e commit b400510

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"description": "A testing companion to firebase-functions.",
55
"main": "lib/index.js",
66
"scripts": {
7-
"build": "npm i && node_modules/.bin/tsc -p tsconfig.release.json",
8-
"build:pack": "npm prune --production && rm -rf lib && npm install && node_modules/.bin/tsc -p tsconfig.release.json && npm pack && npm install",
9-
"build:release": "npm ci --production && npm install --no-save typescript firebase-functions firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json",
10-
"lint": "node_modules/.bin/tslint src/{**/*,*}.ts spec/{**/*,*}.ts",
11-
"pretest": "node_modules/.bin/tsc",
7+
"build": "npm i && tsc -p tsconfig.release.json",
8+
"build:pack": "npm prune --production && rm -rf lib && npm install && tsc -p tsconfig.release.json && npm pack && npm install",
9+
"build:release": "npm ci --production && npm install --no-save typescript firebase-functions firebase-admin && tsc -p tsconfig.release.json",
10+
"lint": "tslint src/{**/*,*}.ts spec/{**/*,*}.ts",
11+
"pretest": "tsc",
1212
"test": "mocha .tmp/spec/index.spec.js",
1313
"posttest": "npm run lint && rm -rf .tmp",
14-
"preintegrationTest": "node_modules/.bin/tsc",
14+
"preintegrationTest": "tsc",
1515
"integrationTest": "firebase emulators:exec --project=not-a-project --only firestore 'mocha .tmp/spec/integration/**/*.spec.js'",
1616
"postintegrationTest": "rm -rf .tmp",
1717
"format": "prettier --check '**/*.{json,ts,yml,yaml}'",
@@ -54,7 +54,7 @@
5454
"prettier": "^1.19.1",
5555
"sinon": "^7.5.0",
5656
"tslint": "^5.20.0",
57-
"typescript": "^4.2.5"
57+
"typescript": "^5.7.3"
5858
},
5959
"peerDependencies": {
6060
"firebase-admin": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0",

0 commit comments

Comments
 (0)