diff options
Diffstat (limited to 'packages/deployer')
-rw-r--r-- | packages/deployer/README.md | 6 | ||||
-rw-r--r-- | packages/deployer/package.json | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/packages/deployer/README.md b/packages/deployer/README.md index 4293f82d4..f4e688fd7 100644 --- a/packages/deployer/README.md +++ b/packages/deployer/README.md @@ -60,6 +60,12 @@ yarn install yarn build ``` +or + +```bash +yarn build:watch +``` + ### Lint ```bash diff --git a/packages/deployer/package.json b/packages/deployer/package.json index be940f164..1a9495d24 100644 --- a/packages/deployer/package.json +++ b/packages/deployer/package.json @@ -5,6 +5,7 @@ "main": "lib/src/index.js", "types": "lib/src/index.d.ts", "scripts": { + "build:watch": "tsc -w", "build": "yarn clean && copyfiles 'test/fixtures/contracts/**/*' src/solc/solc_bin/* ./lib && tsc", "test": "npm run build; mocha lib/test/*_test.js", "compile": "npm run build; node lib/src/cli.js compile", @@ -29,7 +30,7 @@ "devDependencies": { "copyfiles": "^1.2.0", "types-bn": "^0.0.1", - "typescript": "~2.6.1", + "typescript": "2.7.1", "web3-typescript-typings": "^0.9.8" }, "dependencies": { |