@schematics/angular 19.0.0-next.11 → 19.0.0-next.13

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.
@@ -11,8 +11,8 @@ describe('AppComponent', () => {
11
11
  ],<% } %>
12
12
  declarations: [
13
13
  AppComponent
14
- ],
15
- <% if(experimentalZoneless) { %>providers: [provideExperimentalZonelessChangeDetection()]<% } %>
14
+ ],<% if(experimentalZoneless) { %>
15
+ providers: [provideExperimentalZonelessChangeDetection()]<% } %>
16
16
  }).compileComponents();
17
17
  });
18
18
 
@@ -5,8 +5,8 @@ import { AppComponent } from './app.component';
5
5
  describe('AppComponent', () => {
6
6
  beforeEach(async () => {
7
7
  await TestBed.configureTestingModule({
8
- imports: [AppComponent],
9
- <% if(experimentalZoneless) { %>providers: [provideExperimentalZonelessChangeDetection()]<% } %>
8
+ imports: [AppComponent],<% if(experimentalZoneless) { %>
9
+ providers: [provideExperimentalZonelessChangeDetection()]<% } %>
10
10
  }).compileComponents();
11
11
  });
12
12
 
@@ -4,7 +4,5 @@ import { provideRouter } from '@angular/router';
4
4
  import { routes } from './app.routes';<% } %>
5
5
 
6
6
  export const appConfig: ApplicationConfig = {
7
- providers: [
8
- <% if(experimentalZoneless) { %>provideExperimentalZonelessChangeDetection()<% } else { %>provideZoneChangeDetection({ eventCoalescing: true })<% } %><% if (routing) {%>, provideRouter(routes)<% } %>
9
- ]
7
+ providers: [<% if(experimentalZoneless) { %>provideExperimentalZonelessChangeDetection()<% } else { %>provideZoneChangeDetection({ eventCoalescing: true })<% } %><% if (routing) {%>, provideRouter(routes)<% } %>]
10
8
  };
package/collection.json CHANGED
@@ -23,10 +23,10 @@
23
23
  "schema": "./application/schema.json",
24
24
  "description": "Create an Angular application."
25
25
  },
26
- "e2e": {
26
+ "private-e2e": {
27
27
  "factory": "./e2e",
28
28
  "schema": "./e2e/schema.json",
29
- "description": "Create an Angular e2e application.",
29
+ "description": "PRIVATE API - Do not use.",
30
30
  "hidden": true
31
31
  },
32
32
  "class": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "19.0.0-next.11",
3
+ "version": "19.0.0-next.13",
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": "19.0.0-next.11",
26
- "@angular-devkit/schematics": "19.0.0-next.11",
25
+ "@angular-devkit/core": "19.0.0-next.13",
26
+ "@angular-devkit/schematics": "19.0.0-next.13",
27
27
  "jsonc-parser": "3.3.1"
28
28
  },
29
29
  "packageManager": "yarn@4.5.0",
@@ -15,6 +15,6 @@ exports.latestVersions = {
15
15
  ...dependencies,
16
16
  // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
17
17
  Angular: dependencies['@angular/core'],
18
- DevkitBuildAngular: '^19.0.0-next.11',
19
- AngularSSR: '^19.0.0-next.11',
18
+ DevkitBuildAngular: '^19.0.0-next.13',
19
+ AngularSSR: '^19.0.0-next.13',
20
20
  };
@@ -28,7 +28,7 @@ export declare enum Builders {
28
28
  NgPackagr = "@angular-devkit/build-angular:ng-packagr",
29
29
  DevServer = "@angular-devkit/build-angular:dev-server",
30
30
  ExtractI18n = "@angular-devkit/build-angular:extract-i18n",
31
- Protractor = "@angular-devkit/build-angular:protractor",
31
+ Protractor = "@angular-devkit/build-angular:private-protractor",
32
32
  BuildApplication = "@angular/build:application"
33
33
  }
34
34
  export interface FileReplacements {
@@ -33,6 +33,6 @@ var Builders;
33
33
  Builders["NgPackagr"] = "@angular-devkit/build-angular:ng-packagr";
34
34
  Builders["DevServer"] = "@angular-devkit/build-angular:dev-server";
35
35
  Builders["ExtractI18n"] = "@angular-devkit/build-angular:extract-i18n";
36
- Builders["Protractor"] = "@angular-devkit/build-angular:protractor";
36
+ Builders["Protractor"] = "@angular-devkit/build-angular:private-protractor";
37
37
  Builders["BuildApplication"] = "@angular/build:application";
38
38
  })(Builders || (exports.Builders = Builders = {}));