diff --git a/README.md b/README.md index 50340bb..30c1fdc 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,10 @@ So the primary goal of this plugin is simply to automatically declare all NodeJS As an added bonus, this plugin will also allow you to declare your dependencies (as per your local or monorepo `package.json` file(s)) as external. +## Requirements +- Rollup >= 4 or Vite >= 5 +- NodeJS >= 21 + ## Installation Use your favorite package manager. Mine is [npm](https://www.npmjs.com). @@ -229,13 +233,17 @@ export default defineConfig({ ## Breaking changes -### Breaking changes in version 7 -- This package now only supports the [Maintenance, LTS and Current versions](https://github.com/nodejs/Release#release-schedule) of Node.js. -- The previously undocumented `externals` named export has been removed. +### Breaking changes in version 8 +- Removed support for Rollup 3. +- Removed `order: pre` from resolveId hook (see #33). Might force users who relied on this, to make sure this plugin comes first in the plugins array. ### Breaking changes in previous versions
Previous versions -- click to expand +### Breaking changes in version 7 +- This package now only supports the [Maintenance, LTS and Current versions](https://github.com/nodejs/Release#release-schedule) of Node.js. +- The previously undocumented `externals` named export has been removed. + #### Breaking changes in version 6 - This package is now esm-only and requires NodeJS v16+.
*If you need CommonJS or older NodeJS support, please stick to v5.* - This plugin now has a **peer-dependency** on Rollup `^3.0.0 || ^4.0.0`.
*If you need Rollup 2 support, please stick to v5.*