@schematics/angular 20.0.0-rc.2 → 20.0.0-rc.3
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/application/files/module-files/src/app/app.spec.ts.template +0 -6
- package/application/files/module-files/src/app/app.ts.template +1 -1
- package/application/files/standalone-files/src/app/app.spec.ts.template +0 -6
- package/application/files/standalone-files/src/app/app.ts.template +1 -1
- package/package.json +4 -4
- package/utility/latest-versions.js +3 -3
|
@@ -22,12 +22,6 @@ describe('App', () => {
|
|
|
22
22
|
expect(app).toBeTruthy();
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
-
it(`should have as title '<%= name %>'`, () => {
|
|
26
|
-
const fixture = TestBed.createComponent(App);
|
|
27
|
-
const app = fixture.componentInstance;
|
|
28
|
-
expect(app.title).toEqual('<%= name %>');
|
|
29
|
-
});
|
|
30
|
-
|
|
31
25
|
it('should render title', () => {
|
|
32
26
|
const fixture = TestBed.createComponent(App);
|
|
33
27
|
fixture.detectChanges();
|
|
@@ -16,12 +16,6 @@ describe('App', () => {
|
|
|
16
16
|
expect(app).toBeTruthy();
|
|
17
17
|
});
|
|
18
18
|
|
|
19
|
-
it(`should have the '<%= name %>' title`, () => {
|
|
20
|
-
const fixture = TestBed.createComponent(App);
|
|
21
|
-
const app = fixture.componentInstance;
|
|
22
|
-
expect(app.title).toEqual('<%= name %>');
|
|
23
|
-
});
|
|
24
|
-
|
|
25
19
|
it('should render title', () => {
|
|
26
20
|
const fixture = TestBed.createComponent(App);
|
|
27
21
|
fixture.detectChanges();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "20.0.0-rc.
|
|
3
|
+
"version": "20.0.0-rc.3",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"schematics": "./collection.json",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@angular-devkit/core": "20.0.0-rc.
|
|
26
|
-
"@angular-devkit/schematics": "20.0.0-rc.
|
|
25
|
+
"@angular-devkit/core": "20.0.0-rc.3",
|
|
26
|
+
"@angular-devkit/schematics": "20.0.0-rc.3",
|
|
27
27
|
"jsonc-parser": "3.3.1"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"packageManager": "pnpm@9.15.9",
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": "^20.
|
|
35
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
36
36
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
37
37
|
"yarn": ">= 1.13.0"
|
|
38
38
|
},
|
|
@@ -16,7 +16,7 @@ exports.latestVersions = {
|
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
17
|
Angular: '^20.0.0-next.0',
|
|
18
18
|
NgPackagr: '^20.0.0-next.0',
|
|
19
|
-
DevkitBuildAngular: '^20.0.0-rc.
|
|
20
|
-
AngularBuild: '^20.0.0-rc.
|
|
21
|
-
AngularSSR: '^20.0.0-rc.
|
|
19
|
+
DevkitBuildAngular: '^20.0.0-rc.3',
|
|
20
|
+
AngularBuild: '^20.0.0-rc.3',
|
|
21
|
+
AngularSSR: '^20.0.0-rc.3',
|
|
22
22
|
};
|