## Current Behavior Nx currently does not offer a generator to help scaffold configuration for an Rsbuild project ## Expected Behavior Add a `configuration` generator to the `@nx/rsbuild` package to help scaffold a configuration for a basic app
19 lines
558 B
JSON
19 lines
558 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
|
|
},
|
|
"configuration": {
|
|
"factory": "./src/generators/configuration/configuration",
|
|
"schema": "./src/generators/configuration/schema.json",
|
|
"description": "Add an Rsbuild configuration for the provided project."
|
|
}
|
|
}
|
|
}
|