From 975eaac853ea3071e5e180c59bc99e60c51c3191 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 1 Feb 2018 12:47:06 +0100 Subject: [PATCH] add setupremix script --- .travis.yml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dc03c584f3..142210d258 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: node_js node_js: - "7" script: - - npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run build + - npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run setupremix && npm run build - ./ci/browser_tests.sh deploy: - provider: script diff --git a/package.json b/package.json index 967adf8eec..2b2d65b988 100644 --- a/package.json +++ b/package.json @@ -139,6 +139,7 @@ ] }, "scripts": { + "setupremix": "npm run pullremix; npm run linkremixcore; npm run linkremixlib; npm run linkremixsolidity; npm run linkremixdebugger;", "pullremix": "mkdir remix; git clone https://github.com/ethereum/remix; cd ..", "linkremixcore": "cd node_modules && rm -rf remix-core && ln -s ../remix/remix-core remix-core && cd ..", "linkremixlib": "cd node_modules && rm -rf remix-lib && ln -s ../remix/remix-lib remix-lib && cd ..",