ngx-essentials-schematics 0.0.7 → 0.0.8
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/ngrx/store/schema.json +12 -1
package/package.json
CHANGED
|
@@ -13,7 +13,18 @@
|
|
|
13
13
|
"path": {
|
|
14
14
|
"type": "string",
|
|
15
15
|
"description": "Ruta de destino.",
|
|
16
|
-
"default": "src/app/
|
|
16
|
+
"default": "src/app/core"
|
|
17
|
+
},
|
|
18
|
+
"generateExtras": {
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"description": "¿Generar archivos adicionales para formularios y entidades?",
|
|
21
|
+
"default": false
|
|
22
|
+
},
|
|
23
|
+
"language": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "Idioma para la pluralización ('en' para inglés, 'es' para español).",
|
|
26
|
+
"enum": ["en", "es"],
|
|
27
|
+
"default": "en"
|
|
17
28
|
}
|
|
18
29
|
},
|
|
19
30
|
"required": ["name"]
|