@chrisburnell/eleventy-cache-webmentions 1.1.0 → 1.1.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.
|
@@ -89,7 +89,7 @@ const fetchWebmentions = async (options) => {
|
|
|
89
89
|
throw new Error("uniqueKey is a required field when attempting to retrieve Webmentions. See https://chrisburnell.com/eleventy-cache-webmentions/#installation for more information.")
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
let asset = new AssetCache(options.uniqueKey)
|
|
92
|
+
let asset = new AssetCache(options.uniqueKey, options.directory)
|
|
93
93
|
asset.ensureDir()
|
|
94
94
|
|
|
95
95
|
let webmentions = []
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chrisburnell/eleventy-cache-webmentions",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Fetch and cache webmentions using eleventy-fetch.",
|
|
5
5
|
"main": "eleventy-cache-webmentions.js",
|
|
6
6
|
"author": "Chris Burnell <me@chrisburnell.com>",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/chrisburnell/eleventy-cache-webmentions/issues"
|
|
14
14
|
},
|
|
15
|
+
"homepage": "https://chrisburnell.com/eleventy-cache-webmentions/",
|
|
15
16
|
"engines": {
|
|
16
17
|
"node": ">=10"
|
|
17
18
|
},
|