From e34684181436d32014ef7aca6cbb6432c1cfdcf5 Mon Sep 17 00:00:00 2001 From: Alexander Rose <alex.rose@rcsb.org> Date: Thu, 5 Apr 2018 10:33:37 -0700 Subject: [PATCH] more specific path for watching extra webpack files --- webpack.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 50bbc097e..8ace2768d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -17,7 +17,11 @@ module.exports = { }, plugins: [ new ExtraWatchWebpackPlugin({ - files: [ './**/*.vert', './**/*.frag', './**/*.glsl' ], + files: [ + './build/node_modules/**/*.vert', + './build/node_modules/**/*.frag', + './build/node_modules/**/*.glsl' + ], }), ], } \ No newline at end of file -- GitLab