@nx/plugin 0.0.0-pr-27552-8322864 → 0.0.0-pr-27504-68aa5d2
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 with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
|
|
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": "0.0.0-pr-
|
|
3
|
+
"version": "0.0.0-pr-27504-68aa5d2",
|
|
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": "0.0.0-pr-
|
|
33
|
-
"@nx/jest": "0.0.0-pr-
|
|
34
|
-
"@nx/js": "0.0.0-pr-
|
|
35
|
-
"@nx/eslint": "0.0.0-pr-
|
|
36
|
-
"@nrwl/nx-plugin": "0.0.0-pr-
|
|
32
|
+
"@nx/devkit": "0.0.0-pr-27504-68aa5d2",
|
|
33
|
+
"@nx/jest": "0.0.0-pr-27504-68aa5d2",
|
|
34
|
+
"@nx/js": "0.0.0-pr-27504-68aa5d2",
|
|
35
|
+
"@nx/eslint": "0.0.0-pr-27504-68aa5d2",
|
|
36
|
+
"@nrwl/nx-plugin": "0.0.0-pr-27504-68aa5d2"
|
|
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
|
|
2
|
+
import type { Linter } 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;
|
|
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
|
|
2
|
+
import type { Linter } 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;
|
|
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
|
|
2
|
+
import type { Linter } 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;
|
|
16
16
|
setParserOptionsProject?: boolean;
|
|
17
17
|
compiler: 'swc' | 'tsc';
|
|
18
18
|
rootProject?: boolean;
|