docs(core): add description to express package (#9530)

This commit is contained in:
Benjamin Cabanes 2022-03-25 15:36:16 -04:00 committed by GitHub
parent ad5c6c3cbe
commit 9f41b6e18f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
{
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "express",
"description": "Express Plugin for Nx",
"description": "The Nx Plugin for Express that contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.",
"root": "/packages/express",
"source": "/packages/express/src",
"generators": [
@ -31,7 +31,7 @@
"required": [],
"presets": []
},
"description": "Initialize the @nrwl/express plugin",
"description": "Initialize the `@nrwl/express` plugin.",
"aliases": ["ng-add"],
"hidden": true,
"implementation": "/packages/express/src/generators/init/init#initGenerator.ts",
@ -120,7 +120,7 @@
},
"aliases": ["app"],
"x-type": "application",
"description": "Create an express application",
"description": "Create an Express application.",
"implementation": "/packages/express/src/generators/application/application#applicationGenerator.ts",
"hidden": false,
"path": "/packages/express/src/generators/application/schema.json"

View File

@ -6,7 +6,7 @@
"init": {
"factory": "./src/generators/init/init#initGenerator",
"schema": "./src/generators/init/schema.json",
"description": "Initialize the @nrwl/express plugin",
"description": "Initialize the `@nrwl/express` plugin.",
"aliases": ["ng-add"],
"hidden": true
},
@ -16,14 +16,14 @@
"schema": "./src/generators/application/schema.json",
"aliases": ["app"],
"x-type": "application",
"description": "Create an express application"
"description": "Create an Express application."
}
},
"schematics": {
"init": {
"factory": "./src/generators/init/init#initSchematic",
"schema": "./src/generators/init/schema.json",
"description": "Initialize the @nrwl/express plugin",
"description": "Initialize the `@nrwl/express` plugin.",
"aliases": ["ng-add"],
"hidden": true
},
@ -33,7 +33,7 @@
"schema": "./src/generators/application/schema.json",
"aliases": ["app"],
"x-type": "application",
"description": "Create an express application"
"description": "Create an Express application."
}
}
}

View File

@ -1,7 +1,7 @@
{
"name": "@nrwl/express",
"version": "0.0.1",
"description": "Express Plugin for Nx",
"description": "The Nx Plugin for Express that contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",