docs(core): add description to node package (#9533)
This commit is contained in:
parent
24173e5742
commit
a4da5a19b7
@ -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"
|
||||
|
||||
@ -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."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user