
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
webpack-build-linked-packages
Advanced tools
A webpack plugin that runs a build script for any symlinked packages in node_modules (e.g. via `npm link` or `yarn link`).
A webpack plugin that runs a build script for any symlinked packages in node_modules (e.g. via npm link or yarn link).
This can be handy when testing local changes to a package that has a build step (e.g. for stripping type annotations, or transpiling syntax with Babel). It can be easy to forget to rebuild the local package after each code change – instead you can install this plugin, and have the local package automatically rebuilt on each webpack compile.
npm install webpack-build-linked-packages --save-dev
In your webpack config, require the plugin then add an instance to the plugins array.
const WebpackBuildLinkedPackages = require("webpack-build-linked-packages");
module.exports = {
plugins: [
new WebpackBuildLinkedPackages({
// Options go here
})
]
};
scriptNameType: string
Default: build
The NPM script to run in all linked packages. If the script is defined in the linked package, it will be invoked with npm run-script.
FAQs
A webpack plugin that runs a build script for any symlinked packages in node_modules (e.g. via `npm link` or `yarn link`).
We found that webpack-build-linked-packages 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.