mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { TaskConfiguration, TaskConfigurationGenerator } from '../../src';
|
|
import { NodePackageName, NodePackageTaskOptions } from './options';
|
|
|
|
export class NodePackageInstallTaskOptions {
|
|
packageManager: string;
|
|
packageName: string;
|
|
workingDirectory: string;
|
|
quiet: boolean;
|
|
hideOutput: boolean;
|
|
}
|
|
|
|
export class NodePackageInstallTask implements TaskConfigurationGenerator<NodePackageTaskOptions> {
|
|
quiet = true;
|
|
hideOutput = true;
|
|
workingDirectory?: string;
|
|
packageManager?: string;
|
|
packageName?: string;
|
|
|
|
constructor(workingDirectory?: string);
|
|
constructor(options: Partial<NodePackageInstallTaskOptions>);
|
|
constructor(options?: string | Partial<NodePackageInstallTaskOptions>) {
|
|
if (typeof options === 'string') {
|
|
this.workingDirectory = options;
|
|
} else if (typeof options === 'object') {
|
|
if (options.quiet != undefined) {
|
|
this.quiet = options.quiet;
|
|
}
|
|
if (options.hideOutput != undefined) {
|
|
this.hideOutput = options.hideOutput;
|
|
}
|
|
if (options.workingDirectory != undefined) {
|
|
this.workingDirectory = options.workingDirectory;
|
|
}
|
|
if (options.packageManager != undefined) {
|
|
this.packageManager = options.packageManager;
|
|
}
|
|
if (options.packageName != undefined) {
|
|
this.packageName = options.packageName;
|
|
}
|
|
}
|
|
}
|
|
|
|
toConfiguration(): TaskConfiguration<NodePackageTaskOptions> {
|
|
return {
|
|
name: NodePackageName,
|
|
options: {
|
|
command: 'install',
|
|
quiet: this.quiet,
|
|
hideOutput: this.hideOutput,
|
|
workingDirectory: this.workingDirectory,
|
|
packageManager: this.packageManager,
|
|
packageName: this.packageName,
|
|
},
|
|
};
|
|
}
|
|
}
|