remove other references to remix-core

pull/7/head
Iuri Matias 7 years ago
parent 2b099e40b8
commit 6f278cdbf5
  1. 19
      .circleci/config.yml
  2. 3
      .travis.yml
  3. 3
      README.md
  4. 1
      lerna.json
  5. 1
      remix-solidity/package.json

@ -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

@ -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:

@ -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

@ -1,7 +1,6 @@
{
"lerna": "2.10.2",
"packages": [
"remix-core",
"remix-debug",
"remix-debugger",
"remix-lib",

@ -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",

Loading…
Cancel
Save