Skip to content

Commit

Permalink
docs(core): add description to jest package (#9531)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcabanes committed Mar 25, 2022
1 parent f612666 commit 5d28162
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions docs/generated/packages/jest.json
@@ -1,7 +1,7 @@
{
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "jest",
"description": "Jest plugin for Nx",
"description": "The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.",
"root": "/packages/jest",
"source": "/packages/jest/src",
"generators": [
Expand Down Expand Up @@ -31,7 +31,7 @@
"required": [],
"presets": []
},
"description": "Initialize the @nrwl/jest plugin",
"description": "Initialize the `@nrwl/jest` plugin.",
"aliases": ["ng-add"],
"hidden": true,
"implementation": "/packages/jest/src/generators/init/init#jestInitGenerator.ts",
Expand Down Expand Up @@ -108,7 +108,7 @@
"required": [],
"presets": []
},
"description": "Add Jest configuration to a project",
"description": "Add Jest configuration to a project.",
"hidden": true,
"implementation": "/packages/jest/src/generators/jest-project/jest-project#jestProjectGenerator.ts",
"aliases": [],
Expand Down Expand Up @@ -299,7 +299,7 @@
"presets": []
},
"hasher": "./src/executors/jest/hasher",
"description": "Run Jest unit tests",
"description": "Run Jest unit tests.",
"aliases": [],
"hidden": false,
"path": "/packages/jest/src/executors/jest/schema.json"
Expand Down
4 changes: 2 additions & 2 deletions packages/jest/executors.json
Expand Up @@ -3,7 +3,7 @@
"jest": {
"implementation": "./src/executors/jest/compat",
"schema": "./src/executors/jest/schema.json",
"description": "Run Jest unit tests"
"description": "Run Jest unit tests."
}
},
"executors": {
Expand All @@ -12,7 +12,7 @@
"batchImplementation": "./src/executors/jest/jest.impl#batchJest",
"schema": "./src/executors/jest/schema.json",
"hasher": "./src/executors/jest/hasher",
"description": "Run Jest unit tests"
"description": "Run Jest unit tests."
}
}
}
8 changes: 4 additions & 4 deletions packages/jest/generators.json
Expand Up @@ -5,29 +5,29 @@
"init": {
"factory": "./src/generators/init/init#jestInitSchematic",
"schema": "./src/generators/init/schema.json",
"description": "Initialize the @nrwl/jest plugin",
"description": "Initialize the `@nrwl/jest` plugin.",
"aliases": ["ng-add"],
"hidden": true
},
"jest-project": {
"factory": "./src/generators/jest-project/jest-project#jestProjectSchematic",
"schema": "./src/generators/jest-project/schema.json",
"description": "Add Jest configuration to a project",
"description": "Add Jest configuration to a project.",
"hidden": true
}
},
"generators": {
"init": {
"factory": "./src/generators/init/init#jestInitGenerator",
"schema": "./src/generators/init/schema.json",
"description": "Initialize the @nrwl/jest plugin",
"description": "Initialize the `@nrwl/jest` plugin.",
"aliases": ["ng-add"],
"hidden": true
},
"jest-project": {
"factory": "./src/generators/jest-project/jest-project#jestProjectGenerator",
"schema": "./src/generators/jest-project/schema.json",
"description": "Add Jest configuration to a project",
"description": "Add Jest configuration to a project.",
"hidden": true
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/package.json
@@ -1,7 +1,7 @@
{
"name": "@nrwl/jest",
"version": "0.0.1",
"description": "Jest plugin for Nx",
"description": "The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
Expand Down

1 comment on commit 5d28162

@vercel
Copy link

@vercel vercel bot commented on 5d28162 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.