@schematics/angular 15.0.4 → 15.0.5

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
@@ -9,21 +9,21 @@ for generating an Angular application.
9
9
  | -------------- | ----------------------------------------------------------------------------------------------------- |
10
10
  | app-shell | Generates an app shell for running a server-side version of an app |
11
11
  | application | Generates a new basic app definition in the "projects" subfolder of the workspace |
12
- | class | Creates a new, generic class definition in the given or default project |
13
- | component | Creates a new, generic component definition in the given or default project |
14
- | directive | Creates a new, generic directive definition in the given or default project |
15
- | enum | Generates a new, generic enum definition for the given or default project |
16
- | guard | Generates a new, generic route guard definition in the given or default project |
17
- | interceptor | Creates a new, generic interceptor definition in the given or default project |
18
- | interface | Creates a new, generic interface definition in the given or default project |
12
+ | class | Creates a new, generic class definition in the given project |
13
+ | component | Creates a new, generic component definition in the given project |
14
+ | directive | Creates a new, generic directive definition in the given project |
15
+ | enum | Generates a new, generic enum definition in the given project |
16
+ | guard | Generates a new, generic route guard definition in the given project |
17
+ | interceptor | Creates a new, generic interceptor definition in the given project |
18
+ | interface | Creates a new, generic interface definition in the given project |
19
19
  | library | Creates a new, generic library project in the current workspace |
20
- | module | Creates a new, generic NgModule definition in the given or default project |
20
+ | module | Creates a new, generic NgModule definition in the given project |
21
21
  | ng-new | Creates a new project by combining the workspace and application schematics |
22
- | pipe | Creates a new, generic pipe definition in the given or default project |
23
- | resolver | Creates a new, generic resolver definition in the given or default project |
24
- | service | Creates a new, generic service definition in the given or default project |
22
+ | pipe | Creates a new, generic pipe definition in the given project |
23
+ | resolver | Creates a new, generic resolver definition in the given project |
24
+ | service | Creates a new, generic service definition in the given project |
25
25
  | service-worker | Pass this schematic to the "run" command to create a service worker |
26
- | web-worker | Creates a new, generic web worker definition in the given or default project |
26
+ | web-worker | Creates a new, generic web worker definition in the given project |
27
27
  | workspace | Initializes an empty workspace and adds the necessary dependencies required by an Angular application |
28
28
 
29
29
  ## Disclaimer
package/class/schema.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic class definition in the given or default project.
2
+ * Creates a new, generic class definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
package/class/schema.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$id": "SchematicsAngularClass",
4
4
  "title": "Angular Class Options Schema",
5
5
  "type": "object",
6
- "description": "Creates a new, generic class definition in the given or default project.",
6
+ "description": "Creates a new, generic class definition in the given project.",
7
7
  "additionalProperties": false,
8
8
  "properties": {
9
9
  "name": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic component definition in the given or default project.
2
+ * Creates a new, generic component definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -3,7 +3,7 @@
3
3
  "$id": "SchematicsAngularComponent",
4
4
  "title": "Angular Component Options Schema",
5
5
  "type": "object",
6
- "description": "Creates a new, generic component definition in the given or default project.",
6
+ "description": "Creates a new, generic component definition in the given project.",
7
7
  "additionalProperties": false,
8
8
  "properties": {
9
9
  "path": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic directive definition in the given or default project.
2
+ * Creates a new, generic directive definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -3,7 +3,7 @@
3
3
  "$id": "SchematicsAngularDirective",
4
4
  "title": "Angular Directive Options Schema",
5
5
  "type": "object",
6
- "description": "Creates a new, generic directive definition in the given or default project.",
6
+ "description": "Creates a new, generic directive definition in the given project.",
7
7
  "additionalProperties": false,
8
8
  "properties": {
9
9
  "name": {
package/e2e/schema.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Generates a new, generic end-to-end test definition for the given or default project.
2
+ * Generates a new, generic end-to-end test definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
package/e2e/schema.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "title": "Angular e2e Application Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Generates a new, generic end-to-end test definition for the given or default project.",
7
+ "description": "Generates a new, generic end-to-end test definition in the given project.",
8
8
  "properties": {
9
9
  "rootSelector": {
10
10
  "description": "The HTML selector for the root component of the test app.",
package/enum/schema.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Generates a new, generic enum definition for the given or default project.
2
+ * Generates a new, generic enum definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
package/enum/schema.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$id": "SchematicsAngularEnum",
4
4
  "title": "Angular Enum Options Schema",
5
5
  "type": "object",
6
- "description": "Generates a new, generic enum definition for the given or default project.",
6
+ "description": "Generates a new, generic enum definition in the given project.",
7
7
  "additionalProperties": false,
8
8
  "properties": {
9
9
  "name": {
package/guard/schema.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Generates a new, generic route guard definition in the given or default project.
2
+ * Generates a new, generic route guard definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
package/guard/schema.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$id": "SchematicsAngularGuard",
4
4
  "title": "Angular Guard Options Schema",
5
5
  "type": "object",
6
- "description": "Generates a new, generic route guard definition in the given or default project.",
6
+ "description": "Generates a new, generic route guard definition in the given project.",
7
7
  "additionalProperties": false,
8
8
  "properties": {
9
9
  "name": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic interceptor definition in the given or default project.
2
+ * Creates a new, generic interceptor definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -4,7 +4,7 @@
4
4
  "title": "Angular Interceptor Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Creates a new, generic interceptor definition in the given or default project.",
7
+ "description": "Creates a new, generic interceptor definition in the given project.",
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic interface definition in the given or default project.
2
+ * Creates a new, generic interface definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -4,7 +4,7 @@
4
4
  "title": "Angular Interface Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Creates a new, generic interface definition in the given or default project.",
7
+ "description": "Creates a new, generic interface definition in the given project.",
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic NgModule definition in the given or default project.
2
+ * Creates a new, generic NgModule definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -4,7 +4,7 @@
4
4
  "title": "Angular Module Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Creates a new, generic NgModule definition in the given or default project.",
7
+ "description": "Creates a new, generic NgModule definition in the given project.",
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "15.0.4",
3
+ "version": "15.0.5",
4
4
  "description": "Schematics specific to Angular",
5
5
  "homepage": "https://github.com/angular/angular-cli",
6
6
  "keywords": [
@@ -23,8 +23,8 @@
23
23
  },
24
24
  "schematics": "./collection.json",
25
25
  "dependencies": {
26
- "@angular-devkit/core": "15.0.4",
27
- "@angular-devkit/schematics": "15.0.4",
26
+ "@angular-devkit/core": "15.0.5",
27
+ "@angular-devkit/schematics": "15.0.5",
28
28
  "jsonc-parser": "3.2.0"
29
29
  },
30
30
  "repository": {
package/pipe/schema.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic pipe definition in the given or default project.
2
+ * Creates a new, generic pipe definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
package/pipe/schema.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "title": "Angular Pipe Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Creates a new, generic pipe definition in the given or default project.",
7
+ "description": "Creates a new, generic pipe definition in the given project.",
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Generates a new, generic resolver definition in the given or default project.
2
+ * Generates a new, generic resolver definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -4,7 +4,7 @@
4
4
  "title": "Angular resolver Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Generates a new, generic resolver definition in the given or default project.",
7
+ "description": "Generates a new, generic resolver definition in the given project.",
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Creates a new, generic service definition in the given or default project.
2
+ * Creates a new, generic service definition in the given project.
3
3
  */
4
4
  export interface Schema {
5
5
  /**
@@ -4,7 +4,7 @@
4
4
  "title": "Angular Service Options Schema",
5
5
  "type": "object",
6
6
  "additionalProperties": false,
7
- "description": "Creates a new, generic service definition in the given or default project.",
7
+ "description": "Creates a new, generic service definition in the given project.",
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",