Skip to content

Commit

Permalink
Merge pull request #34 from MWDelaney/esbuild
Browse files Browse the repository at this point in the history
Replace rollup with esbuild; remove 7 dependencies
  • Loading branch information
MWDelaney authored Apr 25, 2024
2 parents 042a6dc + d5ce975 commit 0e427ae
Show file tree
Hide file tree
Showing 7 changed files with 32,917 additions and 7,846 deletions.
10 changes: 10 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ const templateLanguages = require('./src/config/templateLanguages');
*/
const filters = require('./src/config/filters');

/**
* Import the bundler configuration from /src/config/build.js
*/
const build = require('./src/config/build');

/**
* Any additional requirements can be added here
*/
Expand Down Expand Up @@ -170,6 +175,11 @@ module.exports = function (eleventyConfig) {
console.log("\n");
console.groupEnd();

/**
* Add build configuration from /src/config/build.js
*/
build(eleventyConfig);

/**
* Minify HTML output
*/
Expand Down
Loading

0 comments on commit 0e427ae

Please sign in to comment.