Skip to content

Commit a3d3af8

Browse files
committed
add test
1 parent d50f00d commit a3d3af8

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed
Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1-
module.exports = {
2-
output: {
3-
libraryTarget: "umd",
4-
library: {
5-
root: "testLibrary",
6-
amd: "test-library",
7-
commonjs: "test-library"
1+
module.exports = [
2+
{
3+
output: {
4+
libraryTarget: "umd",
5+
library: {
6+
root: "testLibrary",
7+
amd: "test-library",
8+
commonjs: "test-library"
9+
}
10+
}
11+
},
12+
{
13+
output: {
14+
libraryTarget: "umd",
15+
library: {
16+
root: ["test", "library"],
17+
amd: "test-library",
18+
commonjs: "test-library"
19+
}
820
}
921
}
10-
};
22+
];

0 commit comments

Comments
 (0)