simple-photo-gallery 2.0.11-rc.12 → 2.0.11-rc.13
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 +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -661,6 +661,9 @@ async function processMediaFile(mediaFile, mediaBasePath, thumbnailsPath, thumbn
|
|
|
661
661
|
updatedMediaFile.thumbnail.path = path7.basename(thumbnailPath);
|
|
662
662
|
updatedMediaFile.thumbnail.pathRetina = path7.basename(thumbnailPathRetina);
|
|
663
663
|
}
|
|
664
|
+
if (mediaFile.url) {
|
|
665
|
+
updatedMediaFile.url = mediaFile.url;
|
|
666
|
+
}
|
|
664
667
|
return updatedMediaFile;
|
|
665
668
|
} catch (error) {
|
|
666
669
|
handleFileProcessingError(error, mediaFile.filename, ui);
|
|
@@ -1157,7 +1160,7 @@ async function waitForUpdateCheck(checkPromise) {
|
|
|
1157
1160
|
// package.json
|
|
1158
1161
|
var package_default = {
|
|
1159
1162
|
name: "simple-photo-gallery",
|
|
1160
|
-
version: "2.0.11-rc.
|
|
1163
|
+
version: "2.0.11-rc.13"};
|
|
1161
1164
|
|
|
1162
1165
|
// src/index.ts
|
|
1163
1166
|
var program = new Command();
|