@angular-devkit/schematics 20.0.0-next.8 → 20.0.0-rc.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": "20.0.0-next.8",
3
+ "version": "20.0.0-rc.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
  "tooling"
19
19
  ],
20
20
  "dependencies": {
21
- "@angular-devkit/core": "20.0.0-next.8",
21
+ "@angular-devkit/core": "20.0.0-rc.0",
22
22
  "jsonc-parser": "3.3.1",
23
23
  "magic-string": "0.30.17",
24
24
  "ora": "5.4.1",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "packageManager": "pnpm@9.15.6",
32
32
  "engines": {
33
- "node": "^20.11.1 || >=22.11.0",
33
+ "node": "^20.11.1 || ^22.11.0 || >=24.0.0",
34
34
  "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
35
35
  "yarn": ">= 1.13.0"
36
36
  },
@@ -12,7 +12,7 @@ export declare class SimpleFileEntry implements FileEntry {
12
12
  private _content;
13
13
  constructor(_path: Path, _content: Buffer);
14
14
  get path(): Path;
15
- get content(): Buffer<ArrayBufferLike>;
15
+ get content(): Buffer;
16
16
  }
17
17
  export declare class LazyFileEntry implements FileEntry {
18
18
  private _path;
@@ -20,5 +20,5 @@ export declare class LazyFileEntry implements FileEntry {
20
20
  private _content;
21
21
  constructor(_path: Path, _load: (path?: Path) => Buffer);
22
22
  get path(): Path;
23
- get content(): Buffer<ArrayBufferLike>;
23
+ get content(): Buffer;
24
24
  }