- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
25 lines
678 B
TypeScript
Executable File
25 lines
678 B
TypeScript
Executable File
/**
|
|
* @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.io/license
|
|
*/
|
|
export declare const NodePackageName = "node-package";
|
|
export interface NodePackageTaskFactoryOptions {
|
|
rootDirectory?: string;
|
|
packageManager?: string;
|
|
allowPackageManagerOverride?: boolean;
|
|
registry?: string;
|
|
force?: boolean;
|
|
}
|
|
export interface NodePackageTaskOptions {
|
|
command: string;
|
|
quiet?: boolean;
|
|
hideOutput?: boolean;
|
|
workingDirectory?: string;
|
|
packageName?: string;
|
|
packageManager?: string;
|
|
allowScripts?: boolean;
|
|
}
|