-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcollection.json
More file actions
133 lines (113 loc) · 3.77 KB
/
Copy pathcollection.json
File metadata and controls
133 lines (113 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"ng-new": {
"factory": "./ng-new",
"description": "Create a new NativeScript Angular application.",
"schema": "./ng-new/schema.json"
},
"application": {
"factory": "./ng-new/application",
"description": "Create a new NativeScript Angular application.",
"schema": "./ng-new/application/schema.json"
},
"shared": {
"factory": "./ng-new/shared",
"description": "Create a shared mobile-web Angular NativeScript application.",
"schema": "./ng-new/shared/schema.json"
},
"angular-json": {
"description": "Adds angular.json to a {N} project.",
"factory": "./angular-json",
"schema": "./angular-json/schema.json"
},
"component": {
"aliases": [ "c" ],
"factory": "./generate/component",
"description": "Create an Angular component.",
"schema": "./generate/component/schema.json"
},
"module": {
"aliases": ["m"],
"factory": "./generate/module",
"description": "Create an Angular module",
"schema": "./generate/module/schema.json"
},
"common-module": {
"factory": "./generate/common-module",
"description": "Generate a common NgModule",
"schema": "./generate/common-module/schema.json"
},
"app-resources": {
"factory": "./app-resources",
"description": "Create App Resources",
"schema": "./app-resources/schema.json"
},
"styling": {
"factory": "./styling",
"description": "Create styling files",
"schema": "./styling/schema.json"
},
"add-ns": {
"factory": "./add-ns",
"description": "Migrates an ng web project to a code sharing project structure, by adding {N}",
"schema": "./add-ns/schema.json"
},
"ng-add": {
"factory": "./add-ns",
"description": "Adds NativeScript to a web project, turning it into a code sharing project with build targets for Web, Androind and iOS",
"schema": "./add-ns/schema.json"
},
"class": {
"aliases": [ "cl" ],
"extends": "@schematics/angular:class"
},
"directive": {
"aliases": [ "d" ],
"extends": "@schematics/angular:directive"
},
"enum": {
"aliases": [ "e" ],
"extends": "@schematics/angular:enum"
},
"guard": {
"aliases": [ "g" ],
"extends": "@schematics/angular:guard"
},
"interface": {
"aliases": [ "i" ],
"extends": "@schematics/angular:interface"
},
"pipe": {
"aliases": [ "p" ],
"extends": "@schematics/angular:pipe"
},
"service": {
"aliases": [ "s" ],
"extends": "@schematics/angular:service"
},
"migrate-component": {
"aliases": [ "mc"],
"description": "Converts a component into a code sharing component",
"factory": "./migrate-component",
"schema": "./migrate-component/schema.json"
},
"migrate-module": {
"aliases": [ "mg" ],
"description": "Converts a module into a code sharing module",
"factory": "./migrate-module",
"schema": "./migrate-module/schema.json"
},
"master-detail": {
"aliases": [ "md" ],
"description": "A master-detail template.",
"factory": "./generate-template/master-detail",
"schema": "./generate-template/master-detail/schema.json"
},
"convert-relative-imports": {
"description": "Takes the generated and modified files in the tree and converts all imports with relative paths to imports with 'remapped' paths. The 'remapped' path is calculated based on the 'paths' property in the project tsconfig.",
"factory": "./convert-relative-imports",
"schema": "./convert-relative-imports/schema.json"
}
}
}