UNPKG

683 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.MonoVmManager = void 0;
4const builder_util_1 = require("builder-util");
5const vm_1 = require("./vm");
6class MonoVmManager extends vm_1.VmManager {
7 constructor() {
8 super();
9 }
10 exec(file, args, options, isLogOutIfDebug = true) {
11 return (0, builder_util_1.exec)("mono", [file].concat(args), {
12 ...options,
13 }, isLogOutIfDebug);
14 }
15 spawn(file, args, options, extraOptions) {
16 return (0, builder_util_1.spawn)("mono", [file].concat(args), options, extraOptions);
17 }
18}
19exports.MonoVmManager = MonoVmManager;
20//# sourceMappingURL=MonoVm.js.map
\No newline at end of file