commit 84c432a0632f89b317adffb4ebe7fdf1f4b55873 parent d1b98c9b2e8816dbed6b5bd652bdcbec7deeeb9c Author: David Schnurr <dschnurr@findthebest.com> Date: Sun, 20 Sep 2015 11:42:51 -0700 Reference case-sesnsitive global.WATCH for webpack config Diffstat:
| M | tools/bundle.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/bundle.js b/tools/bundle.js @@ -26,7 +26,7 @@ export default async () => new Promise((resolve, reject) => { console.log(stats.toString(config[0].stats)); - if (++bundlerRunCount === (global.watch ? config.length : 1)) { + if (++bundlerRunCount === (global.WATCH ? config.length : 1)) { return resolve(); } }