@nx/angular 22.7.0-pr.35356.e1b62ce → 22.7.0-rc.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/angular",
|
|
3
|
-
"version": "22.7.0-
|
|
3
|
+
"version": "22.7.0-rc.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
|
6
6
|
"repository": {
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"migrations": "./migrations.json"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@nx/devkit": "22.7.0-
|
|
66
|
-
"@nx/eslint": "22.7.0-
|
|
67
|
-
"@nx/js": "22.7.0-
|
|
68
|
-
"@nx/module-federation": "22.7.0-
|
|
69
|
-
"@nx/rspack": "22.7.0-
|
|
70
|
-
"@nx/web": "22.7.0-
|
|
71
|
-
"@nx/webpack": "22.7.0-
|
|
72
|
-
"@nx/workspace": "22.7.0-
|
|
65
|
+
"@nx/devkit": "22.7.0-rc.0",
|
|
66
|
+
"@nx/eslint": "22.7.0-rc.0",
|
|
67
|
+
"@nx/js": "22.7.0-rc.0",
|
|
68
|
+
"@nx/module-federation": "22.7.0-rc.0",
|
|
69
|
+
"@nx/rspack": "22.7.0-rc.0",
|
|
70
|
+
"@nx/web": "22.7.0-rc.0",
|
|
71
|
+
"@nx/webpack": "22.7.0-rc.0",
|
|
72
|
+
"@nx/workspace": "22.7.0-rc.0",
|
|
73
73
|
"@phenomnomnominal/tsquery": "~6.1.4",
|
|
74
74
|
"@typescript-eslint/type-utils": "^8.0.0",
|
|
75
75
|
"enquirer": "~2.3.6",
|
|
@@ -7,73 +7,7 @@ type EslintExtensionSchema = {
|
|
|
7
7
|
/**
|
|
8
8
|
* @deprecated Use tools from `@nx/eslint/src/generators/utils/eslint-file` instead. It will be removed in Nx v22.
|
|
9
9
|
*/
|
|
10
|
-
export declare const extendAngularEslintJson: (json: Linter.
|
|
11
|
-
overrides: ({
|
|
12
|
-
files: string[];
|
|
13
|
-
extends: string[];
|
|
14
|
-
rules: {
|
|
15
|
-
'@angular-eslint/directive-selector': (string | {
|
|
16
|
-
type: string;
|
|
17
|
-
prefix: string;
|
|
18
|
-
style: string;
|
|
19
|
-
})[];
|
|
20
|
-
'@angular-eslint/component-selector': (string | {
|
|
21
|
-
type: string;
|
|
22
|
-
prefix: string;
|
|
23
|
-
style: string;
|
|
24
|
-
})[];
|
|
25
|
-
};
|
|
26
|
-
excludedFiles?: string | string[] | undefined;
|
|
27
|
-
$schema?: string | undefined;
|
|
28
|
-
env?: {
|
|
29
|
-
[name: string]: boolean;
|
|
30
|
-
} | undefined;
|
|
31
|
-
globals?: {
|
|
32
|
-
[name: string]: boolean | "off" | "readonly" | "readable" | "writable" | "writeable";
|
|
33
|
-
} | undefined;
|
|
34
|
-
noInlineConfig?: boolean | undefined;
|
|
35
|
-
overrides?: Linter.ConfigOverride<Linter.RulesRecord>[];
|
|
36
|
-
parser?: string | undefined;
|
|
37
|
-
parserOptions?: Linter.ParserOptions | undefined;
|
|
38
|
-
plugins?: string[] | undefined;
|
|
39
|
-
processor?: string | undefined;
|
|
40
|
-
reportUnusedDisableDirectives?: boolean | undefined;
|
|
41
|
-
settings?: {
|
|
42
|
-
[name: string]: any;
|
|
43
|
-
} | undefined;
|
|
44
|
-
} | {
|
|
45
|
-
files: string[];
|
|
46
|
-
extends: string[];
|
|
47
|
-
/**
|
|
48
|
-
* Having an empty rules object present makes it more obvious to the user where they would
|
|
49
|
-
* extend things from if they needed to
|
|
50
|
-
*/
|
|
51
|
-
rules: {
|
|
52
|
-
'@angular-eslint/directive-selector'?: undefined;
|
|
53
|
-
'@angular-eslint/component-selector'?: undefined;
|
|
54
|
-
};
|
|
55
|
-
})[];
|
|
56
|
-
ignorePatterns?: string | string[] | undefined;
|
|
57
|
-
root?: boolean | undefined;
|
|
58
|
-
$schema?: string | undefined;
|
|
59
|
-
env?: {
|
|
60
|
-
[name: string]: boolean;
|
|
61
|
-
} | undefined;
|
|
62
|
-
extends?: string | string[] | undefined;
|
|
63
|
-
globals?: {
|
|
64
|
-
[name: string]: boolean | "off" | "readonly" | "readable" | "writable" | "writeable";
|
|
65
|
-
} | undefined;
|
|
66
|
-
noInlineConfig?: boolean | undefined;
|
|
67
|
-
parser?: string | undefined;
|
|
68
|
-
parserOptions?: Linter.ParserOptions | undefined;
|
|
69
|
-
plugins?: string[] | undefined;
|
|
70
|
-
processor?: string | undefined;
|
|
71
|
-
reportUnusedDisableDirectives?: boolean | undefined;
|
|
72
|
-
settings?: {
|
|
73
|
-
[name: string]: any;
|
|
74
|
-
} | undefined;
|
|
75
|
-
rules?: Partial<Linter.RulesRecord>;
|
|
76
|
-
};
|
|
10
|
+
export declare const extendAngularEslintJson: (json: Linter.LegacyConfig, options: EslintExtensionSchema) => Linter.LegacyConfig;
|
|
77
11
|
/**
|
|
78
12
|
* @deprecated Use {@link extendAngularEslintJson} instead. It will be removed in Nx v22.
|
|
79
13
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-eslint-configuration.d.ts","sourceRoot":"","sources":["../../../../../../../packages/angular/src/generators/add-linting/lib/create-eslint-configuration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AACrC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AAG3D,KAAK,qBAAqB,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAClC,MAAM,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"create-eslint-configuration.d.ts","sourceRoot":"","sources":["../../../../../../../packages/angular/src/generators/add-linting/lib/create-eslint-configuration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AACrC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AAG3D,KAAK,qBAAqB,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAClC,MAAM,MAAM,CAAC,YAAY,EACzB,SAAS,qBAAqB,KAC7B,MAAM,CAAC,YA4CT,CAAC;AAEF;;GAEG;AACH,wBAAgB,yBAAyB,CACvC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,yBAAyB,GACjC,IAAI,CAqEN"}
|