alex-c-line 1.33.1 → 1.33.2
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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -767,6 +767,7 @@ 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) console.info("NO_OUTDATED_DEPENDENCIES_FOUND");
|
|
770
771
|
const outdatedTemplatesPath = node_path.default.join(await alexCLinePackageRoot, "templates", "outdated");
|
|
771
772
|
const tableTemplate = await (0, node_fs_promises.readFile)(node_path.default.join(outdatedTemplatesPath, "table.html"), "utf-8");
|
|
772
773
|
const tableRowTemplate = await (0, node_fs_promises.readFile)(node_path.default.join(outdatedTemplatesPath, "tableRow.html"), "utf-8");
|
|
@@ -1353,7 +1354,7 @@ function parseZodSchemaForProgram(programError, schema, data) {
|
|
|
1353
1354
|
//#endregion
|
|
1354
1355
|
//#region package.json
|
|
1355
1356
|
var name = "alex-c-line";
|
|
1356
|
-
var version = "1.33.
|
|
1357
|
+
var version = "1.33.2";
|
|
1357
1358
|
var description = "Command-line tool with commands to streamline the developer workflow.";
|
|
1358
1359
|
|
|
1359
1360
|
//#endregion
|
package/dist/index.js
CHANGED
|
@@ -729,6 +729,7 @@ 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) console.info("NO_OUTDATED_DEPENDENCIES_FOUND");
|
|
732
733
|
const outdatedTemplatesPath = path.join(await alexCLinePackageRoot, "templates", "outdated");
|
|
733
734
|
const tableTemplate = await readFile(path.join(outdatedTemplatesPath, "table.html"), "utf-8");
|
|
734
735
|
const tableRowTemplate = await readFile(path.join(outdatedTemplatesPath, "tableRow.html"), "utf-8");
|
|
@@ -1315,7 +1316,7 @@ function parseZodSchemaForProgram(programError, schema, data) {
|
|
|
1315
1316
|
//#endregion
|
|
1316
1317
|
//#region package.json
|
|
1317
1318
|
var name = "alex-c-line";
|
|
1318
|
-
var version = "1.33.
|
|
1319
|
+
var version = "1.33.2";
|
|
1319
1320
|
var description = "Command-line tool with commands to streamline the developer workflow.";
|
|
1320
1321
|
|
|
1321
1322
|
//#endregion
|