@nx/plugin 19.6.1 → 19.6.2

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/README.md CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # Nx: Smart Monorepos · Fast CI
24
24
 
25
- Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
25
+ Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
26
26
 
27
27
  ## What is It?
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/plugin",
3
- "version": "19.6.1",
3
+ "version": "19.6.2",
4
4
  "private": false,
5
5
  "description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
6
6
  "repository": {
@@ -29,11 +29,11 @@
29
29
  "dependencies": {
30
30
  "fs-extra": "^11.1.0",
31
31
  "tslib": "^2.3.0",
32
- "@nx/devkit": "19.6.1",
33
- "@nx/jest": "19.6.1",
34
- "@nx/js": "19.6.1",
35
- "@nx/eslint": "19.6.1",
36
- "@nrwl/nx-plugin": "19.6.1"
32
+ "@nx/devkit": "19.6.2",
33
+ "@nx/jest": "19.6.2",
34
+ "@nx/js": "19.6.2",
35
+ "@nx/eslint": "19.6.2",
36
+ "@nrwl/nx-plugin": "19.6.2"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
@@ -1,5 +1,5 @@
1
1
  import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
2
- import type { Linter } from '@nx/eslint';
2
+ import type { Linter, LinterType } from '@nx/eslint';
3
3
 
4
4
  export interface CreatePackageSchema {
5
5
  name: string;
@@ -11,7 +11,7 @@ export interface CreatePackageSchema {
11
11
  skipFormat: boolean;
12
12
  tags?: string;
13
13
  unitTestRunner: 'jest' | 'none';
14
- linter: Linter;
14
+ linter: Linter | LinterType;
15
15
  compiler: 'swc' | 'tsc';
16
16
 
17
17
  // options to create e2e project, passed to e2e project generator
@@ -68,11 +68,7 @@
68
68
  "e2eProject": {
69
69
  "type": "string",
70
70
  "description": "The name of the e2e project.",
71
- "alias": "p",
72
- "$default": {
73
- "$source": "projectName"
74
- },
75
- "x-prompt": "What is the name of the e2e project?"
71
+ "x-prompt": "What is the name of the e2e project? Leave blank to skip e2e tests"
76
72
  }
77
73
  },
78
74
  "required": ["name", "project"]
@@ -1,5 +1,5 @@
1
1
  import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
2
- import type { Linter } from '@nx/eslint';
2
+ import type { Linter, LinterType } from '@nx/eslint';
3
3
 
4
4
  export interface Schema {
5
5
  pluginName: string;
@@ -8,7 +8,7 @@ export interface Schema {
8
8
  projectNameAndRootFormat?: ProjectNameAndRootFormat;
9
9
  pluginOutputPath?: string;
10
10
  jestConfig?: string;
11
- linter?: Linter;
11
+ linter?: Linter | LinterType;
12
12
  skipFormat?: boolean;
13
13
  rootProject?: boolean;
14
14
  addPlugin?: boolean;
@@ -1,5 +1,5 @@
1
1
  import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
2
- import type { Linter } from '@nx/eslint';
2
+ import type { Linter, LinterType } from '@nx/eslint';
3
3
 
4
4
  export interface Schema {
5
5
  name: string;
@@ -12,7 +12,7 @@ export interface Schema {
12
12
  e2eTestRunner?: 'jest' | 'none';
13
13
  tags?: string;
14
14
  unitTestRunner: 'jest' | 'none';
15
- linter: Linter;
15
+ linter: Linter | LinterType;
16
16
  setParserOptionsProject?: boolean;
17
17
  compiler: 'swc' | 'tsc';
18
18
  rootProject?: boolean;