1.1.2 • Published 7 years ago

@easy-webpack/config-output-library v1.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Example usage:

  // Generates a umd module with a named define "my Lib"
  const cfg = generateConfig (
      webpackConfig, outputLibrary("myLib", "umd", true)
  );

  // Generates a commonjs module with no export name
  const cfg = generateConfig (
      webpackConfig, outputLibrary("myLib", "commonjs")
  );