We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e3085 commit 94b40b8Copy full SHA for 94b40b8
package.json
@@ -4,7 +4,7 @@
4
"description": "Async query support for Grafana",
5
"main": "dist/index.js",
6
"scripts": {
7
- "dev": "watch 'npm run bundle' ./src",
+ "dev": "yarn bundle --watch --watch.onStart=\"yarn typecheck\"",
8
"build": "yarn clean && yarn typecheck && yarn bundle",
9
"bundle": "rollup -c rollup.config.ts",
10
"clean": "rimraf ./dist ./compiled",
rollup.config.ts
@@ -39,5 +39,8 @@ export default [
39
file: pkg.publishConfig.types,
40
format: 'es',
41
},
42
+ watch: {
43
+ exclude: './compiled/**',
44
+ },
45
46
];
0 commit comments