├── cmd.js ├── README.md ├── index.js └── package.json /cmd.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("./index.js"); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Did you mean `@11ty/eleventy`? 2 | 3 | - Read more: https://github.com/11ty/eleventy/issues/2460 4 | 5 | ## npm Packages 6 | 7 | - https://www.npmjs.com/package/eleventy 8 | - https://www.npmjs.com/package/@11ty/eleventy -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | throw new Error("The `eleventy` npm package name has been graciously donated to the @11ty project by Roman Kenig-Gusev (and now throws this error). You probably wanted to install `@11ty/eleventy` instead! Read more: https://github.com/11ty/eleventy/issues/2460"); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy", 3 | "version": "2.0.1", 4 | "description": "To help folks find @11ty/eleventy", 5 | "main": "index.js", 6 | "bin": { 7 | "eleventy": "cmd.js" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git://github.com/11ty/npm-bare-error.git" 12 | }, 13 | "homepage": "https://www.11ty.dev/", 14 | "license": "MIT" 15 | } 16 | --------------------------------------------------------------------------------