ultimate-jekyll-manager 0.0.88 → 0.0.89
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/commands/blogify.js +1 -1
- package/package.json +2 -1
package/dist/commands/blogify.js
CHANGED
|
@@ -177,7 +177,7 @@ async function generatePostImages(postId, titleSuffix) {
|
|
|
177
177
|
try {
|
|
178
178
|
await downloadImage(imageUrl, imagePath);
|
|
179
179
|
downloadedImages.push({
|
|
180
|
-
path: `/assets/images/blog/
|
|
180
|
+
path: `/assets/images/blog/post-${postId}/${randomName}.jpg`,
|
|
181
181
|
alt: `${randomName.replace(/-/g, ' ')} image`
|
|
182
182
|
});
|
|
183
183
|
logger.log(` Downloaded image ${i}: ${randomName}.jpg`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultimate-jekyll-manager",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.89",
|
|
4
4
|
"description": "Ultimate Jekyll dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"./service-worker": "./dist/service-worker.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
+
"start": "npm run prepare:watch",
|
|
12
13
|
"prepare": "node -e \"require('prepare-package')()\"",
|
|
13
14
|
"prepare:watch": "node -e \"require('prepare-package/watch')()\"",
|
|
14
15
|
"wm:prod": "npm uninstall web-manager && npm i web-manager@latest",
|