Skip to content

Commit bbdd95e

Browse files
committed
Ensure that typings:public runs before any build
1 parent a987459 commit bbdd95e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

integration/firestore/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"version": "1.0.1",
44
"private": true,
55
"scripts": {
6-
"build:deps": "lerna run --scope @firebase/'{app,firestore}' --include-dependencies build",
7-
"postbuild:deps": "lerna run --scope @firebase/'{app,firestore}' --include-dependencies typings:public",
8-
"build:persistence": "INCLUDE_FIRESTORE_PERSISTENCE=true gulp compile-tests",
9-
"build:memory": "INCLUDE_FIRESTORE_PERSISTENCE=false gulp compile-tests",
6+
"build:deps": "lerna run --scope @firebase/'{app,firestore}' --include-dependencies build && npm run typings:public",
7+
"typings:public": "lerna run --scope @firebase/'{app,firestore}' --include-dependencies typings:public",
8+
"build:persistence": "yarn typings:public && INCLUDE_FIRESTORE_PERSISTENCE=true gulp compile-tests",
9+
"build:memory": "yarn typings:public && INCLUDE_FIRESTORE_PERSISTENCE=false gulp compile-tests",
1010
"karma:singlerun": "karma start",
1111
"prettier": "prettier --write '*.js' '*.ts'",
1212
"test:persistence": " yarn build:persistence; karma start",

0 commit comments

Comments
 (0)