mirror of https://github.com/webpack/webpack.git
added names to multi compiler example
This commit is contained in:
parent
36be6337ee
commit
f5d35418e3
|
|
@ -2,6 +2,7 @@ var path = require("path");
|
|||
var webpack = require("../../");
|
||||
module.exports = [
|
||||
{
|
||||
name: "mobile",
|
||||
entry: "./example",
|
||||
output: {
|
||||
path: path.join(__dirname, "js"),
|
||||
|
|
@ -14,6 +15,7 @@ module.exports = [
|
|||
]
|
||||
},
|
||||
{
|
||||
name: "desktop",
|
||||
entry: "./example",
|
||||
output: {
|
||||
path: path.join(__dirname, "js"),
|
||||
|
|
|
|||
Loading…
Reference in New Issue