@ngflow/ng-architect 1.2.0 → 1.2.1
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 +1 -1
- package/src/ng-architect/component/schema.json +9 -9
- package/src/ng-architect/feature/schema.json +26 -4
- package/src/ng-architect/service/schema.json +9 -9
- package/src/ng-architect/utils/routes-utils.js +1 -1
- package/src/ng-architect/utils/routes-utils.js.map +1 -1
- package/src/ng-architect/utils/routes-utils.ts +1 -1
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
-
"$id": "
|
|
3
|
+
"$id": "NgArchitectComponentSchema",
|
|
4
4
|
"title": "Angular Component Generator",
|
|
5
5
|
"description": "Generates a reusable Angular component",
|
|
6
|
-
|
|
6
|
+
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
|
-
"name": {
|
|
8
|
+
"name": { "type": "string", "description": "Component name" },
|
|
9
|
+
"structure": {
|
|
9
10
|
"type": "string",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"enum": ["flat", "domain-driven", "module-driven", "monorepo"],
|
|
12
|
+
"default": "domain-driven"
|
|
12
13
|
},
|
|
13
|
-
"module": {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
14
|
+
"module": { "type": "string", "description": "Module name (for module-driven structure)" },
|
|
15
|
+
"app": { "type": "string", "description": "App name (for monorepo)" },
|
|
16
|
+
"lib": { "type": "string", "description": "Lib name (for monorepo)" }
|
|
17
17
|
},
|
|
18
18
|
"required": ["name"]
|
|
19
19
|
}
|
|
@@ -1,14 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
-
"$id": "
|
|
3
|
+
"$id": "NgArchitectFeatureSchema",
|
|
4
4
|
"title": "Angular Feature Generator",
|
|
5
5
|
"description": "Generates a complete Angular feature with pages, services, store, models and routes",
|
|
6
|
-
|
|
6
|
+
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"name": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "
|
|
11
|
-
|
|
10
|
+
"description": "Feature name"
|
|
11
|
+
},
|
|
12
|
+
"structure": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"enum": ["flat", "domain-driven", "module-driven", "monorepo"],
|
|
15
|
+
"default": "domain-driven",
|
|
16
|
+
"description": "Project structure for feature"
|
|
17
|
+
},
|
|
18
|
+
"module": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Module name (required for module-driven structure)"
|
|
21
|
+
},
|
|
22
|
+
"app": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "App name (required for monorepo app structure)"
|
|
25
|
+
},
|
|
26
|
+
"lib": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "Lib name (required for monorepo lib structure)"
|
|
29
|
+
},
|
|
30
|
+
"store": {
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"description": "Generate store for feature",
|
|
33
|
+
"default": false
|
|
12
34
|
}
|
|
13
35
|
},
|
|
14
36
|
"required": ["name"]
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
-
"$id": "
|
|
3
|
+
"$id": "NgArchitectServiceSchema",
|
|
4
4
|
"title": "Angular Service Generator",
|
|
5
5
|
"description": "Generates an Angular service with optional store and tests",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
|
-
"name": {
|
|
8
|
+
"name": { "type": "string", "description": "Service name" },
|
|
9
|
+
"structure": {
|
|
9
10
|
"type": "string",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"enum": ["flat", "domain-driven", "module-driven", "monorepo"],
|
|
12
|
+
"default": "domain-driven"
|
|
12
13
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
14
|
+
"module": { "type": "string", "description": "Module name (for module-driven structure)" },
|
|
15
|
+
"app": { "type": "string", "description": "App name (for monorepo)" },
|
|
16
|
+
"lib": { "type": "string", "description": "Lib name (for monorepo)" },
|
|
17
|
+
"store": { "type": "boolean", "description": "Generate store for service", "default": false }
|
|
18
18
|
},
|
|
19
19
|
"required": ["name"]
|
|
20
20
|
}
|
|
@@ -54,7 +54,7 @@ function updateAppRoutes(tree, featureKebab, featurePascal, structure, options)
|
|
|
54
54
|
content = importStatement + content;
|
|
55
55
|
}
|
|
56
56
|
if (!content.includes(routeEntry)) {
|
|
57
|
-
content = content.replace(/export const routes: Routes = \[/, match => match + '\n' + routeEntry);
|
|
57
|
+
content = content.replace(/export const routes: Routes = \[/, (match) => match + '\n' + routeEntry);
|
|
58
58
|
}
|
|
59
59
|
tree.overwrite(routesFilePath, content);
|
|
60
60
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes-utils.js","sourceRoot":"","sources":["routes-utils.ts"],"names":[],"mappings":";;AAEA,0CAuEC;AAvED,SAAgB,eAAe,CAC7B,IAAU,EACV,YAAoB,EACpB,aAAqB,EACrB,SAAiB,EACjB,OAAY;;IAEZ,IAAI,cAAc,GAAW,EAAE,CAAC;IAEhC,0CAA0C;IAC1C,QAAQ,SAAS,EAAE,CAAC;QAClB,KAAK,MAAM,CAAC;QACZ,KAAK,eAAe,CAAC;QACrB,KAAK,eAAe;YAClB,cAAc,GAAG,uBAAuB,CAAC;YACzC,MAAM;QAER,KAAK,UAAU;YACb,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;gBAChB,cAAc,GAAG,QAAQ,OAAO,CAAC,GAAG,wBAAwB,CAAC;YAC/D,CAAC;iBAAM,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;gBACvB,4CAA4C;gBAC5C,cAAc,GAAG,QAAQ,OAAO,CAAC,GAAG,wBAAwB,CAAC;gBAC7D,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE,CAAC;oBACjC,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,kFAAkF,CAAC,CAAC;gBAClH,CAAC;YACH,CAAC;YACD,MAAM;QAER;YACE,MAAM,IAAI,KAAK,CAAC,sBAAsB,SAAS,EAAE,CAAC,CAAC;IACvD,CAAC;IAED,+BAA+B;IAC/B,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE,CAAC;QACjC,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,kFAAkF,CAAC,CAAC;IAClH,CAAC;IAED,IAAI,OAAO,GAAG,CAAA,MAAA,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,0CAAE,QAAQ,CAAC,OAAO,CAAC,KAAI,EAAE,CAAC;IAEjE,oBAAoB;IACpB,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE;QACvB,QAAQ,SAAS,EAAE,CAAC;YAClB,KAAK,MAAM;gBACT,OAAO,KAAK,YAAY,IAAI,YAAY,OAAO,CAAC;YAClD,KAAK,eAAe;gBAClB,OAAO,cAAc,YAAY,UAAU,YAAY,OAAO,CAAC;YACjE,KAAK,eAAe;gBAClB,OAAO,KAAK,OAAO,CAAC,MAAM,IAAI,YAAY,UAAU,YAAY,OAAO,CAAC;YAC1E,KAAK,UAAU;gBACb,OAAO,KAAK,YAAY,UAAU,YAAY,OAAO,CAAC;QAC1D,CAAC;IACH,CAAC,CAAC,EAAE,CAAC;IAEL,MAAM,eAAe,GAAG,YAAY,aAAa,gBAAgB,UAAU,MAAM,CAAC;IAElF,wDAAwD;IACxD,MAAM,UAAU,GACd,SAAS,KAAK,eAAe,IAAI,SAAS,KAAK,eAAe;QAC5D,CAAC,CAAC,cAAc,YAAY,kCAAkC,UAAU,CAAC,OAAO,CAAC,OAAO,EAAE,SAAS,CAAC,kBAAkB,aAAa,YAAY;QAC/I,CAAC,CAAC,cAAc,YAAY,iBAAiB,aAAa,SAAS,CAAC;IAExE,oBAAoB;IACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;QACvC,OAAO,GAAG,eAAe,GAAG,OAAO,CAAC;IACtC,CAAC;IACD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC;QAClC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,kCAAkC,EAAE,
|
|
1
|
+
{"version":3,"file":"routes-utils.js","sourceRoot":"","sources":["routes-utils.ts"],"names":[],"mappings":";;AAEA,0CAuEC;AAvED,SAAgB,eAAe,CAC7B,IAAU,EACV,YAAoB,EACpB,aAAqB,EACrB,SAAiB,EACjB,OAAY;;IAEZ,IAAI,cAAc,GAAW,EAAE,CAAC;IAEhC,0CAA0C;IAC1C,QAAQ,SAAS,EAAE,CAAC;QAClB,KAAK,MAAM,CAAC;QACZ,KAAK,eAAe,CAAC;QACrB,KAAK,eAAe;YAClB,cAAc,GAAG,uBAAuB,CAAC;YACzC,MAAM;QAER,KAAK,UAAU;YACb,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;gBAChB,cAAc,GAAG,QAAQ,OAAO,CAAC,GAAG,wBAAwB,CAAC;YAC/D,CAAC;iBAAM,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;gBACvB,4CAA4C;gBAC5C,cAAc,GAAG,QAAQ,OAAO,CAAC,GAAG,wBAAwB,CAAC;gBAC7D,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE,CAAC;oBACjC,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,kFAAkF,CAAC,CAAC;gBAClH,CAAC;YACH,CAAC;YACD,MAAM;QAER;YACE,MAAM,IAAI,KAAK,CAAC,sBAAsB,SAAS,EAAE,CAAC,CAAC;IACvD,CAAC;IAED,+BAA+B;IAC/B,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE,CAAC;QACjC,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,kFAAkF,CAAC,CAAC;IAClH,CAAC;IAED,IAAI,OAAO,GAAG,CAAA,MAAA,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,0CAAE,QAAQ,CAAC,OAAO,CAAC,KAAI,EAAE,CAAC;IAEjE,oBAAoB;IACpB,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE;QACvB,QAAQ,SAAS,EAAE,CAAC;YAClB,KAAK,MAAM;gBACT,OAAO,KAAK,YAAY,IAAI,YAAY,OAAO,CAAC;YAClD,KAAK,eAAe;gBAClB,OAAO,cAAc,YAAY,UAAU,YAAY,OAAO,CAAC;YACjE,KAAK,eAAe;gBAClB,OAAO,KAAK,OAAO,CAAC,MAAM,IAAI,YAAY,UAAU,YAAY,OAAO,CAAC;YAC1E,KAAK,UAAU;gBACb,OAAO,KAAK,YAAY,UAAU,YAAY,OAAO,CAAC;QAC1D,CAAC;IACH,CAAC,CAAC,EAAE,CAAC;IAEL,MAAM,eAAe,GAAG,YAAY,aAAa,gBAAgB,UAAU,MAAM,CAAC;IAElF,wDAAwD;IACxD,MAAM,UAAU,GACd,SAAS,KAAK,eAAe,IAAI,SAAS,KAAK,eAAe;QAC5D,CAAC,CAAC,cAAc,YAAY,kCAAkC,UAAU,CAAC,OAAO,CAAC,OAAO,EAAE,SAAS,CAAC,kBAAkB,aAAa,YAAY;QAC/I,CAAC,CAAC,cAAc,YAAY,iBAAiB,aAAa,SAAS,CAAC;IAExE,oBAAoB;IACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;QACvC,OAAO,GAAG,eAAe,GAAG,OAAO,CAAC;IACtC,CAAC;IACD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC;QAClC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,kCAAkC,EAAE,CAAC,KAAY,EAAE,EAAE,CAAC,KAAK,GAAG,IAAI,GAAG,UAAU,CAAC,CAAC;IAC7G,CAAC;IAED,IAAI,CAAC,SAAS,CAAC,cAAc,EAAE,OAAO,CAAC,CAAC;AAC1C,CAAC"}
|
|
@@ -67,7 +67,7 @@ export function updateAppRoutes(
|
|
|
67
67
|
content = importStatement + content;
|
|
68
68
|
}
|
|
69
69
|
if (!content.includes(routeEntry)) {
|
|
70
|
-
content = content.replace(/export const routes: Routes = \[/, match => match + '\n' + routeEntry);
|
|
70
|
+
content = content.replace(/export const routes: Routes = \[/, (match:string) => match + '\n' + routeEntry);
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
tree.overwrite(routesFilePath, content);
|