{"library":"rollup-plugin-postprocess","title":"rollup-plugin-postprocess","description":"A Rollup plugin that applies regex-based find-and-replace postprocessing to bundle output. Version 1.0.2 is the latest stable release with minimal release cadence. It works like JavaScript String replace, supporting function callbacks and sequential replacement pairs. Differentiates from other replace plugins by operating after all other plugins, allowing transformation of the final bundle.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-postprocess"],"cli":null},"imports":["import postprocess from 'rollup-plugin-postprocess'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import postprocess from 'rollup-plugin-postprocess';\n\nexport default {\n  input: 'src/index.js',\n  output: { file: 'dist/bundle.js', format: 'iife' },\n  plugins: [\n    postprocess([\n      [/\\bFIND_ME\\b/g, 'REPLACED']\n    ])\n  ]\n};","lang":"javascript","description":"Replaces all occurrences of FIND_ME with REPLACED in the final bundle using rollup-plugin-postprocess.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}