{"library":"rollup-plugin-execute","title":"rollup-plugin-execute","description":"A Rollup plugin that executes shell commands sequentially after the bundle is generated. Version 1.1.1 is stable with no recent releases; it accepts a command string or array of commands and runs them in order using child_process.execSync. Lightweight and zero-dependency, ideal for post-build tasks like copying files or opening a browser. Alternative to rollup-plugin-shell, but simpler with no cross-platform handling.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-execute"],"cli":null},"imports":["import execute from 'rollup-plugin-execute'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport execute from 'rollup-plugin-execute'\n\nexport default {\n  input: 'src/index.js',\n  output: { file: 'dist/bundle.js', format: 'esm' },\n  plugins: [\n    execute('echo \"Build complete\" > dist/status.txt')\n  ]\n}","lang":"javascript","description":"Minimal Rollup config that writes a status file after bundle generation using execute().","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}