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", "githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "express", "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", "root": "/packages/express",
"source": "/packages/express/src", "source": "/packages/express/src",
"generators": [ "generators": [
@ -31,7 +31,7 @@
"required": [], "required": [],
"presets": [] "presets": []
}, },
"description": "Initialize the @nrwl/express plugin", "description": "Initialize the `@nrwl/express` plugin.",
"aliases": ["ng-add"], "aliases": ["ng-add"],
"hidden": true, "hidden": true,
"implementation": "/packages/express/src/generators/init/init#initGenerator.ts", "implementation": "/packages/express/src/generators/init/init#initGenerator.ts",
@ -120,7 +120,7 @@
}, },
"aliases": ["app"], "aliases": ["app"],
"x-type": "application", "x-type": "application",
"description": "Create an express application", "description": "Create an Express application.",
"implementation": "/packages/express/src/generators/application/application#applicationGenerator.ts", "implementation": "/packages/express/src/generators/application/application#applicationGenerator.ts",
"hidden": false, "hidden": false,
"path": "/packages/express/src/generators/application/schema.json" "path": "/packages/express/src/generators/application/schema.json"

View File

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

View File

@ -1,7 +1,7 @@
{ {
"name": "@nrwl/express", "name": "@nrwl/express",
"version": "0.0.1", "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": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/nrwl/nx.git", "url": "https://github.com/nrwl/nx.git",