From de2fddfccc117beccc94612e0e7bd0ac664517cc Mon Sep 17 00:00:00 2001 From: Sebastian Gerske Date: Wed, 10 Oct 2018 13:35:24 +0200 Subject: [PATCH] added auto linking in case of local development --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4327329..eb73622 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,9 @@ "test": "mocha", "test:cover": "nyc mocha", "lint": "tslint -c tslint.json 'src/**/*.ts'", - "start": "tsc -w", + "start": "npm link @oceanprotocol/keeper-contracts && npm run build:watch", "build": "npm run lint && tsc", + "build:watch": "tsc -w", "doc": "typedoc --mode modules --out ./doc/ src/", "release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive", "release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",