Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"magic-string": "1.0.0",
"prettier": "^3.0.0",
"puppeteer": "25.3.0",
"quicktype-core": "25.0.0",
"quicktype-core": "26.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Upgrading quicktype-core to v26.0.0 introduces breaking changes to the default generated TypeScript code:\n- String-literal unions are now generated instead of enums.\n- unknown is now generated instead of any.\n\nSince tools/quicktype_runner.js is used to generate TypeScript files from JSON schemas, this upgrade will change the generated output and may break downstream TypeScript compilation if other packages rely on the generated enums or any types.\n\nIf you wish to preserve the previous behavior and avoid breaking changes, you should update rendererOptions in tools/quicktype_runner.js to disable these new defaults:\n\njavascript\nrendererOptions: {\n 'prefer-types': 'true',\n 'just-types': 'true',\n 'explicit-unions': 'true',\n 'acronym-style': 'camel',\n 'prefer-unions': 'false',\n 'prefer-unknown': 'false'\n}\n\n\nOtherwise, please verify that the generated code changes are acceptable and do not break any downstream consumers.

"rollup": "4.62.2",
"rollup-license-plugin": "~3.2.0",
"rollup-plugin-dts": "6.4.1",
Expand Down
Loading
Loading