From 4f36200d2b7608b1ae5487c7fec1652c8d804e51 Mon Sep 17 00:00:00 2001 From: Robert-Jan Huijsman Date: Wed, 26 Jul 2017 13:22:12 -0700 Subject: [PATCH] Remove the 'npm install firebase-admin' from the build:pack command, as it's now included in the dev dependencies. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5dbc7ef2c..be78c2374 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "lib/index.js", "scripts": { "build": "node_modules/.bin/tsc -p tsconfig.release.json", - "build:pack": "npm prune --production && rm -rf lib && npm install && npm install firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json && npm pack && npm install", + "build:pack": "npm prune --production && rm -rf lib && npm install && node_modules/.bin/tsc -p tsconfig.release.json && npm pack && npm install", "build:release": "npm install --production && npm install typescript firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json", "lint": "node_modules/.bin/tslint src/{**/*,*}.ts spec/{**/*,*}.ts integration_test/functions/src/{**/*,*}.ts", "pretest": "node_modules/.bin/tsc && cp -r spec/fixtures .tmp/spec",