@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 +12 -12
- package/class/schema.d.ts +1 -1
- package/class/schema.json +1 -1
- package/component/schema.d.ts +1 -1
- package/component/schema.json +1 -1
- package/directive/schema.d.ts +1 -1
- package/directive/schema.json +1 -1
- package/e2e/schema.d.ts +1 -1
- package/e2e/schema.json +1 -1
- package/enum/schema.d.ts +1 -1
- package/enum/schema.json +1 -1
- package/guard/schema.d.ts +1 -1
- package/guard/schema.json +1 -1
- package/interceptor/schema.d.ts +1 -1
- package/interceptor/schema.json +1 -1
- package/interface/schema.d.ts +1 -1
- package/interface/schema.json +1 -1
- package/module/schema.d.ts +1 -1
- package/module/schema.json +1 -1
- package/package.json +3 -3
- package/pipe/schema.d.ts +1 -1
- package/pipe/schema.json +1 -1
- package/resolver/schema.d.ts +1 -1
- package/resolver/schema.json +1 -1
- package/service/schema.d.ts +1 -1
- package/service/schema.json +1 -1
- package/third_party/github.com/Microsoft/TypeScript/lib/typescript.js +795 -795
- package/web-worker/schema.d.ts +1 -1
- package/web-worker/schema.json +1 -1
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
|
|
13
|
-
| component | Creates a new, generic component definition in the given
|
|
14
|
-
| directive | Creates a new, generic directive definition in the given
|
|
15
|
-
| enum | Generates a new, generic enum definition
|
|
16
|
-
| guard | Generates a new, generic route guard definition in the given
|
|
17
|
-
| interceptor | Creates a new, generic interceptor definition in the given
|
|
18
|
-
| interface | Creates a new, generic interface definition in the given
|
|
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
|
|
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
|
|
23
|
-
| resolver | Creates a new, generic resolver definition in the given
|
|
24
|
-
| service | Creates a new, generic service definition in the given
|
|
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
|
|
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
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
|
|
6
|
+
"description": "Creates a new, generic class definition in the given project.",
|
|
7
7
|
"additionalProperties": false,
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
package/component/schema.d.ts
CHANGED
package/component/schema.json
CHANGED
|
@@ -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
|
|
6
|
+
"description": "Creates a new, generic component definition in the given project.",
|
|
7
7
|
"additionalProperties": false,
|
|
8
8
|
"properties": {
|
|
9
9
|
"path": {
|
package/directive/schema.d.ts
CHANGED
package/directive/schema.json
CHANGED
|
@@ -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
|
|
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
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
|
|
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
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
|
|
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
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
|
|
6
|
+
"description": "Generates a new, generic route guard definition in the given project.",
|
|
7
7
|
"additionalProperties": false,
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
package/interceptor/schema.d.ts
CHANGED
package/interceptor/schema.json
CHANGED
|
@@ -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
|
|
7
|
+
"description": "Creates a new, generic interceptor definition in the given project.",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string",
|
package/interface/schema.d.ts
CHANGED
package/interface/schema.json
CHANGED
|
@@ -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
|
|
7
|
+
"description": "Creates a new, generic interface definition in the given project.",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string",
|
package/module/schema.d.ts
CHANGED
package/module/schema.json
CHANGED
|
@@ -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
|
|
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.
|
|
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.
|
|
27
|
-
"@angular-devkit/schematics": "15.0.
|
|
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
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
|
|
7
|
+
"description": "Creates a new, generic pipe definition in the given project.",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string",
|
package/resolver/schema.d.ts
CHANGED
package/resolver/schema.json
CHANGED
|
@@ -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
|
|
7
|
+
"description": "Generates a new, generic resolver definition in the given project.",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string",
|
package/service/schema.d.ts
CHANGED
package/service/schema.json
CHANGED
|
@@ -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
|
|
7
|
+
"description": "Creates a new, generic service definition in the given project.",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string",
|