summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/internals/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'front/odiparpack/internals/config.js')
-rw-r--r--front/odiparpack/internals/config.js57
1 files changed, 57 insertions, 0 deletions
diff --git a/front/odiparpack/internals/config.js b/front/odiparpack/internals/config.js
new file mode 100644
index 0000000..ffff2f0
--- /dev/null
+++ b/front/odiparpack/internals/config.js
@@ -0,0 +1,57 @@
+const { resolve } = require('path');
+const pullAll = require('lodash/pullAll');
+const uniq = require('lodash/uniq');
+
+const ReactBoilerplate = {
+ // This refers to the react-boilerplate version this project is based on.
+ version: '3.6.0',
+
+ /**
+ * The DLL Plugin provides a dramatic speed increase to webpack build and hot module reloading
+ * by caching the module metadata for all of our npm dependencies. We enable it by default
+ * in development.
+ *
+ *
+ * To disable the DLL Plugin, set this value to false.
+ */
+ dllPlugin: {
+ defaults: {
+ /**
+ * we need to exclude dependencies which are not intended for the browser
+ * by listing them here.
+ */
+ exclude: [
+ '@date-io/date-fns',
+ 'chalk',
+ 'compression',
+ 'cross-env',
+ 'express',
+ 'ip',
+ 'minimist',
+ 'sanitize.css',
+ ],
+
+ /**
+ * Specify any additional dependencies here. We include core-js and lodash
+ * since a lot of our dependencies depend on them and they get picked up by webpack.
+ */
+ include: ['core-js', 'eventsource-polyfill', 'babel-polyfill', 'lodash'],
+
+ // The path where the DLL manifest and bundle will get built
+ path: resolve('../node_modules/react-boilerplate-dlls'),
+ },
+
+ entry(pkg) {
+ const dependencyNames = Object.keys(pkg.dependencies);
+ const exclude = pkg.dllPlugin.exclude || ReactBoilerplate.dllPlugin.defaults.exclude;
+ const include = pkg.dllPlugin.include || ReactBoilerplate.dllPlugin.defaults.include;
+ const includeDependencies = uniq(dependencyNames.concat(include));
+
+ return {
+ reactBoilerplateDeps: pullAll(includeDependencies, exclude),
+ };
+ },
+ },
+};
+
+module.exports = ReactBoilerplate;