diff --git a/package-lock.json b/package-lock.json index 1f21e23..d1bb09a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "eleventy-excellent", - "version": "4.3.2", + "version": "4.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "eleventy-excellent", - "version": "4.3.2", + "version": "4.3.1", "license": "ISC", "dependencies": { - "@11ty/eleventy": "^3.1.2", + "@11ty/eleventy": "^3.1.1", "@11ty/eleventy-fetch": "^5.1.0", "@11ty/eleventy-img": "^6.0.4", "@11ty/eleventy-plugin-rss": "^2.0.4", @@ -26,7 +26,7 @@ "cross-env": "^7.0.3", "cssnano": "^7.0.7", "dayjs": "^1.11.13", - "dotenv": "^17.0.0", + "dotenv": "^16.6.0", "esbuild": "^0.25.5", "html-minifier-terser": "^7.2.0", "js-yaml": "^4.1.0", @@ -79,9 +79,9 @@ } }, "node_modules/@11ty/eleventy": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.1.2.tgz", - "integrity": "sha512-IcsDlbXnBf8cHzbM1YBv3JcTyLB35EK88QexmVyFdVJVgUU6bh9g687rpxryJirHzo06PuwnYaEEdVZQfIgRGg==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.1.1.tgz", + "integrity": "sha512-nsMCW44WSYzpi6JSQ1ar/wlotj/2cxuP4AABX5Dxqwol3IQ3SkEMgcAugP1t1mthv5I0kIB9lql1Jv/lhUHIkg==", "license": "MIT", "dependencies": { "@11ty/dependency-tree": "^4.0.0", @@ -91,13 +91,13 @@ "@11ty/eleventy-utils": "^2.0.7", "@11ty/lodash-custom": "^4.17.21", "@11ty/posthtml-urls": "^1.0.1", - "@11ty/recursive-copy": "^4.0.2", + "@11ty/recursive-copy": "^4.0.1", "@sindresorhus/slugify": "^2.2.1", "bcp-47-normalize": "^2.3.0", "chokidar": "^3.6.0", "debug": "^4.4.1", "dependency-graph": "^1.0.0", - "entities": "^6.0.1", + "entities": "^6.0.0", "filesize": "^10.1.6", "gray-matter": "^4.0.3", "iso-639-1": "^3.1.5", @@ -2945,9 +2945,9 @@ } }, "node_modules/dotenv": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.0.0.tgz", - "integrity": "sha512-A0BJ5lrpJVSfnMMXjmeO0xUnoxqsBHWCoqqTnGwGYVdnctqXXUEhJOO7LxmgxJon9tEZFGpe0xPRX0h2v3AANQ==", + "version": "16.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.0.tgz", + "integrity": "sha512-Omf1L8paOy2VJhILjyhrhqwLIdstqm1BvcDPKg4NGAlkwEu9ODyrFbvk8UymUOMCT+HXo31jg1lArIrVAAhuGA==", "dev": true, "license": "BSD-2-Clause", "engines": { diff --git a/package.json b/package.json index fdf9589..a5b3087 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eleventy-excellent", - "version": "4.3.2", + "version": "4.3.1", "description": "Eleventy starter built around the workflow suggested by Andy Bell's buildexcellentwebsit.es.", "author": "Lene Saile", "license": "ISC", @@ -25,7 +25,7 @@ "url": "https://github.com/madrilene/eleventy-excellent.git" }, "dependencies": { - "@11ty/eleventy": "^3.1.2", + "@11ty/eleventy": "^3.1.1", "@11ty/eleventy-fetch": "^5.1.0", "@11ty/eleventy-img": "^6.0.4", "@11ty/eleventy-plugin-rss": "^2.0.4", @@ -42,7 +42,7 @@ "cross-env": "^7.0.3", "cssnano": "^7.0.7", "dayjs": "^1.11.13", - "dotenv": "^17.0.0", + "dotenv": "^16.6.0", "esbuild": "^0.25.5", "html-minifier-terser": "^7.2.0", "js-yaml": "^4.1.0", diff --git a/src/_config/plugins/css-config.js b/src/_config/plugins/css-config.js index 839e2a9..d1a6518 100644 --- a/src/_config/plugins/css-config.js +++ b/src/_config/plugins/css-config.js @@ -12,7 +12,6 @@ export const cssConfig = eleventyConfig => { eleventyConfig.addExtension('css', { outputFileExtension: 'css', - cacheable: false, compile: async (inputContent, inputPath) => { const paths = []; if (inputPath.endsWith('/src/assets/css/global/global.css')) { diff --git a/src/_config/plugins/js-config.js b/src/_config/plugins/js-config.js index eb4d490..e45a688 100644 --- a/src/_config/plugins/js-config.js +++ b/src/_config/plugins/js-config.js @@ -6,7 +6,6 @@ export const jsConfig = eleventyConfig => { eleventyConfig.addExtension('js', { outputFileExtension: 'js', - cacheable: false, compile: async (content, inputPath) => { // Skip processing if not in the designated scripts directories if (!inputPath.startsWith('./src/assets/scripts/')) {