@angular-devkit/schematics 19.2.1 → 20.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": "
|
|
3
|
+
"version": "20.0.0-next.0",
|
|
4
4
|
"description": "Angular Schematics - Library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"tooling"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@angular-devkit/core": "
|
|
21
|
+
"@angular-devkit/core": "20.0.0-next.0",
|
|
22
22
|
"jsonc-parser": "3.3.1",
|
|
23
23
|
"magic-string": "0.30.17",
|
|
24
24
|
"ora": "5.4.1",
|
|
25
|
-
"rxjs": "7.8.
|
|
25
|
+
"rxjs": "7.8.2"
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
29
|
"url": "https://github.com/angular/angular-cli.git"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
|
-
"node": "^
|
|
32
|
+
"node": "^20.11.1 || >=22.0.0",
|
|
33
33
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
34
34
|
"yarn": ">= 1.13.0"
|
|
35
35
|
},
|
package/tasks/index.d.ts
CHANGED
|
@@ -6,6 +6,5 @@
|
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
8
|
export { NodePackageInstallTask } from './package-manager/install-task';
|
|
9
|
-
export { NodePackageLinkTask } from './package-manager/link-task';
|
|
10
9
|
export { RepositoryInitializerTask } from './repo-init/init-task';
|
|
11
10
|
export { RunSchematicTask } from './run-schematic/task';
|
package/tasks/index.js
CHANGED
|
@@ -7,11 +7,9 @@
|
|
|
7
7
|
* found in the LICENSE file at https://angular.dev/license
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.RunSchematicTask = exports.RepositoryInitializerTask = exports.
|
|
10
|
+
exports.RunSchematicTask = exports.RepositoryInitializerTask = exports.NodePackageInstallTask = void 0;
|
|
11
11
|
var install_task_1 = require("./package-manager/install-task");
|
|
12
12
|
Object.defineProperty(exports, "NodePackageInstallTask", { enumerable: true, get: function () { return install_task_1.NodePackageInstallTask; } });
|
|
13
|
-
var link_task_1 = require("./package-manager/link-task");
|
|
14
|
-
Object.defineProperty(exports, "NodePackageLinkTask", { enumerable: true, get: function () { return link_task_1.NodePackageLinkTask; } });
|
|
15
13
|
var init_task_1 = require("./repo-init/init-task");
|
|
16
14
|
Object.defineProperty(exports, "RepositoryInitializerTask", { enumerable: true, get: function () { return init_task_1.RepositoryInitializerTask; } });
|
|
17
15
|
var task_1 = require("./run-schematic/task");
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.dev/license
|
|
7
|
-
*/
|
|
8
|
-
import { TaskConfiguration, TaskConfigurationGenerator } from '../../src';
|
|
9
|
-
import { NodePackageTaskOptions } from './options';
|
|
10
|
-
/**
|
|
11
|
-
* @deprecated since version 18. Create a custom task if required.
|
|
12
|
-
*/
|
|
13
|
-
export declare class NodePackageLinkTask implements TaskConfigurationGenerator<NodePackageTaskOptions> {
|
|
14
|
-
packageName?: string | undefined;
|
|
15
|
-
workingDirectory?: string | undefined;
|
|
16
|
-
quiet: boolean;
|
|
17
|
-
constructor(packageName?: string | undefined, workingDirectory?: string | undefined);
|
|
18
|
-
toConfiguration(): TaskConfiguration<NodePackageTaskOptions>;
|
|
19
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.NodePackageLinkTask = void 0;
|
|
11
|
-
const options_1 = require("./options");
|
|
12
|
-
/**
|
|
13
|
-
* @deprecated since version 18. Create a custom task if required.
|
|
14
|
-
*/
|
|
15
|
-
class NodePackageLinkTask {
|
|
16
|
-
packageName;
|
|
17
|
-
workingDirectory;
|
|
18
|
-
quiet = true;
|
|
19
|
-
constructor(packageName, workingDirectory) {
|
|
20
|
-
this.packageName = packageName;
|
|
21
|
-
this.workingDirectory = workingDirectory;
|
|
22
|
-
}
|
|
23
|
-
toConfiguration() {
|
|
24
|
-
return {
|
|
25
|
-
name: options_1.NodePackageName,
|
|
26
|
-
options: {
|
|
27
|
-
command: 'link',
|
|
28
|
-
quiet: this.quiet,
|
|
29
|
-
workingDirectory: this.workingDirectory,
|
|
30
|
-
packageName: this.packageName,
|
|
31
|
-
},
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
exports.NodePackageLinkTask = NodePackageLinkTask;
|