Skip to content

Commit

Permalink
docs(core): add description to node package (#9533)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcabanes committed Mar 25, 2022
1 parent 24173e5 commit a4da5a1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions docs/generated/packages/node.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions packages/node/executors.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
}
}
12 changes: 6 additions & 6 deletions packages/node/generators.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand All @@ -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
},
Expand All @@ -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."
}
}
}
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

1 comment on commit a4da5a1

@vercel
Copy link

@vercel vercel bot commented on a4da5a1 Mar 25, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.