Skip to content

Commit b7a2a64

Browse files
committed
remove type check scripts
1 parent 1669a43 commit b7a2a64

File tree

8 files changed

+10
-18
lines changed

8 files changed

+10
-18
lines changed

packages/analytics/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@
1313
"build": "rollup -c",
1414
"build:deps": "lerna run --scope @firebase/'{app,analytics}' --include-dependencies build",
1515
"dev": "rollup -c -w",
16-
"test": "yarn type-check && yarn run-p lint test:browser",
16+
"test": "yarn run-p lint test:browser",
1717
"test:ci": "node ../../scripts/run_tests_in_ci.js",
1818
"test:browser": "karma start --single-run --nocache",
19-
"type-check": "tsc -p . --noEmit",
2019
"prepare": "yarn build"
2120
},
2221
"peerDependencies": {

packages/app/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
"build": "rollup -c",
1818
"build:deps": "lerna run --scope @firebase/app --include-dependencies build",
1919
"dev": "rollup -c -w",
20-
"test": "yarn type-check && run-p lint test:browser test:node",
20+
"test": "run-p lint test:browser test:node",
2121
"test:ci": "node ../../scripts/run_tests_in_ci.js",
22-
"type-check": "tsc -p . --noEmit",
2322
"test:browser": "karma start --single-run",
2423
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
2524
"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",

packages/component/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
"build": "rollup -c",
1515
"build:deps": "lerna run --scope @firebase/component --include-dependencies build",
1616
"dev": "rollup -c -w",
17-
"test": "yarn type-check && run-p lint test:browser test:node",
17+
"test": "run-p lint test:browser test:node",
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js",
19-
"type-check": "tsc -p . --noEmit",
2019
"test:browser": "karma start --single-run",
2120
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.ts --config ../../config/mocharc.node.js",
2221
"prepare": "yarn build"

packages/functions/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
"build": "rollup -c",
1515
"build:deps": "lerna run --scope @firebase/'{app,functions}' --include-dependencies build",
1616
"dev": "rollup -c -w",
17-
"test": "yarn type-check && run-p lint test:browser test:node",
17+
"test": "run-p lint test:browser test:node",
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js",
19-
"type-check": "tsc -p . --noEmit",
2019
"test:browser": "karma start --single-run",
2120
"test:browser:debug": "karma start --browsers=Chrome --auto-watch",
2221
"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",

packages/installations/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@
1212
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
1313
"build": "rollup -c",
1414
"build:deps": "lerna run --scope @firebase/'{app,installations}' --include-dependencies build",
15-
"test": "yarn type-check && yarn test:karma && yarn lint",
15+
"test": "yarn test:karma && yarn lint",
1616
"test:ci": "node ../../scripts/run_tests_in_ci.js",
1717
"test:karma": "karma start --single-run",
1818
"test:debug": "karma start --browsers=Chrome --auto-watch",
19-
"type-check": "tsc -p . --noEmit",
2019
"serve": "yarn serve:build && yarn serve:host",
2120
"serve:build": "rollup -c test-app/rollup.config.js",
2221
"serve:host": "http-server -c-1 test-app",

packages/messaging/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@
1313
"build": "rollup -c",
1414
"build:deps": "lerna run --scope @firebase/'{app,messaging}' --include-dependencies build",
1515
"dev": "rollup -c -w",
16-
"test": "run-p test:karma type-check lint ",
17-
"test:integration": "run-p test:karma type-check lint && cd ../../integration/messaging && npm run-script test",
16+
"test": "test:karma",
17+
"test:integration": "test:karma && cd ../../integration/messaging && npm run-script test",
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js",
1919
"test:karma": "karma start --single-run",
2020
"test:debug": "karma start --browsers=Chrome --auto-watch",
21-
"prepare": "yarn build",
22-
"type-check": "tsc --noEmit"
21+
"prepare": "yarn build"
2322
},
2423
"license": "Apache-2.0",
2524
"peerDependencies": {

packages/template/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@
1717
"build": "rollup -c",
1818
"build:deps": "lerna run --scope @firebase/'{app,template}' --include-dependencies build",
1919
"dev": "rollup -c -w",
20-
"test": "yarn type-check && run-p lint test:browser test:node",
20+
"test": "run-p lint test:browser test:node",
2121
"test:ci": "node ../../scripts/run_tests_in_ci.js",
2222
"test:browser": "karma start --single-run",
2323
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js",
24-
"type-check": "tsc -p . --noEmit",
2524
"prepare": "yarn build"
2625
},
2726
"peerDependencies": {

packages/util/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
"build": "rollup -c",
1515
"build:deps": "lerna run --scope @firebase/util --include-dependencies build",
1616
"dev": "rollup -c -w",
17-
"test": "yarn type-check && run-p lint test:browser test:node",
17+
"test": "run-p test:browser test:node",
1818
"test:ci": "node ../../scripts/run_tests_in_ci.js",
19-
"type-check": "tsc -p . --noEmit",
2019
"test:browser": "karma start --single-run",
2120
"test:node": "TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js",
2221
"prepare": "yarn build"

0 commit comments

Comments
 (0)