{"library":"rollup-plugin-mv","title":"rollup-plugin-mv","description":"A Rollup plugin to move generated files and directories after the bundle is written. Version 0.0.2 is the current stable release; the plugin is minimal and has no updates yet. It provides a simple API to specify source and destination paths with optional overwrite and once flags. Compared to alternatives like rollup-plugin-copy or rollup-plugin-sh, it focuses exclusively on moving (not copying) and supports both files and directories. Includes TypeScript declarations.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-mv"],"cli":null},"imports":["import mv from 'rollup-plugin-mv'","import mv from 'rollup-plugin-mv'","import type { MoveConfig } from 'rollup-plugin-mv'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport mv from 'rollup-plugin-mv';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    dir: 'dist',\n    format: 'cjs',\n  },\n  plugins: [\n    mv([\n      { src: 'dist/file.js', dest: 'dist/assets/file.js' },\n      { src: 'dist/folder', dest: 'dist/assets/folder', overwrite: true },\n    ], {\n      overwrite: false,\n      once: false,\n    }),\n  ],\n};","lang":"typescript","description":"Minimal Rollup configuration using rollup-plugin-mv to move files after build.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}