fix watch mode

This commit is contained in:
Anton Lavrenov
2019-01-19 21:29:52 -05:00
parent 76299cd07a
commit 521070cb05
5 changed files with 54 additions and 1325 deletions

View File

@@ -13,7 +13,7 @@
"module": "konva.esm.js",
"typings": "./konva.d.ts",
"scripts": {
"start": "gulp",
"start": "npm run watch & gulp",
"lint": "gulp lint",
"build": "npm run compile && gulp build",
"full-build": "npm run build && npm t",
@@ -21,7 +21,8 @@
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
"tsc": "tsc || echo \"tsc faild for some file(s).\"",
"rollup": "rollup -c",
"compile": "npm run tsc && npm run rollup"
"compile": "npm run tsc && npm run rollup",
"watch": "rollup -c -w"
},
"devDependencies": {
"chai": "4.1.2",