-
Notifications
You must be signed in to change notification settings - Fork 948
Miscellaneous fixes for the exp release and reference doc generation #4521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -44,7 +44,8 @@ | |||
"test:node:persistence:prod": "node ./scripts/run-tests.js --main=index.node.ts --persistence 'test/{,!(browser|lite)/**/}*.test.ts'", | |||
"test:travis": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/firestore-test-runner.ts", | |||
"test:minified": "(cd ../../integration/firestore ; yarn test)", | |||
"api-report": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./scripts/api-report.ts", | |||
"api-report": "yarn api-report:api-json && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./scripts/api-report.ts", | |||
"api-report:api-json": "rm -rf temp && api-extractor run --local --verbose", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume "rm -rf temp" is intentional.
@@ -44,7 +44,8 @@ | |||
"test:node:persistence:prod": "node ./scripts/run-tests.js --main=index.node.ts --persistence 'test/{,!(browser|lite)/**/}*.test.ts'", | |||
"test:travis": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/firestore-test-runner.ts", | |||
"test:minified": "(cd ../../integration/firestore ; yarn test)", | |||
"api-report": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./scripts/api-report.ts", | |||
"api-report": "yarn api-report:api-json && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./scripts/api-report.ts", | |||
"api-report:api-json": "rm -rf temp && api-extractor run --local --verbose", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the rollup build have to happen first? CI is complaining it can't find the mainEntryPointFilePath d.ts file which I think is generated during the build, but the api-report command here is run during prebuild
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh good catch. api-report:api-json
should run after ts-node ./scripts/api-report.ts
which creates the pruned d.ts files.
Binary Size ReportAffected SDKsNo changes between base commit (636dd78) and head commit (f806f4f). Test Logs
|
No description provided.