From 65fe7fa4a2366ef6ed8d940c0524b3c92ede070f Mon Sep 17 00:00:00 2001 From: willclarktech Date: Thu, 10 Dec 2020 17:51:25 +0000 Subject: [PATCH] cosmwasm: Add CW1/CW3 env variables to webpack --- packages/cosmwasm/webpack.web.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/cosmwasm/webpack.web.config.js b/packages/cosmwasm/webpack.web.config.js index 2cda344b..feee73e5 100644 --- a/packages/cosmwasm/webpack.web.config.js +++ b/packages/cosmwasm/webpack.web.config.js @@ -14,6 +14,8 @@ module.exports = [ path: distdir, filename: "tests.js", }, - plugins: [new webpack.EnvironmentPlugin(["LAUNCHPAD_ENABLED", "ERC20_ENABLED"])], + plugins: [ + new webpack.EnvironmentPlugin(["LAUNCHPAD_ENABLED", "ERC20_ENABLED", "CW3_ENABLED", "CW1_ENABLED"]), + ], }, ];