diff --git a/application/files/common-files/tsconfig.spec.json.template b/application/files/common-files/tsconfig.spec.json.template index 75c646e84..af71f061e 100644 --- a/application/files/common-files/tsconfig.spec.json.template +++ b/application/files/common-files/tsconfig.spec.json.template @@ -4,9 +4,10 @@ "extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json", "compilerOptions": { "outDir": "<%= relativePathToWorkspaceRoot %>/out-tsc/spec", - "types": [ - "<%= testRunner === 'vitest' ? 'vitest/globals' : 'jasmine' %>" - ] }, + "types": [ + "<%= testRunner === 'vitest' ? 'vitest/globals' : 'jasmine' %>" + ] + }, "include": [ "src/**/*.ts" ] diff --git a/application/files/standalone-files/src/app/app__suffix__.ts.template b/application/files/standalone-files/src/app/app__suffix__.ts.template index 71e7e0bff..0e6ebd593 100644 --- a/application/files/standalone-files/src/app/app__suffix__.ts.template +++ b/application/files/standalone-files/src/app/app__suffix__.ts.template @@ -11,9 +11,9 @@ import { RouterOutlet } from '@angular/router';<% } %> %><% } %> `,<% } else { %> - templateUrl: './app.html',<% } if(inlineStyle) { %> + templateUrl: './app<%= suffix %>.html',<% } if(inlineStyle) { %> styles: [],<% } else { %> - styleUrl: './app.<%= style %>'<% } %> + styleUrl: './app<%= suffix %>.<%= style %>'<% } %> }) export class App { protected readonly title = signal('<%= name %>'); diff --git a/directive/files/__name@dasherize__.__type@dasherize__.ts.template b/directive/files/__name@dasherize__.__type@dasherize__.ts.template index f6c2ba006..624b3cafb 100644 --- a/directive/files/__name@dasherize__.__type@dasherize__.ts.template +++ b/directive/files/__name@dasherize__.__type@dasherize__.ts.template @@ -1,8 +1,8 @@ import { Directive } from '@angular/core'; @Directive({ - selector: '[<%= selector %>]'<% if(!standalone) {%>, - standalone: false<%}%> + selector: '[<%= selector %>]',<% if(!standalone) {%> + standalone: false,<%}%> }) export class <%= classifiedName %> { diff --git a/guard/implements-files/__name@dasherize____typeSeparator__guard.ts.template b/guard/implements-files/__name@dasherize____typeSeparator__guard.ts.template index 918718d3e..3ce115087 100644 --- a/guard/implements-files/__name@dasherize____typeSeparator__guard.ts.template +++ b/guard/implements-files/__name@dasherize____typeSeparator__guard.ts.template @@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; import { <%= routerImports %> } from '@angular/router'; @Injectable({ - providedIn: 'root' + providedIn: 'root', }) export class <%= classify(name) %>Guard implements <%= implementations %> { <% if (implements.includes('CanActivate')) { %>canActivate( diff --git a/package.json b/package.json index 99f55f3fd..c2cf30673 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schematics/angular", - "version": "21.0.0-next.8+sha-2ffc527", + "version": "21.0.0-rc.0+sha-a85efb9", "description": "Schematics specific to Angular", "homepage": "https://github.com/angular/angular-cli", "keywords": [ @@ -22,8 +22,8 @@ }, "schematics": "./collection.json", "dependencies": { - "@angular-devkit/core": "github:angular/angular-devkit-core-builds#2ffc527", - "@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#2ffc527", + "@angular-devkit/core": "github:angular/angular-devkit-core-builds#a85efb9", + "@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#a85efb9", "jsonc-parser": "3.3.1" }, "repository": { diff --git a/pipe/files/__name@dasherize____typeSeparator__pipe.ts.template b/pipe/files/__name@dasherize____typeSeparator__pipe.ts.template index 2e917b4b0..577651215 100644 --- a/pipe/files/__name@dasherize____typeSeparator__pipe.ts.template +++ b/pipe/files/__name@dasherize____typeSeparator__pipe.ts.template @@ -1,8 +1,8 @@ import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ - name: '<%= camelize(name) %>'<% if(!standalone) {%>, - standalone: false<%}%> + name: '<%= camelize(name) %>',<% if(!standalone) {%> + standalone: false,<%}%> }) export class <%= classify(name) %>Pipe implements PipeTransform { diff --git a/service/files/__name@dasherize__.__type@dasherize__.ts.template b/service/files/__name@dasherize__.__type@dasherize__.ts.template index 584a706c6..de2434657 100644 --- a/service/files/__name@dasherize__.__type@dasherize__.ts.template +++ b/service/files/__name@dasherize__.__type@dasherize__.ts.template @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; @Injectable({ - providedIn: 'root' + providedIn: 'root', }) export class <%= classifiedName %> { diff --git a/uniqueId b/uniqueId index bd65fedc4..0f739b27a 100644 --- a/uniqueId +++ b/uniqueId @@ -1 +1 @@ -Thu Oct 23 2025 13:27:23 GMT+0000 (Coordinated Universal Time) \ No newline at end of file +Thu Oct 30 2025 09:47:11 GMT+0000 (Coordinated Universal Time) \ No newline at end of file diff --git a/utility/latest-versions.js b/utility/latest-versions.js index 1ffbdf130..8cd83e382 100644 --- a/utility/latest-versions.js +++ b/utility/latest-versions.js @@ -16,8 +16,8 @@ exports.latestVersions = { // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current Angular: '^21.0.0-next.0', NgPackagr: '^21.0.0-next.0', - DevkitBuildAngular: '^21.0.0-next.8+sha-2ffc527', - AngularBuild: '^21.0.0-next.8+sha-2ffc527', - AngularSSR: '^21.0.0-next.8+sha-2ffc527', + DevkitBuildAngular: '^21.0.0-rc.0+sha-a85efb9', + AngularBuild: '^21.0.0-rc.0+sha-a85efb9', + AngularSSR: '^21.0.0-rc.0+sha-a85efb9', }; //# sourceMappingURL=latest-versions.js.map \ No newline at end of file