ai-hero-cli 0.2.6 → 0.2.7
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/bin.cjs +1 -7
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -84514,10 +84514,6 @@ var CouldNotParseCloudinaryUrlError = class extends Data_exports.TaggedError(
|
|
|
84514
84514
|
"CouldNotParseCloudinaryUrlError"
|
|
84515
84515
|
) {
|
|
84516
84516
|
};
|
|
84517
|
-
var NoImagesFoundError = class extends Data_exports.TaggedError(
|
|
84518
|
-
"NoImagesFoundError"
|
|
84519
|
-
) {
|
|
84520
|
-
};
|
|
84521
84517
|
var EnvFileError = class extends Data_exports.TaggedError("EnvFileError") {
|
|
84522
84518
|
};
|
|
84523
84519
|
var EnvFileEmptyError = class extends Data_exports.TaggedError(
|
|
@@ -84590,9 +84586,7 @@ var uploadToCloudinary = Command_exports2.make(
|
|
|
84590
84586
|
fileContent5.matchAll(imageRegex)
|
|
84591
84587
|
);
|
|
84592
84588
|
if (imageMatches.length === 0) {
|
|
84593
|
-
|
|
84594
|
-
message: "No images found in the markdown file"
|
|
84595
|
-
});
|
|
84589
|
+
continue;
|
|
84596
84590
|
}
|
|
84597
84591
|
let updatedContent = fileContent5;
|
|
84598
84592
|
const markdownDir = path5__namespace.dirname(readmeFile);
|