create-claude-workspace 1.1.96 → 1.1.97
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.
|
@@ -14,6 +14,8 @@ Angular (latest) with:
|
|
|
14
14
|
|
|
15
15
|
## Nx Angular Generators
|
|
16
16
|
|
|
17
|
+
**SSR is MANDATORY for all Angular applications** — every app MUST be generated with `--ssr` (configured as default below). SSR is required for SEO. The only exception is if the user explicitly opts out.
|
|
18
|
+
|
|
17
19
|
Generator defaults are configured in `nx.json` — no need to repeat flags like `--unitTestRunner`, `--linter`, `--style` in every command:
|
|
18
20
|
```jsonc
|
|
19
21
|
// nx.json -> "generators"
|
|
@@ -22,7 +24,8 @@ Generator defaults are configured in `nx.json` — no need to repeat flags like
|
|
|
22
24
|
"e2eTestRunner": "playwright",
|
|
23
25
|
"linter": "eslint",
|
|
24
26
|
"style": "scss",
|
|
25
|
-
"unitTestRunner": "vitest"
|
|
27
|
+
"unitTestRunner": "vitest",
|
|
28
|
+
"ssr": true
|
|
26
29
|
},
|
|
27
30
|
"@nx/angular:component": { "style": "scss" },
|
|
28
31
|
"@nx/angular:library": {
|