mirror of https://github.com/webpack/webpack.git
move test to separate folder
This commit is contained in:
parent
a3d3af88a5
commit
71b05f9f83
|
|
@ -0,0 +1,3 @@
|
|||
it("should run", function() {
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
module.exports = {
|
||||
output: {
|
||||
libraryTarget: "umd",
|
||||
library: {
|
||||
root: ["test", "library"],
|
||||
amd: "test-library",
|
||||
commonjs: "test-library"
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
@ -1,22 +1,10 @@
|
|||
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"
|
||||
}
|
||||
module.exports = {
|
||||
output: {
|
||||
libraryTarget: "umd",
|
||||
library: {
|
||||
root: "testLibrary",
|
||||
amd: "test-library",
|
||||
commonjs: "test-library"
|
||||
}
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue