## 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.
14 lines
323 B
JSON
14 lines
323 B
JSON
{
|
|
"name": "Nx Rsbuild",
|
|
"version": "0.1",
|
|
"generators": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init#initGeneratorInternal",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the `@nx/rsbuild` plugin.",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
}
|
|
}
|
|
}
|