From 1de5661740ad9635b143a61152e9b2747748326f Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 15 Nov 2021 16:35:06 +0100 Subject: [PATCH] fix prod build --- .circleci/config.yml | 20 -------------------- .gitmodules | 3 --- libs/remix-ui/tabs/.babelrc | 4 ++-- libs/remix-ui/tabs/react-tabs | 1 - libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx | 2 +- 5 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 .gitmodules delete mode 160000 libs/remix-ui/tabs/react-tabs diff --git a/.circleci/config.yml b/.circleci/config.yml index e7580743ae..1b5b24c9a4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,8 +72,6 @@ jobs: parallelism: 12 steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npx nx build remix-ide --with-deps - run: @@ -107,8 +105,6 @@ jobs: parallelism: 12 steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npm run downloadsolc_assets - run: npx nx build remix-ide --with-deps @@ -143,8 +139,6 @@ jobs: parallelism: 12 steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npx nx build remix-ide --with-deps - run: @@ -178,8 +172,6 @@ jobs: parallelism: 12 steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npm run downloadsolc_assets - run: npx nx build remix-ide --with-deps @@ -214,8 +206,6 @@ jobs: steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npx nx build remix-ide --with-deps - run: @@ -249,8 +239,6 @@ jobs: steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npx nx build remix-ide --with-deps - run: npx nx build remix-ide-e2e-src-local-plugin @@ -285,8 +273,6 @@ jobs: steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npm run downloadsolc_assets - run: npm run build:production @@ -315,8 +301,6 @@ jobs: steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - setup_remote_docker - run: npm install - run: npm run downloadsolc_assets @@ -343,8 +327,6 @@ jobs: steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npm run downloadsolc_assets - run: npm run build:production @@ -373,8 +355,6 @@ jobs: steps: - checkout - - run: git submodule sync --recursive - - run: git submodule update --recursive --init - run: npm install - run: npm run build:libs - run: npm run downloadsolc_assets diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index f3b7f8e547..0000000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "libs/remix-ui/tabs/react-tabs"] - path = libs/remix-ui/tabs/react-tabs - url = https://github.com/reactjs/react-tabs diff --git a/libs/remix-ui/tabs/.babelrc b/libs/remix-ui/tabs/.babelrc index adc03892c3..09d67939cc 100644 --- a/libs/remix-ui/tabs/.babelrc +++ b/libs/remix-ui/tabs/.babelrc @@ -1,4 +1,4 @@ { - "presets": [["@nrwl/web/babel", { "useBuiltIns": "usage" }]], - "plugins": ["@babel/plugin-proposal-class-properties"] + "presets": ["@nrwl/react/babel"], + "plugins": [] } diff --git a/libs/remix-ui/tabs/react-tabs b/libs/remix-ui/tabs/react-tabs deleted file mode 160000 index 5a1fb0dc4b..0000000000 --- a/libs/remix-ui/tabs/react-tabs +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5a1fb0dc4b79f811e63e2f029786ff36b68bcbf4 diff --git a/libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx b/libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx index 276c691448..004b5ab4cd 100644 --- a/libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx +++ b/libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx @@ -1,5 +1,5 @@ import React, { useState, useRef, useEffect, useReducer } from 'react' // eslint-disable-line -import { Tab, Tabs, TabList, TabPanel } from '../../react-tabs/src/index' +import { Tab, Tabs, TabList, TabPanel } from 'react-tabs' import './remix-ui-tabs.css' /* eslint-disable-next-line */