From d653ea746e77df88d636e92512e13aaadcaf85d7 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 11 Jun 2025 17:50:05 +0200 Subject: [PATCH] Sort glob results --- packages/amino/webpack.web.config.js | 2 +- packages/cosmwasm-stargate/webpack.web.config.js | 2 +- packages/crypto/webpack.web.config.js | 2 +- packages/encoding/webpack.web.config.js | 2 +- packages/faucet-client/webpack.web.config.js | 2 +- packages/json-rpc/webpack.web.config.js | 2 +- packages/math/webpack.web.config.js | 2 +- packages/proto-signing/webpack.web.config.js | 2 +- packages/socket/webpack.web.config.js | 2 +- packages/stargate/webpack.web.config.js | 2 +- packages/stream/webpack.web.config.js | 2 +- packages/tendermint-rpc/webpack.web.config.js | 2 +- packages/utils/webpack.web.config.js | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/amino/webpack.web.config.js b/packages/amino/webpack.web.config.js index 6fc4d2a4..fafb0f07 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), 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 df7307ba..47ab9a52 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/crypto/webpack.web.config.js b/packages/crypto/webpack.web.config.js index 6fc4d2a4..fafb0f07 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/encoding/webpack.web.config.js b/packages/encoding/webpack.web.config.js index 4de7dd94..7e91b822 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), 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 d67d5596..d003165b 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), 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 18da36e2..aa1500df 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/math/webpack.web.config.js b/packages/math/webpack.web.config.js index d893ca29..942d3195 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), 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 6fc4d2a4..fafb0f07 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/socket/webpack.web.config.js b/packages/socket/webpack.web.config.js index be9a140e..4ef48d13 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/stargate/webpack.web.config.js b/packages/stargate/webpack.web.config.js index 5829e207..1f50ee44 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/stream/webpack.web.config.js b/packages/stream/webpack.web.config.js index 1c50f2a6..203b29a6 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), 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 967fc3e0..677700f3 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js", diff --git a/packages/utils/webpack.web.config.js b/packages/utils/webpack.web.config.js index d893ca29..942d3195 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", { dotRelative: true }), + entry: globSync("./build/**/*.spec.js", { dotRelative: true }).sort(), output: { path: distdir, filename: "tests.js",