@angular-devkit/schematics 13.2.0-rc.1 → 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/README.md CHANGED
@@ -124,7 +124,7 @@ The system operates on placeholders defined inside files or their paths as loade
124
124
  | Placeholder | Description |
125
125
  | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
126
126
  | `<%= expression %>` | Replaced with the result of the call of the given expression. This only supports direct expressions, no structural (for/if/...) JavaScript. |
127
- | `<%- expression %>` | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '&lt;') |
127
+ | `<%- expression %>` | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '\&lt;') |
128
128
  | `<% inline code %>` | Inserts the given code into the template structure, allowing to insert structural JavaScript. |
129
129
  | `<%# text %>` | A comment, which gets entirely dropped. |
130
130
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/schematics",
3
- "version": "13.2.0-rc.1",
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.0-rc.1",
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