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.
npm install webpack-plugin-browser-json -D
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
})
]
}
This project adheres to the eBay Code of Conduct. By participating in this project you agree to abide by its terms.