
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
rollup-plugin-copier
Advanced tools
[](https://travis-ci.com/marverix/rollup-plugin-copier) [](releases) [![L
Simple Rollup.js plugin that copies desired files
npm install rollup-plugin-copier
In your rollup.config.js:
import copier from 'rollup-plugin-copier';
...
export default [
{
// some config
plugins: [
copier({
items: [
{
src: 'some/sample/source.file',
dest: 'will/be/copied.here'
}
]
})
]
}
];
items
Required
Array of items that should be copied
Options for each item:
src
Required
Source path
dest
Required
Destination path
createPath
Optional, Default false
If path for destination file doesn't exist - create it.
hookOn
Optional, Default buildEnd
Which Rollup.js hook should be used.
verbose
Optional, Default false
See also the list of contributors who participated in this project.
This plugin is heavly inspired by rollup-plugin-copy (created by meuter), but it seems that it's not more developed/fixed.
This project is licensed under the ISC License - see the LICENSE file for details.
FAQs
[](https://travis-ci.com/marverix/rollup-plugin-copier) [](releases) [
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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.