New:Socket for Asana Is Now Available.Learn more
Get Started

@11ty/eleventy-upgrade-help

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@11ty/eleventy-upgrade-help

Helper plugin when upgrading your Eleventy project to a new major version.

latest
Source
npmnpm
Version
3.0.2
Version published
Weekly downloads
1.3K
19.06%
Maintainers
2
Weekly downloads
 
Created
Source

eleventy-upgrade-help v3.0

A plugin to help you upgrade your Eleventy project from Eleventy v2.0 to v3.0.

Previous versions:

  • Upgrade from 0.x to 1.0
  • Upgrade from 1.x to 2.0

The major version of this plugin will always match the major version of Eleventy that you’re upgrading to.

Usage

Upgrade Eleventy with npm before using this plugin by running the following command:

npm install @11ty/eleventy@3

Then, install this plugin:

npm install @11ty/eleventy-upgrade-help@3

Add to your configuration file (probably .eleventy.js or eleventy.config.js):

const UpgradeHelper = require("@11ty/eleventy-upgrade-help");

module.exports = function(eleventyConfig) {
  // If you have other `addPlugin` calls, UpgradeHelper should be listed last.
  eleventyConfig.addPlugin(UpgradeHelper);
};

Run your usual build command (e.g. npm run build) and pay attention to the output. Address any violations and warnings. Once you’ve removed all of the violations/warnings from your output, run npm uninstall @11ty/eleventy-upgrade-help to remove the plugin and delete its code from your Eleventy configuration file.

Example demo

You can review a sample project using this upgrade plugin.

Keywords

eleventy

FAQs

Package last updated on 02 Dec 2025

Related posts