From: Jason Stephenson Date: Sat, 10 Mar 2018 22:04:25 +0000 (-0500) Subject: Lp 1754894: Fix webpack development environment. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d4015f2a2d82735042c1ead52626eb7ae676717b;p=working%2FEvergreen.git Lp 1754894: Fix webpack development environment. Remove 'ignored: [/node_modules/]' from watchOptions in the webpack.config.js devOptions so that files are installed properly under build when using "npm run build." This fixes the 24-offline-all-assets.t test when using the webpack development environment. Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/web/js/ui/default/staff/webpack.config.js b/Open-ILS/web/js/ui/default/staff/webpack.config.js index 32e97b115d..5df2016e62 100644 --- a/Open-ILS/web/js/ui/default/staff/webpack.config.js +++ b/Open-ILS/web/js/ui/default/staff/webpack.config.js @@ -142,10 +142,7 @@ let devOptions = { ], watchOptions: { aggregateTimeout: 300, - poll: 1000, - ignored : [ - /node_modules/ - ] + poll: 1000 } };