-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: commit generated types to the repository (#4826)
Also check them during `npm run lint` and regenerate during `npm run watch`.
- Loading branch information
Showing
8 changed files
with
24,827 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ yarn.lock | |
/node6 | ||
/src/generated/* | ||
lib/ | ||
/types/* | ||
jest-report.json | ||
drivers/ | ||
/docs/api.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,13 +19,12 @@ | |
"tsc-installer": "tsc -p ./src/install/tsconfig.json", | ||
"doc": "node utils/doclint/cli.js", | ||
"test-infra": "folio utils/doclint/check_public_api/test/test.js && folio utils/doclint/preprocessor/test.js", | ||
"lint": "npm run eslint && npm run tsc && npm run doc && npm run check-deps && npm run generate-channels && npm run test-types && npm run test-infra", | ||
"lint": "npm run eslint && npm run tsc && npm run doc && npm run check-deps && npm run generate-channels && node utils/generate_types/ --check-clean && npm run test-types && npm run test-infra", | ||
"clean": "rimraf lib && rimraf types", | ||
"prepare": "node install-from-github.js", | ||
"build": "node utils/runWebpack.js --mode='development' && tsc -p . && npm run generate-types && npm run generate-api-json", | ||
"build": "node utils/runWebpack.js --mode='development' && tsc -p . && npm run generate-api-json", | ||
"watch": "node utils/watch.js", | ||
"test-types": "npm run generate-types && npx -p [email protected] tsc -p utils/generate_types/test/tsconfig.json && npm run typecheck-tests", | ||
"generate-types": "node utils/generate_types/", | ||
"test-types": "node utils/generate_types/ && npx -p [email protected] tsc -p utils/generate_types/test/tsconfig.json && npm run typecheck-tests", | ||
"generate-channels": "node utils/generate_channels.js", | ||
"generate-api-json": "node utils/doclint/generateApiJson.js > docs/api.json", | ||
"typecheck-tests": "tsc -p ./test/", | ||
|
Oops, something went wrong.