Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

webpack-date-fns-externals

mattlewis9215MIT1.0.2

A tiny utility to prevent webpack bundling date-fns imports in your library code

webpack, date-fns, externals, library

readme

webpack-date-fns-externals

Build Status codecov

A tiny utility to prevent webpack bundling date-fns imports in your library code

Installation

npm install webpack-date-fns-externals --save-dev

Usage

// webpack.config.js
const webpackDateFnsExternals = require('webpack-date-fns-externals');

module.exports = {
  // rest of config here
  externals: [
    webpackDateFnsExternals(),
    {
      'another-external-lib': {
        root: ['anotherExternalLib'],
        commonjs: 'another-external-lib',
        commonjs2: 'another-external-lib',
        amd: 'another-external-lib'
      }
    }
  ]
};

License

MIT