-
Notifications
You must be signed in to change notification settings - Fork 907
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
Update dependencies in packages and repo-scripts #8729
base: main
Are you sure you want to change the base?
Conversation
|
d574275
to
628189c
Compare
03d26e6
to
b13f1a1
Compare
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1This report is too large (220,029 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
this.emitFile({ | ||
fileName: 'package.json', | ||
source: `{"type":"module"}`, | ||
type: 'asset' | ||
}); | ||
// I'm not sure why, this seems to prevent a rollup race condition? | ||
console.log('Emitted module package.json file for:', options.file); |
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.
Probably because console logs are relatively slow compared to everything else..?
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.
What is the race condition here?
this.emitFile({ | ||
fileName: 'package.json', | ||
source: `{"type":"module"}`, | ||
type: 'asset' | ||
}); | ||
// I'm not sure why, this seems to prevent a rollup race condition? | ||
console.log('Emitted module package.json file for:', options.file); |
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.
What is the race condition here?
Vertex AI Mock Responses Check
|
This PR covers dependency updates in #5566 in the packages/ and repo-scripts/ directories (and some catchup in the main package.json).
Fixes that were needed:
rollup-plugin-typescript2
changes affect some packages and require explicitly excluding test files from the rollup build (tests are built with webpack in a separate process)json-stable-stringify
required some Firestore tweaksmocha-chai-jest-snapshot
inapi-documenter
bumps a transitive dependency that has an unlisted dependency onjest-resolve
. Addedjest-resolve
to get over this but what we really need is an overhaul and update of theapi-documenter
fork.