/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/schematics/tasks/package-manager/install-task.ts
70 строк
2 KB
Ash Ramirez
refactor(@angular/cli): update aio links -> adev links
06 июн 2024, 12:12
06 июн 2024, 12:12
434a374
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC 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.dev/license */ import { TaskConfiguration, TaskConfigurationGenerator } from '../../src'; import { NodePackageName, NodePackageTaskOptions } from './options'; interface NodePackageInstallTaskOptions { packageManager?: string; packageName?: string; workingDirectory?: string; quiet?: boolean; hideOutput?: boolean; allowScripts?: boolean; } export class NodePackageInstallTask implements TaskConfigurationGenerator<NodePackageTaskOptions> { quiet = true; hideOutput = true; allowScripts = false; workingDirectory?: string; packageManager?: string; packageName?: string; constructor(workingDirectory?: string); constructor(options: NodePackageInstallTaskOptions); constructor(options?: string | 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; } if (options.allowScripts !== undefined) { this.allowScripts = options.allowScripts; } } } toConfiguration(): TaskConfiguration<NodePackageTaskOptions> { return { name: NodePackageName, options: { command: 'install', quiet: this.quiet, hideOutput: this.hideOutput, workingDirectory: this.workingDirectory, packageManager: this.packageManager, packageName: this.packageName, allowScripts: this.allowScripts, }, }; } }