@11ty/eleventy-upgrade-help
Version:
Helper plugin when upgrading your Eleventy project to a new major version.
5 lines (4 loc) • 338 B
JavaScript
const chalk = require("kleur");
module.exports = function(eleventyConfig) {
console.log(chalk.green(`[11ty/eleventy-upgrade-help] PASSED`), `The Edge plugin was removed from Eleventy core in 3.0. Any use will throw an error, so if you don’t see an error you’re not using it. Learn more: https://www.11ty.dev/docs/plugins/edge/`);
};