mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
39 lines
842 B
JavaScript
39 lines
842 B
JavaScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
const glob = require("glob");
|
|
const path = require("path");
|
|
const webpack = require("webpack");
|
|
|
|
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",
|
|
},
|
|
plugins: [
|
|
new webpack.EnvironmentPlugin({
|
|
HTTPSERVER_ENABLED: "",
|
|
TENDERMINT_ENABLED: "",
|
|
}),
|
|
new webpack.ProvidePlugin({
|
|
Buffer: ["buffer", "Buffer"],
|
|
}),
|
|
],
|
|
resolve: {
|
|
fallback: {
|
|
buffer: false,
|
|
crypto: false,
|
|
events: false,
|
|
path: false,
|
|
stream: false,
|
|
string_decoder: false,
|
|
},
|
|
},
|
|
},
|
|
];
|