This is an automated email from the ASF dual-hosted git repository.

erikrit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 2757b93  fix: Use production build config for cypress tests (#16978)
2757b93 is described below

commit 2757b93feacfc3fca31a21a10ee153c30dfb4929
Author: Erik Ritter <[email protected]>
AuthorDate: Tue Oct 5 11:13:33 2021 -0700

    fix: Use production build config for cypress tests (#16978)
    
    * fix: Use production build config for cypress tests
    
    * set usedExports to global
---
 superset-frontend/package.json      | 2 +-
 superset-frontend/webpack.config.js | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/superset-frontend/package.json b/superset-frontend/package.json
index 34f8185..ed0377c 100644
--- a/superset-frontend/package.json
+++ b/superset-frontend/package.json
@@ -16,7 +16,7 @@
     "dev-server": "cross-env NODE_ENV=development BABEL_ENV=development node 
--max_old_space_size=4096 
./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode=development",
     "prod": "npm run build",
     "build-dev": "cross-env NODE_OPTIONS=--max_old_space_size=8192 
NODE_ENV=development webpack --mode=development --color",
-    "build-instrumented": "cross-env NODE_ENV=development 
BABEL_ENV=instrumented webpack --mode=development --color",
+    "build-instrumented": "cross-env NODE_ENV=production 
BABEL_ENV=instrumented webpack --mode=production --color",
     "build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 
NODE_ENV=production BABEL_ENV=\"${BABEL_ENV:=production}\" webpack 
--mode=production --color",
     "lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx . && 
npm run type",
     "prettier-check": "prettier --check 'src/**/*.{css,less,sass,scss}'",
diff --git a/superset-frontend/webpack.config.js 
b/superset-frontend/webpack.config.js
index 2a5f89e..39cdbf0 100644
--- a/superset-frontend/webpack.config.js
+++ b/superset-frontend/webpack.config.js
@@ -273,6 +273,7 @@ const config = {
         },
       },
     },
+    usedExports: 'global',
     minimizer: [new CssMinimizerPlugin()],
   },
   resolve: {

Reply via email to