alex-c-line 1.33.1 → 1.33.3
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/dist/index.cjs +5 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -767,6 +767,10 @@ function outdatedDependencies(program) {
|
|
|
767
767
|
code: "PNPM_OUDATED_ERROR"
|
|
768
768
|
});
|
|
769
769
|
const outdatedDependencies = JSON.parse(stdout.trim());
|
|
770
|
+
if (Object.keys(outdatedDependencies).length === 0) {
|
|
771
|
+
console.info("NO_OUTDATED_DEPENDENCIES_FOUND");
|
|
772
|
+
return;
|
|
773
|
+
}
|
|
770
774
|
const outdatedTemplatesPath = node_path.default.join(await alexCLinePackageRoot, "templates", "outdated");
|
|
771
775
|
const tableTemplate = await (0, node_fs_promises.readFile)(node_path.default.join(outdatedTemplatesPath, "table.html"), "utf-8");
|
|
772
776
|
const tableRowTemplate = await (0, node_fs_promises.readFile)(node_path.default.join(outdatedTemplatesPath, "tableRow.html"), "utf-8");
|
|
@@ -1353,7 +1357,7 @@ function parseZodSchemaForProgram(programError, schema, data) {
|
|
|
1353
1357
|
//#endregion
|
|
1354
1358
|
//#region package.json
|
|
1355
1359
|
var name = "alex-c-line";
|
|
1356
|
-
var version = "1.33.
|
|
1360
|
+
var version = "1.33.3";
|
|
1357
1361
|
var description = "Command-line tool with commands to streamline the developer workflow.";
|
|
1358
1362
|
|
|
1359
1363
|
//#endregion
|
package/dist/index.js
CHANGED
|
@@ -729,6 +729,10 @@ function outdatedDependencies(program) {
|
|
|
729
729
|
code: "PNPM_OUDATED_ERROR"
|
|
730
730
|
});
|
|
731
731
|
const outdatedDependencies = JSON.parse(stdout.trim());
|
|
732
|
+
if (Object.keys(outdatedDependencies).length === 0) {
|
|
733
|
+
console.info("NO_OUTDATED_DEPENDENCIES_FOUND");
|
|
734
|
+
return;
|
|
735
|
+
}
|
|
732
736
|
const outdatedTemplatesPath = path.join(await alexCLinePackageRoot, "templates", "outdated");
|
|
733
737
|
const tableTemplate = await readFile(path.join(outdatedTemplatesPath, "table.html"), "utf-8");
|
|
734
738
|
const tableRowTemplate = await readFile(path.join(outdatedTemplatesPath, "tableRow.html"), "utf-8");
|
|
@@ -1315,7 +1319,7 @@ function parseZodSchemaForProgram(programError, schema, data) {
|
|
|
1315
1319
|
//#endregion
|
|
1316
1320
|
//#region package.json
|
|
1317
1321
|
var name = "alex-c-line";
|
|
1318
|
-
var version = "1.33.
|
|
1322
|
+
var version = "1.33.3";
|
|
1319
1323
|
var description = "Command-line tool with commands to streamline the developer workflow.";
|
|
1320
1324
|
|
|
1321
1325
|
//#endregion
|