first
This commit is contained in:
16
node_modules/@11ty/eleventy-img/src/caches.js
generated
vendored
Normal file
16
node_modules/@11ty/eleventy-img/src/caches.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
const MemoryCache = require("./memory-cache.js");
|
||||
const DiskCache = require("./disk-cache.js");
|
||||
const ExistsCache = require("./exists-cache.js");
|
||||
|
||||
let memCache = new MemoryCache();
|
||||
|
||||
let existsCache = new ExistsCache();
|
||||
|
||||
let diskCache = new DiskCache();
|
||||
diskCache.setExistsCache(existsCache);
|
||||
|
||||
module.exports = {
|
||||
memCache,
|
||||
diskCache,
|
||||
existsCache
|
||||
};
|
||||
Reference in New Issue
Block a user