chore(rspack): update convert inferred generator description (#30799)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> Currently, the `convert-to-inferred` generator description inside the rspack package references Webpack when it should reference Rspack instead. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> The `convert-to-inferred` generator description should reference Rspack instead of Webpack. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes
This commit is contained in:
parent
4e68270efd
commit
3f2a40ffec
@ -3,14 +3,14 @@
|
|||||||
"factory": "./src/generators/convert-to-inferred/convert-to-inferred#convertToInferred",
|
"factory": "./src/generators/convert-to-inferred/convert-to-inferred#convertToInferred",
|
||||||
"schema": {
|
"schema": {
|
||||||
"$schema": "https://json-schema.org/schema",
|
"$schema": "https://json-schema.org/schema",
|
||||||
"$id": "NxWebpackConvertToInferred",
|
"$id": "NxRspackConvertToInferred",
|
||||||
"description": "Convert existing Webpack project(s) using `@nx/webpack:wepack` executor to use `@nx/webpack/plugin`.",
|
"description": "Convert existing Rspack project(s) using `@nx/rspack:rspack` executor to use `@nx/rspack/plugin`.",
|
||||||
"title": "Convert a Webpack project from executor to plugin",
|
"title": "Convert a Rspack project from executor to plugin",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"project": {
|
"project": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The project to convert from using the `@nx/webpack:webpack` executor to use `@nx/webpack/plugin`. If not provided, all projects using the `@nx/webpack:webpack` executor will be converted.",
|
"description": "The project to convert from using the `@nx/rspack:rspack` executor to use `@nx/rspack/plugin`. If not provided, all projects using the `@nx/rspack:rspack` executor will be converted.",
|
||||||
"x-priority": "important"
|
"x-priority": "important"
|
||||||
},
|
},
|
||||||
"skipFormat": {
|
"skipFormat": {
|
||||||
|
|||||||
@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/schema",
|
"$schema": "https://json-schema.org/schema",
|
||||||
"$id": "NxWebpackConvertToInferred",
|
"$id": "NxRspackConvertToInferred",
|
||||||
"description": "Convert existing Webpack project(s) using `@nx/webpack:wepack` executor to use `@nx/webpack/plugin`.",
|
"description": "Convert existing Rspack project(s) using `@nx/rspack:rspack` executor to use `@nx/rspack/plugin`.",
|
||||||
"title": "Convert a Webpack project from executor to plugin",
|
"title": "Convert a Rspack project from executor to plugin",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"project": {
|
"project": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The project to convert from using the `@nx/webpack:webpack` executor to use `@nx/webpack/plugin`. If not provided, all projects using the `@nx/webpack:webpack` executor will be converted.",
|
"description": "The project to convert from using the `@nx/rspack:rspack` executor to use `@nx/rspack/plugin`. If not provided, all projects using the `@nx/rspack:rspack` executor will be converted.",
|
||||||
"x-priority": "important"
|
"x-priority": "important"
|
||||||
},
|
},
|
||||||
"skipFormat": {
|
"skipFormat": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user