Created
May 15, 2016 21:07
-
-
Save kwhitaker/ef0cb10454aac22713e51748169d6140 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const config = Object.assign({}, require(`./webpack.${process.env.NODE_ENV}`), pkgOpts) | |
config.entry.push(`${pkg}/build/init`) | |
config.output.filename = `${pkg}.js` | |
config.plugins.push( | |
new HtmlWebpackPlugin({ | |
favicon: 'src/favicon.ico', | |
title: pkgOpts.name || 'Needs a name', | |
}) | |
) | |
const compiler = webpack(config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment