@c4605/interpolate-webpack-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

interpolate-webpack-plugin Build Status Coverage Status

Inspired by react-dev-utils/InterpolateHtmlPlugin.

This Webpack plugin designed to lets us interpolate custom predefined variables into assets.

Builtin variables

  • %GIT_DESCRIBE%: result of git describe --tags
  • %GIT_REV%: result of git rev-parse --short HEAD
  • %GIT_VERSION%: %GIT_DESCRIBE% or %GIT_REV%
  • %packageJson.[data.path.in.package.json]%: any data in package.json

Install

yarn add @c4605/interpolate-webpack-plugin -D
# or
npm install @c4605/interpolate-webpack-plugin --save-dev

Usage

import { InterpolateWebpackPlugin, DefaultReplacer } from 'interpolate-webpack-plugin'

export default {
  // ... webpack configs
  plugins: [
    // Use with default replacer
    new InterpolateWebpackPlugin(
      new DefaultReplacer({ options }),
    ),

    // Or use custom replacer
    new InterpolateWebpackPlugin({ replacer: (filename, source) =>
      new PrefixSource(
        prefix: '/* prefix */',
        source,
      )
    }),
  ],
}

Options structure can find in src/index.ts#InterpolateWebpackPluginOptions.

The default replacer will not modify binary files (checked by isBinaryFile) and sourcemap files.

If you want to use the builtin variables, you can to this:

module.exports = async () => {
  // ... webpack configs
  plugins: [
    new webpack.DefinePlugin({
      ...(await new DefaultReplacer({ options }).getDefinePluginOptions()),
      // ... other defines
    }),
  ],
}

Development

yarn build # build code
yarn watch # build and watch code
yarn test # run tests

Readme

Keywords

none

Package Sidebar

Install

npm i @c4605/interpolate-webpack-plugin

Weekly Downloads

5

Version

1.0.3

License

MIT

Unpacked Size

40 kB

Total Files

32

Last publish

Collaborators

  • bolasblack