nx/packages/rsbuild/config-utils.ts
Colum Ferry 2db82dd36d
feat(rsbuild): move plugin export to root of package (#29415)
## Current Behavior
The Rsbuild plugin is exported at `@nx/rsbuild/plugin`


## Expected Behavior
Export the plugin from `@nx/rsbuild` i.e. the root of the package.
2024-12-19 14:09:57 +00:00

10 lines
373 B
TypeScript

export { addBuildPlugin } from './src/utils/add-build-plugin';
export {
addCopyAssets,
addHtmlTemplatePath,
addExperimentalSwcPlugin,
} from './src/utils/ast-utils';
export * as versions from './src/utils/versions';
export { getRsbuildE2EWebServerInfo } from './src/utils/e2e-web-server-info-utils';
export { hasRsbuildPlugin } from './src/utils/has-rsbuild-plugin';