## Current Behavior There is currently no way to execute Rsbuild targets via Nx. ## Expected Behavior Add a `@nx/rsbuild/plugin` to infer targets based on the `rsbuild.config` files in the workspace. Also add an `init` generator to allow for `nx init` in existing rsbuild projects.
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
export interface InitGeneratorSchema {
|
|
keepExistingVersions?: boolean;
|
|
updatePackageScripts?: boolean;
|
|
addPlugin?: boolean;
|
|
skipFormat?: boolean;
|
|
skipPackageJson?: boolean;
|
|
}
|