Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
byzyk committed May 4, 2018
1 parent d50f00d commit a3d3af8
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions test/configCases/library/umd/webpack.config.js
@@ -1,10 +1,22 @@
module.exports = {
output: {
libraryTarget: "umd",
library: {
root: "testLibrary",
amd: "test-library",
commonjs: "test-library"
module.exports = [
{
output: {
libraryTarget: "umd",
library: {
root: "testLibrary",
amd: "test-library",
commonjs: "test-library"
}
}
},
{
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
}
}
};
];

0 comments on commit a3d3af8

Please sign in to comment.