Commit 6f278cdb authored by Iuri Matias's avatar Iuri Matias

remove other references to remix-core

parent 2b099e40
...@@ -13,17 +13,7 @@ jobs: ...@@ -13,17 +13,7 @@ jobs:
- checkout - checkout
- run: npm install && npm run bootstrap - run: npm install && npm run bootstrap
- run: cd remix-lib && npm test - 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: remix-solidity:
docker: docker:
- image: circleci/node:7.10 - image: circleci/node:7.10
...@@ -33,7 +23,7 @@ jobs: ...@@ -33,7 +23,7 @@ jobs:
- checkout - checkout
- run: npm install && npm run bootstrap - run: npm install && npm run bootstrap
- run: cd remix-solidity && npm test - run: cd remix-solidity && npm test
remix-debug: remix-debug:
docker: docker:
- image: circleci/node:7.10 - image: circleci/node:7.10
...@@ -43,13 +33,12 @@ jobs: ...@@ -43,13 +33,12 @@ jobs:
- checkout - checkout
- run: npm install && npm run bootstrap - run: npm install && npm run bootstrap
- run: cd remix-debug && npm test - run: cd remix-debug && npm test
workflows: workflows:
version: 2 version: 2
build_all: build_all:
jobs: jobs:
- remix-lib - remix-lib
- remix-core
- remix-solidity - remix-solidity
- remix-debug - remix-debug
...@@ -2,10 +2,9 @@ language: node_js ...@@ -2,10 +2,9 @@ language: node_js
node_js: node_js:
- stable - stable
env: env:
- TEST_DIR=remix-core
- TEST_DIR=remix-lib - TEST_DIR=remix-lib
- TEST_DIR=remix-solidity - TEST_DIR=remix-solidity
- TEST_DIR=remix-debugger - TEST_DIR=remix-debug
script: script:
- cd $TEST_DIR && npm install && npm test - cd $TEST_DIR && npm install && npm test
deploy: deploy:
......
...@@ -41,8 +41,7 @@ Remix is built out of 4 different modules: ...@@ -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-solidity`](remix-solidity/README.md) provides Solidity analysis and decoding functions.
+ [`remix-lib`](remix-lib/README.md) + [`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-debug`](remix-debugger/README.md) contains the debugger.
+ [`remix-debugger`](remix-debugger/README.md) contains the **debugging webapp**.
## Contributing ## Contributing
......
{ {
"lerna": "2.10.2", "lerna": "2.10.2",
"packages": [ "packages": [
"remix-core",
"remix-debug", "remix-debug",
"remix-debugger", "remix-debugger",
"remix-lib", "remix-lib",
......
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
"ethereumjs-vm": "^2.3.3", "ethereumjs-vm": "^2.3.3",
"fast-async": "^6.1.2", "fast-async": "^6.1.2",
"npm-run-all": "^4.0.2", "npm-run-all": "^4.0.2",
"remix-core": "^0.0.15",
"remix-lib": "^0.2.9", "remix-lib": "^0.2.9",
"solc": "https://github.com/ethereum/solc-js", "solc": "https://github.com/ethereum/solc-js",
"standard": "^7.0.1", "standard": "^7.0.1",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment