Skip to content

Commit

Permalink
specify lerna from node_modules/.bin"
Browse files Browse the repository at this point in the history
  • Loading branch information
GregTheGreek committed Jul 22, 2020
1 parent 482870d commit a8090d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"version": "npm run build",
"postinstall": "npm run bootstrap",
"build": "npm run bootstrap && npm run tsc && webpack && cp -r ./dist ./packages/web3",
"publish": "lerna publish",
"bootstrap": "lerna bootstrap --hoist",
"tsc": "lerna run tsc",
"publish": "./node_modules/.bin/lerna publish",
"bootstrap": "./node_modules/.bin/lerna bootstrap --hoist",
"tsc": "./node_modules/.bin/lerna run tsc",
"lint": "jshint *.js packages",
"test": "mocha -R spec --require ts-node/register --grep E2E --invert",
"test:unit": "nyc --no-clean --silent _mocha -- -R spec --require ts-node/register --grep E2E --invert --exit",
"test:cov": "npm run cov:clean; npm run test:unit; npm run test:e2e:clients; npm run cov:merge_reports",
"dtslint": "lerna run dtslint",
"depcheck": "lerna exec dependency-check -- --missing --verbose .",
"dtslint": "./node_modules/.bin/lerna run dtslint",
"depcheck": "./node_modules/.bin/lerna exec dependency-check -- --missing --verbose .",
"bundlesize": "bundlesize || true",
"geth": "geth-dev-assistant --accounts 5 --tag stable --gasLimit 7000000",
"test:e2e:ganache": "./scripts/e2e.ganache.sh",
Expand Down

0 comments on commit a8090d4

Please sign in to comment.