1.0.0 • Published 8 years ago
rollup-plugin-post-replace v1.0.0
rollup-plugin-post-replace
Installation
npm install --save-dev rollup-plugin-post-replace
Usage
import { rollup } from 'rollup';
import replace from 'rollup-plugin-post-replace';
rollup({
entry: 'main.js',
plugins: [
replace({
ENVIRONMENT: JSON.stringify( 'production' )
})
]
}).then(...)
Options
{
// To replace every occurence of `<@foo@>` instead of every
// occurence of `foo`, supply delimiters
delimiters: [ '<@', '@>' ],
// All other options are treated as `string: replacement`
// replacers...
VERSION: '1.0.0',
ENVIRONMENT: JSON.stringify( 'development' ),
// ...unless you want to be careful about separating
// values from other options, in which case you can:
values: {
VERSION: '1.0.0',
ENVIRONMENT: JSON.stringify( 'development' )
}
}
Thanks
Thanks to Rich Harris and the rollup community.
License
rollup-plugin-post-replace is released under the terms of the MIT License.
This software includes or is derivative of works distributed under the licenses listed below. Please refer to the specific files and/or packages for more detailed information about the authors, copyright notices, and licenses.
- rollup-plugin-replace is released under the terms of the MIT license.
1.0.0
8 years ago