Skip to content

Commit 0e427ae

Browse files
authored
Merge pull request #34 from MWDelaney/esbuild
Replace rollup with esbuild; remove 7 dependencies
2 parents 042a6dc + d5ce975 commit 0e427ae

File tree

7 files changed

+32917
-7846
lines changed

7 files changed

+32917
-7846
lines changed

.eleventy.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ const templateLanguages = require('./src/config/templateLanguages');
4646
*/
4747
const filters = require('./src/config/filters');
4848

49+
/**
50+
* Import the bundler configuration from /src/config/build.js
51+
*/
52+
const build = require('./src/config/build');
53+
4954
/**
5055
* Any additional requirements can be added here
5156
*/
@@ -170,6 +175,11 @@ module.exports = function (eleventyConfig) {
170175
console.log("\n");
171176
console.groupEnd();
172177

178+
/**
179+
* Add build configuration from /src/config/build.js
180+
*/
181+
build(eleventyConfig);
182+
173183
/**
174184
* Minify HTML output
175185
*/

0 commit comments

Comments
 (0)