@angular-devkit/schematics 19.0.5 → 19.0.7
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/LICENSE +1 -1
- package/index.d.ts +8 -0
- package/index.js +24 -0
- package/package.json +5 -3
- package/src/sink/host.d.ts +2 -2
- package/src/tree/entry.d.ts +2 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010-
|
|
3
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/index.d.ts
ADDED
package/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @license
|
|
4
|
+
* Copyright Google LLC All Rights Reserved.
|
|
5
|
+
*
|
|
6
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
7
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
8
|
+
*/
|
|
9
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
12
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
13
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
}) : (function(o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
}));
|
|
20
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
21
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
22
|
+
};
|
|
23
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
+
__exportStar(require("./src/index"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/schematics",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.7",
|
|
4
4
|
"description": "Angular Schematics - Library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
@@ -18,13 +18,12 @@
|
|
|
18
18
|
"tooling"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@angular-devkit/core": "19.0.
|
|
21
|
+
"@angular-devkit/core": "19.0.7",
|
|
22
22
|
"jsonc-parser": "3.3.1",
|
|
23
23
|
"magic-string": "0.30.12",
|
|
24
24
|
"ora": "5.4.1",
|
|
25
25
|
"rxjs": "7.8.1"
|
|
26
26
|
},
|
|
27
|
-
"packageManager": "yarn@4.5.0",
|
|
28
27
|
"repository": {
|
|
29
28
|
"type": "git",
|
|
30
29
|
"url": "https://github.com/angular/angular-cli.git"
|
|
@@ -47,5 +46,8 @@
|
|
|
47
46
|
"puppeteer": {
|
|
48
47
|
"built": true
|
|
49
48
|
}
|
|
49
|
+
},
|
|
50
|
+
"pnpm": {
|
|
51
|
+
"onlyBuiltDependencies": []
|
|
50
52
|
}
|
|
51
53
|
}
|
package/src/sink/host.d.ts
CHANGED
|
@@ -14,8 +14,8 @@ export declare class HostSink extends SimpleSinkBase {
|
|
|
14
14
|
protected _force: boolean;
|
|
15
15
|
protected _filesToDelete: Set<Path>;
|
|
16
16
|
protected _filesToRename: Set<[Path, Path]>;
|
|
17
|
-
protected _filesToCreate: Map<Path, Buffer
|
|
18
|
-
protected _filesToUpdate: Map<Path, Buffer
|
|
17
|
+
protected _filesToCreate: Map<Path, Buffer>;
|
|
18
|
+
protected _filesToUpdate: Map<Path, Buffer>;
|
|
19
19
|
constructor(_host: virtualFs.Host, _force?: boolean);
|
|
20
20
|
protected _validateCreateAction(action: CreateFileAction): Observable<void>;
|
|
21
21
|
protected _validateFileExists(p: Path): Observable<boolean>;
|
package/src/tree/entry.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
23
|
+
get content(): Buffer;
|
|
24
24
|
}
|