avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@schematics/angular",
"version": "20.3.10",
"version": "20.3.26",
"description": "Schematics specific to Angular",
"homepage": "https://github.com/angular/angular-cli",
"keywords": [
@@ -22,8 +22,8 @@
},
"schematics": "./collection.json",
"dependencies": {
"@angular-devkit/core": "20.3.10",
"@angular-devkit/schematics": "20.3.10",
"@angular-devkit/core": "20.3.26",
"@angular-devkit/schematics": "20.3.26",
"jsonc-parser": "3.3.1"
},
"repository": {
@@ -15,7 +15,9 @@ export function app(): express.Express {
? join(distFolder, 'index.original.html')
: join(distFolder, 'index.html');
const commonEngine = new CommonEngine();
const commonEngine = new CommonEngine({
allowedHosts: [/* Configure your hosts here */]
});
server.set('view engine', 'html');
server.set('views', distFolder);
+4
View File
@@ -141,6 +141,10 @@ function updateApplicationBuilderWorkspaceConfigRule(projectSourceRoot, options,
}
buildTarget.options = {
...buildTarget.options,
security: {
...(buildTarget.options?.security ?? {}),
allowedHosts: [],
},
outputPath,
outputMode: 'server',
ssr: {
+3 -3
View File
@@ -16,7 +16,7 @@ exports.latestVersions = {
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
Angular: '^20.3.0',
NgPackagr: '^20.3.0',
DevkitBuildAngular: '^20.3.10',
AngularBuild: '^20.3.10',
AngularSSR: '^20.3.10',
DevkitBuildAngular: '^20.3.26',
AngularBuild: '^20.3.26',
AngularSSR: '^20.3.26',
};