Skip to content

Commit

Permalink
fix(nx-plugin): enable prompt for generator and migration generators (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz authored Oct 17, 2023
1 parent 882dd08 commit 7d095d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/generated/packages/plugin/generators/generator.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator",
"factory": "./src/generators/generator/generator",
"factory": "./src/generators/generator/generator#generatorGeneratorInternal",
"schema": {
"$schema": "http://json-schema.org/schema",
"cli": "nx",
Expand Down Expand Up @@ -63,7 +63,7 @@
"presets": []
},
"description": "Create a generator for an Nx Plugin.",
"implementation": "/packages/plugin/src/generators/generator/generator.ts",
"implementation": "/packages/plugin/src/generators/generator/generator#generatorGeneratorInternal.ts",
"aliases": [],
"hidden": false,
"path": "/packages/plugin/src/generators/generator/schema.json",
Expand Down
4 changes: 2 additions & 2 deletions docs/generated/packages/plugin/generators/migration.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "migration",
"factory": "./src/generators/migration/migration",
"factory": "./src/generators/migration/migration#migrationGeneratorInternal",
"schema": {
"$schema": "http://json-schema.org/schema",
"cli": "nx",
Expand Down Expand Up @@ -61,7 +61,7 @@
"presets": []
},
"description": "Create a migration for an Nx Plugin.",
"implementation": "/packages/plugin/src/generators/migration/migration.ts",
"implementation": "/packages/plugin/src/generators/migration/migration#migrationGeneratorInternal.ts",
"aliases": [],
"hidden": false,
"path": "/packages/plugin/src/generators/migration/schema.json",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin/generators.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"description": "Create a E2E application for a Nx Plugin."
},
"migration": {
"factory": "./src/generators/migration/migration",
"factory": "./src/generators/migration/migration#migrationGeneratorInternal",
"schema": "./src/generators/migration/schema.json",
"description": "Create a migration for an Nx Plugin."
},
"generator": {
"factory": "./src/generators/generator/generator",
"factory": "./src/generators/generator/generator#generatorGeneratorInternal",
"schema": "./src/generators/generator/schema.json",
"description": "Create a generator for an Nx Plugin."
},
Expand Down

1 comment on commit 7d095d5

@vercel
Copy link

@vercel vercel bot commented on 7d095d5 Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev

Please sign in to comment.