@angular-devkit/schematics 13.2.2 → 14.0.0-next.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/schematics",
3
- "version": "13.2.2",
3
+ "version": "14.0.0-next.0",
4
4
  "description": "Angular Schematics - Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "schematics"
19
19
  ],
20
20
  "dependencies": {
21
- "@angular-devkit/core": "13.2.2",
21
+ "@angular-devkit/core": "14.0.0-next.0",
22
22
  "jsonc-parser": "3.0.0",
23
23
  "magic-string": "0.25.7",
24
24
  "ora": "5.4.1",
@@ -6,7 +6,7 @@
6
6
  * found in the LICENSE file at https://angular.io/license
7
7
  */
8
8
  /// <reference types="node" />
9
- import { analytics, logging } from '@angular-devkit/core';
9
+ import { logging } from '@angular-devkit/core';
10
10
  import { Observable } from 'rxjs';
11
11
  import { Url } from 'url';
12
12
  import { FileEntry, MergeStrategy, Tree } from '../tree/interface';
@@ -125,8 +125,6 @@ export interface TypedSchematicContext<CollectionMetadataT extends object, Schem
125
125
  readonly strategy: MergeStrategy;
126
126
  readonly interactive: boolean;
127
127
  addTask<T>(task: TaskConfigurationGenerator<T>, dependencies?: Array<TaskId>): TaskId;
128
- /** @deprecated since version 11 - as it's unused. */
129
- readonly analytics?: analytics.Analytics;
130
128
  }
131
129
  /**
132
130
  * This is used by the Schematics implementations in order to avoid needing to have typing from