Browse Source

Merge pull request #8976 from Snuffleupagus/webpack-simpler-node-polyfills-disable

Simplify the disabling of Node polyfills, in `gulpfile.js`, since we're now using Webpack 3.x
Tim van der Meij 8 years ago committed by GitHub
parent
commit
3717757b39
  1. 12
      gulpfile.js

12
gulpfile.js

@ -168,17 +168,7 @@ function createWebpackConfig(defines, output) {
}, },
// Avoid shadowing actual Node.js variables with polyfills, by disabling // Avoid shadowing actual Node.js variables with polyfills, by disabling
// polyfills/mocks - https://webpack.js.org/configuration/node/ // polyfills/mocks - https://webpack.js.org/configuration/node/
node: { node: false,
console: false,
global: false,
process: false,
__filename: false,
__dirname: false,
Buffer: false,
setImmediate: false,
},
// If we upgrade to Webpack 3.0+, the above can be replaced with:
// node: false,
}; };
} }

Loading…
Cancel
Save