rev notes

This commit is contained in:
Michael Bradley, Jr 2018-08-17 12:32:58 -05:00
parent 46209bef65
commit 16856eadf0

View File

@ -1,10 +1,20 @@
/* global module process require */ /* global module process require */
// some packages, plugins, and presets referenced/required in this webpack // NOTE: some packages, plugins, and presets referenced/required in this webpack
// config are deps of embark and will be transitive dapp deps unless specified // config are deps of embark and will be transitive dapp deps unless specified
// in the dapp's own package.json, perhaps with a different version/range or // in the dapp's own package.json, perhaps with a different version/range or
// other specifier // other specifier
// NOTE: embark modifies process.env.NODE_PATH so that embark's own
// node_modules directory will be searched by node's require(). That allows an
// ejected version of this config, inside a dapp, to function correctly without
// embark being an explicit dependency of the dapp. However, webpack and babel
// do not directly support NODE_PATH, so in various parts of the config,
// modules such as plugins and presets must be resolved with
// require.resolve(). That is only necessary if a module is in embark's
// node_modules; if it's in the dapp's node_modules then it can be specified
// directly
// there's a bug in pkg clone-deep re: regex; for now use lodash.clonedeep // there's a bug in pkg clone-deep re: regex; for now use lodash.clonedeep
// see: https://github.com/jonschlinkert/clone-deep/pull/14 // see: https://github.com/jonschlinkert/clone-deep/pull/14
const cloneDeep = require('lodash.clonedeep'); const cloneDeep = require('lodash.clonedeep');