diff --git a/.circleci/config.yml b/.circleci/config.yml index 1805aa0603..53cd0cb0dd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,17 +13,7 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-lib && npm test - - remix-core: - docker: - - image: circleci/node:7.10 - environment: - working_directory: ~/repo - steps: - - checkout - - run: npm install && npm run bootstrap - - run: cd remix-core && npm test - + remix-solidity: docker: - image: circleci/node:7.10 @@ -33,7 +23,7 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-solidity && npm test - + remix-debug: docker: - image: circleci/node:7.10 @@ -43,13 +33,12 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-debug && npm test - + workflows: version: 2 build_all: jobs: - remix-lib - - remix-core - remix-solidity - remix-debug - + diff --git a/.travis.yml b/.travis.yml index c71d917c1f..5fd298c5b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,9 @@ language: node_js node_js: - stable env: - - TEST_DIR=remix-core - TEST_DIR=remix-lib - TEST_DIR=remix-solidity - - TEST_DIR=remix-debugger + - TEST_DIR=remix-debug script: - cd $TEST_DIR && npm install && npm test deploy: diff --git a/README.md b/README.md index c8bdcd264a..d4ba85ef07 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,7 @@ Remix is built out of 4 different modules: + [`remix-solidity`](remix-solidity/README.md) provides Solidity analysis and decoding functions. + [`remix-lib`](remix-lib/README.md) -+ [`remix-core`](remix-core/README.md) is a utility package, providing high-level abstractions to work with the Ethereum VM. -+ [`remix-debugger`](remix-debugger/README.md) contains the **debugging webapp**. ++ [`remix-debug`](remix-debugger/README.md) contains the debugger. ## Contributing diff --git a/lerna.json b/lerna.json index 9f6659697a..0a931538b1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,6 @@ { "lerna": "2.10.2", "packages": [ - "remix-core", "remix-debug", "remix-debugger", "remix-lib", diff --git a/remix-solidity/package.json b/remix-solidity/package.json index 39f83c2a0c..5c22ce0b63 100644 --- a/remix-solidity/package.json +++ b/remix-solidity/package.json @@ -22,7 +22,6 @@ "ethereumjs-vm": "^2.3.3", "fast-async": "^6.1.2", "npm-run-all": "^4.0.2", - "remix-core": "^0.0.15", "remix-lib": "^0.2.9", "solc": "https://github.com/ethereum/solc-js", "standard": "^7.0.1",