blob: 2518b4cbab7274d255b3a1570b9ab38535cbd6a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
"use strict";
/**
* @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
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NodePackageLinkTask = void 0;
const options_1 = require("./options");
class NodePackageLinkTask {
constructor(packageName, workingDirectory) {
this.packageName = packageName;
this.workingDirectory = workingDirectory;
this.quiet = true;
}
toConfiguration() {
return {
name: options_1.NodePackageName,
options: {
command: 'link',
quiet: this.quiet,
workingDirectory: this.workingDirectory,
packageName: this.packageName,
},
};
}
}
exports.NodePackageLinkTask = NodePackageLinkTask;
|