Conversation
Releases: @swc/plugin-react-remove-properties@12.11.0 @swc/plugin-styled-components@12.11.0 @swc/plugin-transform-imports@12.11.0 @swc/plugin-swc-confidential@11.11.0 @swc-contrib/mut-cjs-exports@14.11.0 @swc/plugin-remove-console@12.11.0 @swc/plugin-experimental-feature-flags@0.10.0 @swc/plugin-styled-jsx@13.11.0 @swc/plugin-swc-magic@12.11.0 @swc/plugin-formatjs@9.11.0 @swc/plugin-prefresh@12.11.0 @swc/plugin-emotion@14.11.0 @swc/plugin-swc-sdk@12.11.0 @swc/plugin-relay@12.11.0 @swc-contrib/plugin-graphql-codegen-client-preset@0.23.0 @swc/plugin-jest@12.11.0 @swc/plugin-loadable-components@11.11.0 @swc/plugin-noop@12.11.0 [skip ci]
|
Review —
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 0d361fe252
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| repository = { workspace = true } | ||
| rust-version = { workspace = true } | ||
| version = "6.0.0" | ||
| version = "7.0.0" |
There was a problem hiding this comment.
Regenerate the lockfile for this version bump
This manifest now declares modularize_imports as 7.0.0, but the committed lockfile still records the local package as 6.0.0 at Cargo.lock:1637 (the same one-version lag appears for the other local transform crates bumped in this patch). In any CI or release job that builds with a locked/frozen lockfile, Cargo will stop because Cargo.lock needs to be updated before it can resolve the new path-dependency versions.
Useful? React with 👍 / 👎.
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Review of #620 — build: Update
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 153bbcc844
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "import _styled from "styled-components"; | ||
| // @flow |
There was a problem hiding this comment.
Preserve the Flow pragma before injected imports
For inputs that start with // @flow, accepting this output puts the newly injected _styled import before the pragma, so Flow no longer sees the file as Flow-typed because the pragma must appear before executable code. The fixture immediately below is the transpile-css-prop-add-import case whose source starts with // @flow, so users of the wasm plugin on Flow files with css props will silently lose Flow checking after this transform; the injected import should be placed after leading pragmas/comments as the previous snapshot did.
Useful? React with 👍 / 👎.
No description provided.