Skip to content

Commit b98cd65

Browse files
authored
Remove prepare script in our projects (#4296)
* remove prepare from exp packages * remove prepare from packages * cleanup
1 parent f53e5b9 commit b98cd65

File tree

38 files changed

+21
-58
lines changed

38 files changed

+21
-58
lines changed

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
"dev": "lerna run --parallel --scope @firebase/* --scope firebase --scope rxfire dev",
2525
"build": "lerna run --scope @firebase/app-exp build:deps && lerna run --scope @firebase/* --scope firebase --scope rxfire --ignore @firebase/app-exp build",
2626
"build:exp": "lerna run --scope @firebase/*-exp --scope @firebase/*-compat --scope firebase-exp build",
27-
"build:release": "lerna run --scope @firebase/app-exp build:deps && lerna run --scope @firebase/* --scope firebase --scope rxfire --ignore @firebase/*-exp --ignore @firebase/*-compat prepare",
28-
"build:exp:release": "yarn --cwd packages/app build:deps && lerna run --scope @firebase/*-exp --scope @firebase/*-compat --scope firebase-exp prepare && yarn --cwd packages-exp/app-exp typings:public",
27+
"build:release": "lerna run --scope @firebase/app-exp build:deps && lerna run --scope @firebase/* --scope firebase --scope rxfire --ignore @firebase/*-exp --ignore @firebase/*-compat build",
2928
"build:changed": "ts-node-script scripts/ci-test/build_changed.ts",
3029
"link:packages": "lerna exec --scope @firebase/* --scope firebase --scope rxfire -- yarn link",
3130
"stage:packages": "./scripts/prepublish.sh",

packages-exp/app-compat/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2424
"test:browser": "karma start --single-run",
2525
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
26-
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js",
27-
"prepare": "yarn build:release"
26+
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js"
2827
},
2928
"license": "Apache-2.0",
3029
"dependencies": {

packages-exp/app-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"test:all": "run-p test:browser test:node",
2222
"test:browser": "karma start --single-run",
2323
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.ts --config ../../config/mocharc.node.js",
24-
"prepare": "rollup -c rollup.config.release.js && yarn api-report",
2524
"api-report": "api-extractor run --local --verbose",
2625
"predoc": "node ../../scripts/exp/remove-exp.js temp",
2726
"doc": "api-documenter markdown --input temp --output docs",

packages-exp/auth-compat-exp/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"test:all": "run-p test:browser test:node",
2121
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2222
"test:browser": "karma start --single-run",
23-
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js",
24-
"prepare": "yarn build:release"
23+
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js"
2524
},
2625
"peerDependencies": {
2726
"@firebase/app-compat": "0.x",

packages-exp/auth-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"test:browser:debug": "karma start --auto-watch",
2828
"test:browser:unit:debug": "karma start --auto-watch --unit",
2929
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/!(platform_browser|platform_react_native)/**/*.test.ts' --file index.node.ts --config ../../config/mocharc.node.js",
30-
"prepare": "rollup -c rollup.config.release.js",
3130
"api-report": "api-extractor run --local --verbose",
3231
"predoc": "node ../../scripts/exp/remove-exp.js temp",
3332
"doc": "api-documenter markdown --input temp --output docs",

packages-exp/firebase-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"build:compat": "rollup -c compat/rollup.config.js",
3333
"build:compat:release": "rollup -c compat/rollup.config.release.js",
3434
"dev": "rollup -c -w",
35-
"prepare": "yarn build:release",
3635
"test": "echo 'No test suite for firebase wrapper'",
3736
"test:ci": "echo 'No test suite for firebase wrapper'"
3837
},

packages-exp/functions-compat/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
"test:browser": "karma start --single-run",
4242
"test:browser:debug": "karma start --browsers=Chrome --auto-watch",
4343
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --file src/index.node.ts --config ../../config/mocharc.node.js",
44-
"test:emulator": "env FIREBASE_FUNCTIONS_HOST=http://localhost FIREBASE_FUNCTIONS_PORT=5005 run-p test:node",
45-
"prepare": "yarn build:release"
44+
"test:emulator": "env FIREBASE_FUNCTIONS_HOST=http://localhost FIREBASE_FUNCTIONS_PORT=5005 run-p test:node"
4645
},
4746
"typings": "dist/functions-compat-public.d.ts",
4847
"dependencies": {

packages-exp/functions-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"test:browser:debug": "karma start --browsers=Chrome --auto-watch",
2424
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --file src/index.node.ts --config ../../config/mocharc.node.js",
2525
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://localhost:5005 run-p test:node",
26-
"prepare": "yarn build:release",
2726
"api-report": "api-extractor run --local --verbose",
2827
"predoc": "node ../../scripts/exp/remove-exp.js temp",
2928
"doc": "api-documenter markdown --input temp --output docs",

packages-exp/functions-types-exp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scripts": {
99
"test": "tsc",
1010
"test:ci": "node ../../scripts/run_tests_in_ci.js",
11-
"prepare": "node ../../scripts/exp/remove-exp.js ./index.d.ts",
11+
"build:release": "node ../../scripts/exp/remove-exp.js ./index.d.ts",
1212
"api-report": "api-extractor run --local --verbose",
1313
"predoc": "node ../../scripts/exp/remove-exp.js temp",
1414
"doc": "api-documenter markdown --input temp --output docs",

packages-exp/installations-compat/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"serve": "yarn serve:build && yarn serve:host",
2626
"serve:build": "rollup -c test-app/rollup.config.js",
2727
"serve:host": "http-server -c-1 test-app",
28-
"prepare": "yarn build:release",
2928
"api-report": "api-extractor run --local --verbose",
3029
"predoc": "node ../../scripts/exp/remove-exp.js temp",
3130
"doc": "api-documenter markdown --input temp --output docs",

packages-exp/installations-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"serve": "yarn serve:build && yarn serve:host",
2626
"serve:build": "rollup -c test-app/rollup.config.js",
2727
"serve:host": "http-server -c-1 test-app",
28-
"prepare": "yarn build:release",
2928
"api-report": "api-extractor run --local --verbose",
3029
"predoc": "node ../../scripts/exp/remove-exp.js temp",
3130
"doc": "api-documenter markdown --input temp --output docs",

packages-exp/messaging-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"test:ci": "node ../../scripts/run_tests_in_ci.js",
2323
"test:karma": "karma start --single-run",
2424
"test:debug": "karma start --browsers=Chrome --auto-watch",
25-
"prepare": "yarn build",
2625
"api-report": "api-extractor run --local --verbose",
2726
"type-check": "tsc --noEmit"
2827
},

packages-exp/performance-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser",
2121
"test:browser": "karma start --single-run",
2222
"test:debug": "karma start --browsers=Chrome --auto-watch",
23-
"prepare": "yarn build:release",
2423
"prettier": "prettier --write '{src,test}/**/*.{js,ts}'",
2524
"api-report": "api-extractor run --local --verbose",
2625
"predoc": "node ../../scripts/exp/remove-exp.js temp",

packages-exp/remote-config-compat/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"test:all": "run-p test:browser",
2121
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2222
"test:browser": "karma start --single-run",
23-
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
24-
"prepare": "yarn build:release"
23+
"test:browser:debug": "karma start --browsers Chrome --auto-watch"
2524
},
2625
"license": "Apache-2.0",
2726
"peerDependencies": {

packages-exp/remote-config-exp/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"test:browser": "karma start --single-run",
2222
"test:debug": "karma start --browsers=Chrome --auto-watch",
2323
"prettier": "prettier --write '{src,test}/**/*.{js,ts}'",
24-
"prepare": "yarn build:release",
2524
"api-report": "api-extractor run --local --verbose",
2625
"predoc": "node ../../scripts/exp/remove-exp.js temp",
2726
"doc": "api-documenter markdown --input temp --output docs",

packages/analytics/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
"test:all": "run-p test:browser test:integration",
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
1919
"test:browser": "karma start --single-run --nocache",
20-
"test:integration": "karma start ./karma.integration.conf.js --single-run --nocache",
21-
"prepare": "yarn build"
20+
"test:integration": "karma start ./karma.integration.conf.js --single-run --nocache"
2221
},
2322
"peerDependencies": {
2423
"@firebase/app": "0.x",

packages/app/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2323
"test:browser": "karma start --single-run",
2424
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
25-
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js",
26-
"prepare": "yarn build"
25+
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js"
2726
},
2827
"license": "Apache-2.0",
2928
"dependencies": {

packages/auth/buildtools/run_demo.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
cd "$(dirname $(dirname "$0"))"
2424
# Go back to repo root and build all binaries needed for the demo app.
2525
cd ../..
26-
yarn prepare
26+
yarn build:release
2727
# Go back to Auth package.
2828
cd packages/auth
2929
# Make dist directory if not already there.

packages/auth/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"build:deps": "lerna run --scope @firebase/auth --include-dependencies build",
1616
"demo": "./buildtools/run_demo.sh",
1717
"generate-test-files": "./buildtools/generate_test_files.sh",
18-
"prepare": "yarn build",
1918
"serve": "yarn build && yarn generate-test-files && gulp serve",
2019
"test": "yarn generate-test-files && ./buildtools/run_tests.sh",
2120
"test:ci": "node ../../scripts/run_tests_in_ci.js"

packages/component/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"test:all": "run-p test:browser test:node",
1919
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2020
"test:browser": "karma start --single-run",
21-
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.ts --config ../../config/mocharc.node.js",
22-
"prepare": "yarn build"
21+
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.ts --config ../../config/mocharc.node.js"
2322
},
2423
"dependencies": {
2524
"@firebase/util": "0.3.4",

packages/database/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
"test:all": "run-p lint test:browser test:node",
2222
"test:browser": "karma start --single-run",
2323
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'test/{,!(browser)/**/}*.test.ts' --file index.node.ts --config ../../config/mocharc.node.js",
24-
"test:emulator": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/database-test-runner.ts",
25-
"prepare": "yarn build"
24+
"test:emulator": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/database-test-runner.ts"
2625
},
2726
"license": "Apache-2.0",
2827
"peerDependencies": {},

packages/firebase/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"build": "rollup -c",
3737
"build:deps": "lerna run --scope firebase --include-dependencies build",
3838
"dev": "rollup -c -w",
39-
"prepare": "yarn build",
4039
"test": "echo 'No test suite for firebase wrapper'",
4140
"test:ci": "echo 'No test suite for firebase wrapper'"
4241
},

packages/firestore/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"test:node:persistence:prod": "node ./scripts/run-tests.js --main=index.node.ts --persistence 'test/{,!(browser|lite)/**/}*.test.ts'",
4747
"test:travis": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/firestore-test-runner.ts",
4848
"test:minified": "(cd ../../integration/firestore ; yarn test)",
49-
"prepare": "yarn build:release",
5049
"api-report": "rm -rf temp && api-extractor run --local --verbose",
5150
"predoc": "node ../../scripts/exp/remove-exp.js temp",
5251
"doc": "api-documenter markdown --input temp --output docs"

packages/functions/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"test:browser": "karma start --single-run",
2121
"test:browser:debug": "karma start --browsers=Chrome --auto-watch",
2222
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'test/{,!(browser)/**/}*.test.ts' --file index.node.ts --config ../../config/mocharc.node.js",
23-
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://localhost:5005 run-p test:node",
24-
"prepare": "yarn build"
23+
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://localhost:5005 run-p test:node"
2524
},
2625
"license": "Apache-2.0",
2726
"peerDependencies": {

packages/installations/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"test:debug": "karma start --browsers=Chrome --auto-watch",
1919
"serve": "yarn serve:build && yarn serve:host",
2020
"serve:build": "rollup -c test-app/rollup.config.js",
21-
"serve:host": "http-server -c-1 test-app",
22-
"prepare": "yarn build"
21+
"serve:host": "http-server -c-1 test-app"
2322
},
2423
"repository": {
2524
"directory": "packages/installations",

packages/logger/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"test:all": "run-p test:browser test:node",
1919
"test:browser": "karma start --single-run",
2020
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
21-
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js",
22-
"prepare": "yarn build"
21+
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js"
2322
},
2423
"license": "Apache-2.0",
2524
"devDependencies": {

packages/messaging/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
"test:integration": "test:karma && cd ../../integration/messaging && npm run-script test",
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:karma",
1919
"test:karma": "karma start --single-run",
20-
"test:debug": "karma start --browsers=Chrome --auto-watch",
21-
"prepare": "yarn build"
20+
"test:debug": "karma start --browsers=Chrome --auto-watch"
2221
},
2322
"license": "Apache-2.0",
2423
"peerDependencies": {

packages/performance/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser",
1919
"test:browser": "karma start --single-run",
2020
"test:debug": "karma start --browsers=Chrome --auto-watch",
21-
"prepare": "yarn build",
2221
"prettier": "prettier --write '{src,test}/**/*.{js,ts}'"
2322
},
2423
"peerDependencies": {

packages/polyfill/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build": "rollup -c",
1313
"dev": "rollup -c -w",
1414
"test": "echo 'No test suite for polyfills'",
15-
"test:ci": "echo 'No test suite for polyfills'",
16-
"prepare": "yarn build"
15+
"test:ci": "echo 'No test suite for polyfills'"
1716
},
1817
"license": "Apache-2.0",
1918
"dependencies": {

packages/remote-config/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser",
1919
"test:browser": "karma start --single-run",
2020
"test:debug": "karma start --browsers=Chrome --auto-watch",
21-
"prettier": "prettier --write '{src,test}/**/*.{js,ts}'",
22-
"prepare": "yarn build"
21+
"prettier": "prettier --write '{src,test}/**/*.{js,ts}'"
2322
},
2423
"peerDependencies": {
2524
"@firebase/app": "0.x",

packages/rules-unit-testing/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"dev": "rollup -c -w",
1515
"test:nyc": "TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'test/{,!(browser)/**/}*.test.ts' --config ../../config/mocharc.node.js",
1616
"test": "firebase --project=foo --debug emulators:exec 'yarn test:nyc'",
17-
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test",
18-
"prepare": "yarn build"
17+
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test"
1918
},
2019
"license": "Apache-2.0",
2120
"dependencies": {

packages/rxfire/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"build": "rollup -c",
2727
"build:deps": "lerna run --scope rxfire --include-dependencies build",
2828
"dev": "rollup -c -w",
29-
"prepare": "yarn build",
3029
"test": "run-p lint test:browser",
3130
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser",
3231
"test:browser": "karma start --single-run",

packages/storage/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"test:browser:compat": "karma start --single-run --compat",
2727
"test:browser:exp": "karma start --single-run --exp",
2828
"test:browser": "karma start --single-run",
29-
"prepare": "yarn build",
3029
"prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
3130
"api-report": "api-extractor run --local --verbose"
3231
},

packages/template/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2020
"test:all": "run-p test:browser test:node",
2121
"test:browser": "karma start --single-run",
22-
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js",
23-
"prepare": "yarn build"
22+
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js"
2423
},
2524
"peerDependencies": {
2625
"@firebase/app": "0.x",

packages/util/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
1919
"test:all": "run-p test:browser test:node",
2020
"test:browser": "karma start --single-run",
21-
"test:node": "TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js",
22-
"prepare": "yarn build"
21+
"test:node": "TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js"
2322
},
2423
"license": "Apache-2.0",
2524
"dependencies": {

packages/webchannel-wrapper/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"scripts": {
1111
"dev": "watch 'yarn build' src",
1212
"build": "gulp",
13-
"prepare": "yarn build",
1413
"test": "echo 'No test suite for webchannel-wrapper'",
1514
"test:ci": "echo 'No test suite for webchannel-wrapper'"
1615
},

repo-scripts/changelog-generator/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
1414
"build": "tsc",
1515
"build:dev": "tsc -w",
16-
"test": "tsc -p . --noEmit",
17-
"prepare": "yarn build"
16+
"test": "tsc -p . --noEmit"
1817
},
1918
"dependencies": {
2019
"@changesets/types": "3.2.0",

scripts/exp/prepare-firestore-for-exp-release.ts

-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ export async function prepare() {
6060

6161
packageJson.typings = expPackageJson.typings.replace('../', '');
6262

63-
delete packageJson.scripts.prepare;
64-
6563
// include files to be published
6664
packageJson.files = [
6765
...packageJson.files,

0 commit comments

Comments
 (0)