Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Use @solidity-parser/parser (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke authored Apr 10, 2020
1 parent 007b2e9 commit 0085709
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require("fs");
const parser = require("solidity-parser-diligence");
const parser = require("@solidity-parser/parser");
const request = require("request-promise-native");
const path = require("path");
const read = require("fs-readdir-recursive");
Expand Down
2 changes: 1 addition & 1 deletion mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
},
"dependencies": {
"@ethersproject/abi": "^5.0.0-beta.146",
"@solidity-parser/parser": "^0.5.2",
"cli-table3": "^0.5.0",
"colors": "^1.1.2",
"ethereumjs-util": "6.2.0",
Expand All @@ -47,7 +48,6 @@
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sha1": "^1.1.1",
"solidity-parser-diligence": "^0.4.17",
"sync-request": "^6.0.0"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
},
"dependencies": {
"@ethersproject/abi": "^5.0.0-beta.146",
"@solidity-parser/parser": "^0.5.2",
"cli-table3": "^0.5.0",
"colors": "^1.1.2",
"ethereumjs-util": "6.2.0",
Expand All @@ -47,7 +48,6 @@
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sha1": "^1.1.1",
"solidity-parser-diligence": "^0.4.17",
"sync-request": "^6.0.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ elif [ "$TEST" = "colony" ]; then
SLUG="$TRAVIS_REPO_SLUG"
BRANCH="$TRAVIS_BRANCH"

if test -z "$TRAVIS_PULL_REQUEST_SLUG"; then
if [ -n "$TRAVIS_PULL_REQUEST_SLUG" ]; then
SLUG="$TRAVIS_PULL_REQUEST_SLUG"
fi

if test -z "$TRAVIS_PULL_REQUEST_BRANCH"; then
if [ -n "$TRAVIS_PULL_REQUEST_BRANCH" ]; then
BRANCH="$TRAVIS_PULL_REQUEST_BRANCH"
fi

Expand Down

0 comments on commit 0085709

Please sign in to comment.