Leosvel Pérez Espinosa 37f02f7e6b
feat(angular): support angular 18.0.0 (#22509)
<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

## Current Behavior
<!-- This is the behavior we have today -->

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #25284
2024-05-23 17:50:04 +02:00

84 lines
3.0 KiB
JSON

{
"name": "setup-ssr",
"factory": "./src/generators/setup-ssr/setup-ssr",
"schema": {
"$schema": "https://json-schema.org/schema",
"$id": "GeneratorAngularUniversalSetup",
"cli": "nx",
"title": "Generate Angular Universal (SSR) setup for an Angular App",
"description": "Create the additional configuration required to enable SSR via Angular Universal for an Angular application.",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the application to generate the Angular Universal configuration for.",
"$default": { "$source": "argv", "index": 0 },
"x-prompt": "What app would you like to generate an Angular Universal configuration for?",
"x-dropdown": "projects"
},
"appId": {
"type": "string",
"format": "html-selector",
"description": "The `appId` to use with `withServerTransition`.",
"default": "serverApp",
"x-deprecated": "This is deprecated and ignored since Angular 16 and not supported since Angular 17."
},
"main": {
"type": "string",
"format": "path",
"description": "The name of the main entry-point file.",
"default": "main.server.ts"
},
"serverFileName": {
"type": "string",
"default": "server.ts",
"description": "The name of the Express server file."
},
"serverPort": {
"type": "number",
"default": 4000,
"description": "The port for the Express server."
},
"rootModuleFileName": {
"type": "string",
"format": "path",
"description": "The name of the root module file",
"default": "app.server.module.ts"
},
"rootModuleClassName": {
"type": "string",
"description": "The name of the root module class.",
"default": "AppServerModule"
},
"standalone": {
"type": "boolean",
"description": "Use Standalone Components to bootstrap SSR."
},
"hydration": {
"type": "boolean",
"description": "Set up Hydration for the SSR application. It defaults to `true` for Angular versions >= 17.0.0. Otherwise, it defaults to `false`."
},
"skipFormat": {
"type": "boolean",
"description": "Skip formatting the workspace after the generator completes.",
"x-priority": "internal"
},
"skipPackageJson": {
"type": "boolean",
"default": false,
"description": "Do not add dependencies to `package.json`.",
"x-priority": "internal"
}
},
"required": ["project"],
"additionalProperties": false,
"presets": []
},
"description": "Generate Angular Universal (SSR) setup for an Angular application.",
"implementation": "/packages/angular/src/generators/setup-ssr/setup-ssr.ts",
"aliases": [],
"hidden": false,
"path": "/packages/angular/src/generators/setup-ssr/schema.json",
"type": "generator"
}