From d2e0b6fc7e811c960238584cb3ee981a4b776fff Mon Sep 17 00:00:00 2001 From: filip mertens Date: Mon, 6 Feb 2023 18:03:46 +0100 Subject: [PATCH] don't compress --- .circleci/config.yml | 2 +- apps/remix-ide/webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 82bd359831..e71f11e3bc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,7 @@ jobs: key: v1-deps-{{ checksum "yarn.lock" }} paths: - node_modules - - run: NX_BIN_URL=http://127.0.0.1:8080/assets/js NX_WASM_URL=http://127.0.0.1:8080/assets/js yarn build + - run: NX_BIN_URL=http://127.0.0.1:8080/assets/js NX_WASM_URL=http://127.0.0.1:8080/assets/js yarn build:production - run: yarn nx build remix-ide-e2e-src-local-plugin & yarn run build:libs - run: yarn nx run debugger:build:production - run: yarn nx run solidity-compiler:build:production diff --git a/apps/remix-ide/webpack.config.js b/apps/remix-ide/webpack.config.js index 7f94f8f15d..778bb3e36e 100644 --- a/apps/remix-ide/webpack.config.js +++ b/apps/remix-ide/webpack.config.js @@ -86,7 +86,7 @@ module.exports = composePlugins(withNx(), withReact(), (config) => { parallel: true, terserOptions: { ecma: 2015, - compress: true, + compress: false, mangle: false, format: { comments: false,