@angular-eslint/schematics 19.0.3-alpha.8 → 19.1.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/dist/application/schema.json +18 -18
- package/dist/library/schema.json +9 -9
- package/package.json +6 -6
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
"$id": "SchematicsAngularApp",
|
|
4
4
|
"title": "Angular Application Options Schema",
|
|
5
5
|
"type": "object",
|
|
6
|
-
"description": "Generates a new
|
|
6
|
+
"description": "Generates a new Angular application within your workspace. This schematic sets up the foundational structure of your project, including the root component, module, and configuration files. You can customize various aspects of the application, such as routing, styling, and testing.",
|
|
7
7
|
"additionalProperties": false,
|
|
8
8
|
"properties": {
|
|
9
9
|
"projectRoot": {
|
|
10
|
-
"description": "The
|
|
10
|
+
"description": "The directory where the new application's files will be created, relative to the workspace root. If not specified, the application will be created in a subfolder within the `projects` directory, using the application's name.",
|
|
11
11
|
"type": "string"
|
|
12
12
|
},
|
|
13
13
|
"name": {
|
|
14
|
-
"description": "The name
|
|
14
|
+
"description": "The name for the new application. This name will be used for the project directory and various identifiers throughout the application's code.",
|
|
15
15
|
"type": "string",
|
|
16
16
|
"pattern": "^(?:@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*/)?[a-zA-Z0-9-~][a-zA-Z0-9-._~]*$",
|
|
17
17
|
"$default": {
|
|
@@ -21,37 +21,37 @@
|
|
|
21
21
|
"x-prompt": "What name would you like to use for the application?"
|
|
22
22
|
},
|
|
23
23
|
"inlineStyle": {
|
|
24
|
-
"description": "Include styles
|
|
24
|
+
"description": "Include the styles for the root component directly within the `app.component.ts` file. Only CSS styles can be included inline. By default, a separate stylesheet file (e.g., `app.component.css`) is created.",
|
|
25
25
|
"type": "boolean",
|
|
26
26
|
"alias": "s",
|
|
27
27
|
"x-user-analytics": "ep.ng_inline_style"
|
|
28
28
|
},
|
|
29
29
|
"inlineTemplate": {
|
|
30
|
-
"description": "Include template
|
|
30
|
+
"description": "Include the HTML template for the root component directly within the `app.component.ts` file. By default, a separate template file (e.g., `app.component.html`) is created.",
|
|
31
31
|
"type": "boolean",
|
|
32
32
|
"alias": "t",
|
|
33
33
|
"x-user-analytics": "ep.ng_inline_template"
|
|
34
34
|
},
|
|
35
35
|
"viewEncapsulation": {
|
|
36
|
-
"description": "
|
|
36
|
+
"description": "Sets the view encapsulation mode for the application's components. This determines how component styles are scoped and applied.",
|
|
37
37
|
"enum": ["Emulated", "None", "ShadowDom"],
|
|
38
38
|
"type": "string"
|
|
39
39
|
},
|
|
40
40
|
"routing": {
|
|
41
41
|
"type": "boolean",
|
|
42
|
-
"description": "
|
|
42
|
+
"description": "Generate an application with routing already configured. This sets up the necessary files and modules for managing navigation between different views in your application.",
|
|
43
43
|
"default": true,
|
|
44
44
|
"x-user-analytics": "ep.ng_routing"
|
|
45
45
|
},
|
|
46
46
|
"prefix": {
|
|
47
47
|
"type": "string",
|
|
48
48
|
"format": "html-selector",
|
|
49
|
-
"description": "A prefix to
|
|
49
|
+
"description": "A prefix to be added to the selectors of components generated within this application. For example, if the prefix is `my-app` and you generate a component named `my-component`, the selector will be `my-app-my-component`.",
|
|
50
50
|
"default": "app",
|
|
51
51
|
"alias": "p"
|
|
52
52
|
},
|
|
53
53
|
"style": {
|
|
54
|
-
"description": "The
|
|
54
|
+
"description": "The type of stylesheet files to be created for components in the application.",
|
|
55
55
|
"type": "string",
|
|
56
56
|
"default": "css",
|
|
57
57
|
"enum": ["css", "scss", "sass", "less"],
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"x-user-analytics": "ep.ng_style"
|
|
81
81
|
},
|
|
82
82
|
"skipTests": {
|
|
83
|
-
"description": "
|
|
83
|
+
"description": "Skip the generation of a unit test files `spec.ts`.",
|
|
84
84
|
"type": "boolean",
|
|
85
85
|
"default": false,
|
|
86
86
|
"alias": "S"
|
|
@@ -88,42 +88,42 @@
|
|
|
88
88
|
"skipPackageJson": {
|
|
89
89
|
"type": "boolean",
|
|
90
90
|
"default": false,
|
|
91
|
-
"description": "Do not add dependencies to the
|
|
91
|
+
"description": "Do not add dependencies to the `package.json` file."
|
|
92
92
|
},
|
|
93
93
|
"minimal": {
|
|
94
|
-
"description": "
|
|
94
|
+
"description": "Generate a minimal project without any testing frameworks. This is intended for learning purposes and simple experimentation, not for production applications.",
|
|
95
95
|
"type": "boolean",
|
|
96
96
|
"default": false
|
|
97
97
|
},
|
|
98
98
|
"skipInstall": {
|
|
99
|
-
"description": "Skip
|
|
99
|
+
"description": "Skip the automatic installation of packages. You will need to manually install the dependencies later.",
|
|
100
100
|
"type": "boolean",
|
|
101
101
|
"default": false
|
|
102
102
|
},
|
|
103
103
|
"strict": {
|
|
104
|
-
"description": "
|
|
104
|
+
"description": "Enable stricter bundle budget settings for the application. This helps to keep your application's bundle size small and improve performance. For more information, see https://angular.dev/tools/cli/template-typecheck#strict-mode",
|
|
105
105
|
"type": "boolean",
|
|
106
106
|
"default": true
|
|
107
107
|
},
|
|
108
108
|
"standalone": {
|
|
109
|
-
"description": "
|
|
109
|
+
"description": "Create an application that utilizes the standalone API, eliminating the need for NgModules. This can simplify the structure of your application.",
|
|
110
110
|
"type": "boolean",
|
|
111
111
|
"default": true,
|
|
112
112
|
"x-user-analytics": "ep.ng_standalone"
|
|
113
113
|
},
|
|
114
114
|
"ssr": {
|
|
115
|
-
"description": "
|
|
115
|
+
"description": "Configure the application for Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering).",
|
|
116
116
|
"x-prompt": "Do you want to enable Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering)?",
|
|
117
117
|
"type": "boolean",
|
|
118
118
|
"default": false,
|
|
119
119
|
"x-user-analytics": "ep.ng_ssr"
|
|
120
120
|
},
|
|
121
121
|
"serverRouting": {
|
|
122
|
-
"description": "
|
|
122
|
+
"description": "Set up a server application using the Server Routing and App Engine APIs (Developer Preview).",
|
|
123
123
|
"type": "boolean"
|
|
124
124
|
},
|
|
125
125
|
"experimentalZoneless": {
|
|
126
|
-
"description": "
|
|
126
|
+
"description": "Generate an application that does not use `zone.js`.",
|
|
127
127
|
"type": "boolean",
|
|
128
128
|
"default": false
|
|
129
129
|
},
|
package/dist/library/schema.json
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
"$id": "SchematicsLibrary",
|
|
4
4
|
"title": "Library Options Schema",
|
|
5
5
|
"type": "object",
|
|
6
|
-
"description": "Creates a new
|
|
6
|
+
"description": "Creates a new library project in your Angular workspace. Libraries are reusable collections of components, services, and other Angular artifacts that can be shared across multiple applications. This schematic simplifies the process of generating a new library with the necessary files and configurations.",
|
|
7
7
|
"additionalProperties": false,
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string",
|
|
11
|
-
"description": "The name
|
|
11
|
+
"description": "The name for the new library. This name will be used for the project directory and various identifiers within the library's code.",
|
|
12
12
|
"pattern": "^(?:@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*/)?[a-zA-Z0-9-~][a-zA-Z0-9-._~]*$",
|
|
13
13
|
"$default": {
|
|
14
14
|
"$source": "argv",
|
|
@@ -19,37 +19,37 @@
|
|
|
19
19
|
"entryFile": {
|
|
20
20
|
"type": "string",
|
|
21
21
|
"format": "path",
|
|
22
|
-
"description": "The path
|
|
22
|
+
"description": "The path to the library's public API file, relative to the workspace root. This file defines what parts of the library are accessible to applications that import it.",
|
|
23
23
|
"default": "public-api"
|
|
24
24
|
},
|
|
25
25
|
"prefix": {
|
|
26
26
|
"type": "string",
|
|
27
27
|
"format": "html-selector",
|
|
28
|
-
"description": "A prefix to
|
|
28
|
+
"description": "A prefix to be added to the selectors of components generated within this library. For example, if the prefix is `my-lib` and you generate a component named `my-component`, the selector will be `my-lib-my-component`.",
|
|
29
29
|
"default": "lib",
|
|
30
30
|
"alias": "p"
|
|
31
31
|
},
|
|
32
32
|
"skipPackageJson": {
|
|
33
33
|
"type": "boolean",
|
|
34
34
|
"default": false,
|
|
35
|
-
"description": "Do not add dependencies to the
|
|
35
|
+
"description": "Do not automatically add dependencies to the `package.json` file."
|
|
36
36
|
},
|
|
37
37
|
"skipInstall": {
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "Skip the automatic installation of packages. You will need to manually install the dependencies later.",
|
|
39
39
|
"type": "boolean",
|
|
40
40
|
"default": false
|
|
41
41
|
},
|
|
42
42
|
"skipTsConfig": {
|
|
43
43
|
"type": "boolean",
|
|
44
44
|
"default": false,
|
|
45
|
-
"description": "Do not update
|
|
45
|
+
"description": "Do not update the workspace `tsconfig.json` file to add a path mapping for the new library. The path mapping is needed to use the library in an application, but can be disabled here to simplify development."
|
|
46
46
|
},
|
|
47
47
|
"projectRoot": {
|
|
48
48
|
"type": "string",
|
|
49
|
-
"description": "The root directory
|
|
49
|
+
"description": "The root directory for the new library, relative to the workspace root. If not specified, the library will be created in a subfolder within the `projects` directory, using the library's name."
|
|
50
50
|
},
|
|
51
51
|
"standalone": {
|
|
52
|
-
"description": "
|
|
52
|
+
"description": "Create a library that utilizes the standalone API, eliminating the need for NgModules. This can simplify the structure of your library and its usage in applications.",
|
|
53
53
|
"type": "boolean",
|
|
54
54
|
"default": true,
|
|
55
55
|
"x-user-analytics": "ep.ng_standalone"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/schematics",
|
|
3
|
-
"version": "19.0
|
|
3
|
+
"version": "19.1.0",
|
|
4
4
|
"description": "Angular Schematics for angular-eslint",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@angular-devkit/core": ">= 19.0.0 < 20.0.0",
|
|
40
40
|
"@angular-devkit/schematics": ">= 19.0.0 < 20.0.0",
|
|
41
41
|
"ignore": "7.0.3",
|
|
42
|
-
"semver": "7.
|
|
42
|
+
"semver": "7.7.1",
|
|
43
43
|
"strip-json-comments": "3.1.1",
|
|
44
|
-
"@angular-eslint/eslint-plugin": "19.0
|
|
45
|
-
"@angular-eslint/eslint-plugin
|
|
44
|
+
"@angular-eslint/eslint-plugin-template": "19.1.0",
|
|
45
|
+
"@angular-eslint/eslint-plugin": "19.1.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@typescript-eslint/utils": "8.
|
|
49
|
-
"eslint": "9.
|
|
48
|
+
"@typescript-eslint/utils": "8.23.0",
|
|
49
|
+
"eslint": "9.20.0"
|
|
50
50
|
},
|
|
51
51
|
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
|
|
52
52
|
}
|