This package has been deprecated

Author message:

https://github.com/discontinued/rollup-plugin-post-replace

rollup-plugin-post-replace

1.0.0 • Public • Published

rollup-plugin-post-replace

NPM version Build Status

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-post-replace/

    Package Sidebar

    Install

    npm i rollup-plugin-post-replace

    Weekly Downloads

    7

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • eitherlands