* development: Fix lint error Fix documentation links in some READMEs Fix relative link Add step to publishing that upload staging doc jsons, deploys staging website, opens every docs page and asks the dev to confirm that each one renders properly before publishing Fix web3Wrapper build command Add top-level `yarn lerna:stage_docs` to upload docJsons to the staging S3 bucket for all packages with a docs page Added a detailed description of `renameOverloadedMethods` (special thanks to @fabioberger). Updated Javascript styles in the Abi-Gen and Utils packages, around support for function overloading. Updated deployer to accept a list of contract directories as input. Contract directories are namespaced to a void clashes. Also in this commit is a fix for overloading contract functions. Refactor publish script to have it's main execution body be lean and discrete steps # Conflicts: # packages/contracts/package.json # packages/deployer/package.json
39 lines
1.6 KiB
JSON
39 lines
1.6 KiB
JSON
{
|
|
"private": true,
|
|
"name": "0x-monorepo",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "lerna run --parallel build:watch",
|
|
"testrpc": "testrpc -p 8545 --networkId 50 -m \"${npm_package_config_mnemonic}\"",
|
|
"prettier": "prettier --write '**/*.{ts,tsx,json,md}' --config .prettierrc",
|
|
"prettier:ci": "prettier --list-different '**/*.{ts,tsx,json,md}' --config .prettierrc",
|
|
"report_coverage": "lcov-result-merger 'packages/*/coverage/lcov.info' | coveralls",
|
|
"test:installation": "node ./packages/monorepo-scripts/lib/test_installation.js",
|
|
"lerna:install": "yarn install",
|
|
"lerna:run": "lerna run",
|
|
"lerna:test": "lerna run test",
|
|
"lerna:clean": "lerna run clean",
|
|
"lerna:build": "lerna run build",
|
|
"lerna:rebuild": "run-s lerna:clean lerna:build",
|
|
"lerna:publish": "run-s lerna:install lerna:rebuild script:publish",
|
|
"lerna:publish:dry": "run-s lerna:install lerna:rebuild script:publish:dry",
|
|
"lerna:stage_docs": "lerna run docs:stage",
|
|
"script:publish": "node ./packages/monorepo-scripts/lib/publish.js",
|
|
"script:publish:dry": "IS_DRY_RUN=true yarn script:publish"
|
|
},
|
|
"config": {
|
|
"mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic"
|
|
},
|
|
"devDependencies": {
|
|
"async-child-process": "^1.1.1",
|
|
"coveralls": "^3.0.0",
|
|
"ethereumjs-testrpc": "^6.0.3",
|
|
"lcov-result-merger": "^2.0.0",
|
|
"lerna": "^2.5.1",
|
|
"npm-run-all": "^4.1.2",
|
|
"prettier": "^1.11.1"
|
|
}
|
|
}
|