mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
18 lines
339 B
JavaScript
18 lines
339 B
JavaScript
const glob = require("glob");
|
|
const path = require("path");
|
|
|
|
const target = "web";
|
|
const distdir = path.join(__dirname, "dist", "web");
|
|
|
|
module.exports = [
|
|
{
|
|
// bundle used for Karma tests
|
|
target: target,
|
|
entry: glob.sync("./build/**/*.spec.js"),
|
|
output: {
|
|
path: distdir,
|
|
filename: "tests.js",
|
|
},
|
|
},
|
|
];
|