
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
rollup-plugin-rename-node-modules
Advanced tools
A Rollup plugin to rename the `node_modules` created when bundling some external libries while using preserveModules
🍣 A Rollup plugin to rename the node_modules
created when bundling some external libries while using preserveModules
When you enable preserveModules
but also want to bundle some stuff from dependencies (in my case it was css
files so that Next.js
can use my library),
rollup
will put the files under node_modules
folder under your output dir. This works locally just fine, but if you try to npm publish
this output dir,
npm
will automatically ignore node_modules
inside the output dir so your package will not work when distributed through npm
. I don't know if this is
a bug or a desired behavior, but this plugin fixes this by renaming the node_modules
folder to something else and also check each file and rename any
relative imports pointing to this node_modules
to the corrected path.
This plugin requires an LTS Node version (v8.0.0+) and Rollup
Using npm:
npm install rollup-plugin-rename-node-modules --save-dev
Create a rollup.config.js
configuration file and import the plugin:
import renameNodeModules from "rollup-plugin-rename-node-modules";
export default {
input: "src/index.js",
output: {
dir: "output",
format: "cjs",
},
plugins: [renameNodeModules("ext")],
};
It takes a string and will rename files and mentions of node_module
to the provided string. By default it's external
. Since v1.3.0, you can also pass in a function that takes a string
and returns a string
.
It has an optional second parameter sourceMap
which defaults to true
and can disable source map generation:
plugins: [renameNodeModules("ext", false)]
Base idea taken from https://github.com/GiG/rollup-plugin-rename-extensions
FAQs
A Rollup plugin to rename the `node_modules` created when bundling some external libries while using preserveModules
We found that rollup-plugin-rename-node-modules demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.