diff options
author | cwm <chriswmartin@protonmail.com> | 2017-12-10 15:22:15 -0600 |
---|---|---|
committer | cwm <chriswmartin@protonmail.com> | 2017-12-10 15:22:15 -0600 |
commit | 072ab191cc47692bad1145a26aa27912aeefb12f (patch) | |
tree | d217dc63f36554c7271b1c68a90d8d044640a732 /config/webpack/shared.js | |
parent | eec5d350fdb94fa44c6938ca059166ff3e3e67b3 (diff) | |
parent | 26c9b9fa276fd629789fd06f65a5d698b182f67a (diff) |
pulled master, moved locale entry to new location
Diffstat (limited to 'config/webpack/shared.js')
-rw-r--r-- | config/webpack/shared.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/config/webpack/shared.js b/config/webpack/shared.js index e4b057ffb..35b9bbd1c 100644 --- a/config/webpack/shared.js +++ b/config/webpack/shared.js @@ -1,13 +1,12 @@ // Note: You must restart bin/webpack-dev-server for changes to take effect const webpack = require('webpack'); -const { basename, join, resolve } = require('path'); +const { join, resolve } = require('path'); const { sync } = require('glob'); const ExtractTextPlugin = require('extract-text-webpack-plugin'); const ManifestPlugin = require('webpack-manifest-plugin'); -const extname = require('path-complete-extname'); const { env, settings, core, flavours, output, loadersDir } = require('./configuration.js'); -const localePackPaths = require('./generateLocalePacks'); +const localePacks = require('./generateLocalePacks'); function reducePacks (data, into = {}) { if (!data.pack) { @@ -48,11 +47,7 @@ function reducePacks (data, into = {}) { module.exports = { entry: Object.assign( { locales: resolve('app', 'javascript', 'locales') }, - localePackPaths.reduce((map, entry) => { - const localMap = map; - localMap[basename(entry, extname(entry, extname(entry)))] = resolve(entry); - return localMap; - }, {}), + localePacks, reducePacks(core), Object.keys(flavours).reduce((map, entry) => reducePacks(flavours[entry], map), {}) ), |