diff --git a/packages/amino/webpack.web.config.js b/packages/amino/webpack.web.config.js index 859c1e5a..6fc4d2a4 100644 --- a/packages/amino/webpack.web.config.js +++ b/packages/amino/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/cosmwasm-stargate/webpack.web.config.js b/packages/cosmwasm-stargate/webpack.web.config.js index 8dc85555..df7307ba 100644 --- a/packages/cosmwasm-stargate/webpack.web.config.js +++ b/packages/cosmwasm-stargate/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/crypto/webpack.web.config.js b/packages/crypto/webpack.web.config.js index 859c1e5a..6fc4d2a4 100644 --- a/packages/crypto/webpack.web.config.js +++ b/packages/crypto/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/encoding/webpack.web.config.js b/packages/encoding/webpack.web.config.js index 7d609563..4de7dd94 100644 --- a/packages/encoding/webpack.web.config.js +++ b/packages/encoding/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/faucet-client/webpack.web.config.js b/packages/faucet-client/webpack.web.config.js index 37cfe53d..d67d5596 100644 --- a/packages/faucet-client/webpack.web.config.js +++ b/packages/faucet-client/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/json-rpc/webpack.web.config.js b/packages/json-rpc/webpack.web.config.js index a567df46..18da36e2 100644 --- a/packages/json-rpc/webpack.web.config.js +++ b/packages/json-rpc/webpack.web.config.js @@ -17,7 +17,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/math/webpack.web.config.js b/packages/math/webpack.web.config.js index 7b8532a0..d893ca29 100644 --- a/packages/math/webpack.web.config.js +++ b/packages/math/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/proto-signing/webpack.web.config.js b/packages/proto-signing/webpack.web.config.js index 859c1e5a..6fc4d2a4 100644 --- a/packages/proto-signing/webpack.web.config.js +++ b/packages/proto-signing/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/socket/webpack.web.config.js b/packages/socket/webpack.web.config.js index be349a5c..be9a140e 100644 --- a/packages/socket/webpack.web.config.js +++ b/packages/socket/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/stargate/webpack.web.config.js b/packages/stargate/webpack.web.config.js index 3ff21a2c..5829e207 100644 --- a/packages/stargate/webpack.web.config.js +++ b/packages/stargate/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/stream/webpack.web.config.js b/packages/stream/webpack.web.config.js index 4e42adea..1c50f2a6 100644 --- a/packages/stream/webpack.web.config.js +++ b/packages/stream/webpack.web.config.js @@ -8,7 +8,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/tendermint-rpc/webpack.web.config.js b/packages/tendermint-rpc/webpack.web.config.js index 4a6a691a..967fc3e0 100644 --- a/packages/tendermint-rpc/webpack.web.config.js +++ b/packages/tendermint-rpc/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js", diff --git a/packages/utils/webpack.web.config.js b/packages/utils/webpack.web.config.js index 7b8532a0..d893ca29 100644 --- a/packages/utils/webpack.web.config.js +++ b/packages/utils/webpack.web.config.js @@ -10,7 +10,7 @@ module.exports = [ { // bundle used for Karma tests target: target, - entry: globSync("./build/**/*.spec.js"), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }), output: { path: distdir, filename: "tests.js",