aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas
diff options
context:
space:
mode:
Diffstat (limited to 'packages/json-schemas')
-rw-r--r--packages/json-schemas/README.md6
-rw-r--r--packages/json-schemas/package.json3
2 files changed, 8 insertions, 1 deletions
diff --git a/packages/json-schemas/README.md b/packages/json-schemas/README.md
index 9166f50c1..754ce4e95 100644
--- a/packages/json-schemas/README.md
+++ b/packages/json-schemas/README.md
@@ -49,6 +49,12 @@ yarn install
yarn build
```
+or
+
+```bash
+yarn build:watch
+```
+
### Lint
```bash
diff --git a/packages/json-schemas/package.json b/packages/json-schemas/package.json
index 017dddd1d..f7a291ec2 100644
--- a/packages/json-schemas/package.json
+++ b/packages/json-schemas/package.json
@@ -5,6 +5,7 @@
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
+ "build:watch": "tsc -w",
"lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'",
"test": "run-s clean build run_mocha",
"test:circleci": "yarn test",
@@ -40,6 +41,6 @@
"npm-run-all": "^4.1.2",
"shx": "^0.2.2",
"tslint": "5.8.0",
- "typescript": "~2.6.1"
+ "typescript": "2.7.1"
}
}