@nrwl/nx-plugin 14.6.0-beta.7 → 14.6.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [14.6.0-beta.7](https://github.com/nrwl/nx/compare/14.5.7...14.6.0-beta.7) (2022-08-19)
6
+ # [14.6.0-beta.8](https://github.com/nrwl/nx/compare/14.5.7...14.6.0-beta.8) (2022-08-26)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/nx-plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/nx-plugin",
3
- "version": "14.6.0-beta.7",
3
+ "version": "14.6.0-beta.8",
4
4
  "description": "Plugin for creating plugins for Nx :)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,10 +27,10 @@
27
27
  "migrations": "./migrations.json"
28
28
  },
29
29
  "dependencies": {
30
- "@nrwl/devkit": "14.6.0-beta.7",
31
- "@nrwl/jest": "14.6.0-beta.7",
32
- "@nrwl/js": "14.6.0-beta.7",
33
- "@nrwl/linter": "14.6.0-beta.7",
30
+ "@nrwl/devkit": "14.6.0-beta.8",
31
+ "@nrwl/jest": "14.6.0-beta.8",
32
+ "@nrwl/js": "14.6.0-beta.8",
33
+ "@nrwl/linter": "14.6.0-beta.8",
34
34
  "dotenv": "~10.0.0",
35
35
  "fs-extra": "^10.1.0",
36
36
  "rxjs": "^6.5.4",
@@ -38,5 +38,5 @@
38
38
  "tslib": "^2.3.0"
39
39
  },
40
40
  "typings": "./index.d.ts",
41
- "gitHead": "c0dd2f58324ddc21383a76805f1b6fd19d2f4a3e"
41
+ "gitHead": "8b02670a3962710a929ad048d40ab7470a7a94a4"
42
42
  }
@@ -10,12 +10,16 @@
10
10
  },
11
11
  "jestConfig": {
12
12
  "type": "string",
13
- "description": "Jest config file."
13
+ "description": "Jest config file.",
14
+ "x-completion-type": "file",
15
+ "x-completion-glob": "jest.config@(.js|.ts)"
14
16
  },
15
17
  "tsSpecConfig": {
16
18
  "type": "string",
17
19
  "description": "The tsconfig file for specs.",
18
- "x-deprecated": "Use the `tsconfig` property for `ts-jest` in the e2e project `jest.config.js` file. It will be removed in the next major release."
20
+ "x-deprecated": "Use the `tsconfig` property for `ts-jest` in the e2e project `jest.config.js` file. It will be removed in the next major release.",
21
+ "x-completion-type": "file",
22
+ "x-completion-glob": "tsconfig.*.json"
19
23
  },
20
24
 
21
25
  "codeCoverage": {
@@ -45,7 +49,9 @@
45
49
  },
46
50
  "testFile": {
47
51
  "description": "The name of the file to test.",
48
- "type": "string"
52
+ "type": "string",
53
+ "x-completion-type": "file",
54
+ "x-completion-glob": "**/*.+(spec|test).+(ts|js)"
49
55
  },
50
56
  "tsConfig": {
51
57
  "description": "The name of the Typescript configuration file. Set the tsconfig option in the jest config file. ",