Skip to content

Latest commit

 

History

History
64 lines (53 loc) · 2.04 KB

README.md

File metadata and controls

64 lines (53 loc) · 2.04 KB


webpack-plugin-browser-json
TypeScript Styled with prettier Build status Test Coverage NPM Version Downloads

A webpack plugin that allows for an additional config file for browser dependencies. The implementation is mostly compatible with the one from Lasso but is missing some features.

This is primarily meant as a stop gap utility for developers incrementally migrating from Lasso to Webpack.

Installation

npm install webpack-plugin-browser-json -D

Example

webpack.config.js

const { BrowserJSONPlugin } = require("webpack-plugin-browser-json");

module.exports = {
  // your webpack config
  ...,
  plugins: [
    new BrowserJSONPlugin({
      flags: ["a", "b"] // Set the lasso flags for this compilation
    })
  ]
}

Code of Conduct

This project adheres to the eBay Code of Conduct. By participating in this project you agree to abide by its terms.