@coana-tech/cli 14.3.7 → 14.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +22 -11
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -138992,15 +138992,25 @@ var require_github_pr_tools = __commonJS({
|
|
|
138992
138992
|
} : function(o7, v) {
|
|
138993
138993
|
o7["default"] = v;
|
|
138994
138994
|
});
|
|
138995
|
-
var __importStar2 = exports2 && exports2.__importStar || function(
|
|
138996
|
-
|
|
138997
|
-
|
|
138998
|
-
|
|
138999
|
-
|
|
139000
|
-
|
|
139001
|
-
|
|
139002
|
-
|
|
139003
|
-
|
|
138995
|
+
var __importStar2 = exports2 && exports2.__importStar || /* @__PURE__ */ function() {
|
|
138996
|
+
var ownKeys = function(o7) {
|
|
138997
|
+
ownKeys = Object.getOwnPropertyNames || function(o8) {
|
|
138998
|
+
var ar = [];
|
|
138999
|
+
for (var k in o8) if (Object.prototype.hasOwnProperty.call(o8, k)) ar[ar.length] = k;
|
|
139000
|
+
return ar;
|
|
139001
|
+
};
|
|
139002
|
+
return ownKeys(o7);
|
|
139003
|
+
};
|
|
139004
|
+
return function(mod) {
|
|
139005
|
+
if (mod && mod.__esModule) return mod;
|
|
139006
|
+
var result = {};
|
|
139007
|
+
if (mod != null) {
|
|
139008
|
+
for (var k = ownKeys(mod), i6 = 0; i6 < k.length; i6++) if (k[i6] !== "default") __createBinding2(result, mod, k[i6]);
|
|
139009
|
+
}
|
|
139010
|
+
__setModuleDefault2(result, mod);
|
|
139011
|
+
return result;
|
|
139012
|
+
};
|
|
139013
|
+
}();
|
|
139004
139014
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
139005
139015
|
exports2.GitHubPRTools = void 0;
|
|
139006
139016
|
var remeda_1 = require_dist11();
|
|
@@ -207878,7 +207888,7 @@ var require_version = __commonJS({
|
|
|
207878
207888
|
"use strict";
|
|
207879
207889
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
207880
207890
|
exports2.version = void 0;
|
|
207881
|
-
exports2.version = "14.3.
|
|
207891
|
+
exports2.version = "14.3.8";
|
|
207882
207892
|
}
|
|
207883
207893
|
});
|
|
207884
207894
|
|
|
@@ -208444,7 +208454,8 @@ run.name("run").argument("<path>", "File system path to folder containing the pr
|
|
|
208444
208454
|
await new cli_core_1.CliCore(path3, options).main();
|
|
208445
208455
|
});
|
|
208446
208456
|
var applyFixes = new commander_1.Command();
|
|
208447
|
-
applyFixes.name("apply-fixes").argument("<path>", "File system path to the folder containing the project").argument("<fixIds...>", "Apply the fixes associated with the fixIds of the form fix_UUID").option("-r, --recompute-outdated", "Look for a new fix solution when the old solution is outdated", false).option("-d, --debug", "Enable debug logging", false).option("-s, --silent", "Silence all debug/warning output", false).addOption(new commander_1.Option("--run-without-docker", "Run package managers without using docker").default(process.env.RUN_WITHOUT_DOCKER === "true").hideHelp()).action(async (path3, fixIds, options) => {
|
|
208457
|
+
applyFixes.name("apply-fixes").argument("<path>", "File system path to the folder containing the project").argument("<fixIds...>", "Apply the fixes associated with the fixIds of the form fix_UUID").option("-r, --recompute-outdated", "Look for a new fix solution when the old solution is outdated", false).option("-d, --debug", "Enable debug logging", false).option("-s, --silent", "Silence all debug/warning output", false).addOption(new commander_1.Option("--run-without-docker", "Run package managers without using docker").default(process.env.RUN_WITHOUT_DOCKER === "true").hideHelp()).version(version_1.version).action(async (path3, fixIds, options) => {
|
|
208458
|
+
process.env.DOCKER_IMAGE_TAG ??= version_1.version;
|
|
208448
208459
|
await (0, cli_apply_fix_1.applyFix)(path3, fixIds, options);
|
|
208449
208460
|
}).configureHelp({ sortOptions: true });
|
|
208450
208461
|
var compareReportsCommand = new commander_1.Command();
|