Skip to content

Commit 735a87d

Browse files
committed
⬆️ Upgrade to Eleventy 3.1.0
1 parent 835440c commit 735a87d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"last 2 versions"
2424
],
2525
"devDependencies": {
26-
"@11ty/eleventy": "^3.0.0",
27-
"@11ty/eleventy-img": "^5.0.0",
26+
"@11ty/eleventy": "^3.1.0",
27+
"@11ty/eleventy-img": "^6.0.2",
2828
"autoprefixer": "^10.3.1",
2929
"chalk": "^4.0.0",
3030
"cross-env": "^7.0.3",

src/config/build.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ export default async function(config) {
1010
bundle: true,
1111
minify: process.env.ELEVENTY_ENV === "production",
1212
sourcemap: process.env.ELEVENTY_ENV !== "production",
13-
plugins: [sassPlugin()]
13+
plugins: [sassPlugin({
14+
quietDeps: true,
15+
loadPaths: ["node_modules"],
16+
})]
1417
});
1518
});
1619
};

0 commit comments

Comments
 (0)