diff --git a/docs/generated/packages/node.json b/docs/generated/packages/node.json index fb65604c78..37d9edf5d6 100644 --- a/docs/generated/packages/node.json +++ b/docs/generated/packages/node.json @@ -1,7 +1,7 @@ { "githubRoot": "https://github.com/nrwl/nx/blob/master", "name": "node", - "description": "Node Plugin for Nx", + "description": "The Node Plugin contains generators and executors to manage Node applications within an Nx workspace.", "root": "/packages/node", "source": "/packages/node/src", "generators": [ @@ -31,7 +31,7 @@ "required": [], "presets": [] }, - "description": "Initialize the @nrwl/node plugin", + "description": "Initialize the `@nrwl/node` plugin.", "aliases": ["ng-add"], "hidden": true, "implementation": "/packages/node/src/generators/init/init.ts", @@ -119,7 +119,7 @@ }, "aliases": ["app"], "x-type": "application", - "description": "Create a node application", + "description": "Create a node application.", "implementation": "/packages/node/src/generators/application/application.ts", "hidden": false, "path": "/packages/node/src/generators/application/schema.json" @@ -250,7 +250,7 @@ }, "aliases": ["lib"], "x-type": "library", - "description": "Create a library", + "description": "Create a node library.", "implementation": "/packages/node/src/generators/library/library.ts", "hidden": false, "path": "/packages/node/src/generators/library/schema.json" @@ -498,7 +498,7 @@ }, "presets": [] }, - "description": "Build a Node application using webpack", + "description": "Build a Node application using Webpack.", "aliases": [], "hidden": false, "path": "/packages/node/src/executors/webpack/schema.json" @@ -568,7 +568,7 @@ "required": ["buildTarget"], "presets": [] }, - "description": "Execute a Node application", + "description": "Execute a Node application.", "aliases": [], "hidden": false, "path": "/packages/node/src/executors/node/schema.json" diff --git a/packages/node/executors.json b/packages/node/executors.json index 6afcad1527..c6fc8f875e 100644 --- a/packages/node/executors.json +++ b/packages/node/executors.json @@ -3,24 +3,24 @@ "webpack": { "implementation": "./src/executors/webpack/webpack.impl", "schema": "./src/executors/webpack/schema.json", - "description": "Build a Node application using webpack" + "description": "Build a Node application using Webpack." }, "node": { "implementation": "./src/executors/node/node.impl", "schema": "./src/executors/node/schema.json", - "description": "Execute a Node application" + "description": "Execute a Node application." } }, "builders": { "webpack": { "implementation": "./src/executors/webpack/compat", "schema": "./src/executors/webpack/schema.json", - "description": "Build a Node application using webpack" + "description": "Build a Node application using Webpack." }, "node": { "implementation": "./src/executors/node/compat", "schema": "./src/executors/node/schema.json", - "description": "Execute a Node application" + "description": "Execute a Node application." } } } diff --git a/packages/node/generators.json b/packages/node/generators.json index 734839344b..77bc307983 100644 --- a/packages/node/generators.json +++ b/packages/node/generators.json @@ -6,7 +6,7 @@ "init": { "factory": "./src/generators/init/init", "schema": "./src/generators/init/schema.json", - "description": "Initialize the @nrwl/node plugin", + "description": "Initialize the `@nrwl/node` plugin.", "aliases": ["ng-add"], "hidden": true }, @@ -15,21 +15,21 @@ "schema": "./src/generators/application/schema.json", "aliases": ["app"], "x-type": "application", - "description": "Create a node application" + "description": "Create a node application." }, "library": { "factory": "./src/generators/library/library", "schema": "./src/generators/library/schema.json", "aliases": ["lib"], "x-type": "library", - "description": "Create a library" + "description": "Create a node library." } }, "schematics": { "init": { "factory": "./src/generators/init/init#initSchematic", "schema": "./src/generators/init/schema.json", - "description": "Initialize the @nrwl/node plugin", + "description": "Initialize the `@nrwl/node` plugin.", "aliases": ["ng-add"], "hidden": true }, @@ -38,14 +38,14 @@ "schema": "./src/generators/application/schema.json", "aliases": ["app"], "x-type": "application", - "description": "Create a node application" + "description": "Create a node application." }, "library": { "factory": "./src/generators/library/library#librarySchematic", "schema": "./src/generators/library/schema.json", "aliases": ["lib"], "x-type": "library", - "description": "Create a library" + "description": "Create a node library." } } } diff --git a/packages/node/package.json b/packages/node/package.json index 4db550f69b..0ae95c35cf 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,7 +1,7 @@ { "name": "@nrwl/node", "version": "0.0.1", - "description": "Node Plugin for Nx", + "description": "The Node Plugin contains generators and executors to manage Node applications within an Nx workspace.", "repository": { "type": "git", "url": "https://github.com/nrwl/nx.git",