@nx/plugin 19.6.1 → 19.7.0-beta.0
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
|
|
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.
|
|
3
|
+
"version": "19.7.0-beta.0",
|
|
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.
|
|
33
|
-
"@nx/jest": "19.
|
|
34
|
-
"@nx/js": "19.
|
|
35
|
-
"@nx/eslint": "19.
|
|
36
|
-
"@nrwl/nx-plugin": "19.
|
|
32
|
+
"@nx/devkit": "19.7.0-beta.0",
|
|
33
|
+
"@nx/jest": "19.7.0-beta.0",
|
|
34
|
+
"@nx/js": "19.7.0-beta.0",
|
|
35
|
+
"@nx/eslint": "19.7.0-beta.0",
|
|
36
|
+
"@nrwl/nx-plugin": "19.7.0-beta.0"
|
|
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
|
|
@@ -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;
|