Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ 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".
| export * from './runner'; | ||
| export { OFFICIAL_EXTENSION_BLUEPRINTS } from './official'; | ||
| // Export official blueprints from a dedicated entry point to avoid bundling them | ||
| // with core logic (they contain large documentation strings). | ||
| export type { | ||
| OfficialExtensionBlueprint, | ||
| ExtensionBlueprint, |
There was a problem hiding this comment.
Re-expose official extension blueprints on extensions entry
The extensions entry point no longer exports OFFICIAL_EXTENSION_BLUEPRINTS, leaving @wpkernel/pipeline/extensions with only type exports while the README still directs consumers to import the blueprint list from that subpath. Any existing code doing import { OFFICIAL_EXTENSION_BLUEPRINTS } from '@wpkernel/pipeline/extensions' will now fail to compile because the symbol is missing, even though it is still exported from the package root. Please keep the constant available from the documented extensions entry (or provide a replacement entry) to avoid breaking consumers.
Useful? React with 👍 / 👎.
No description provided.