Be aware that Object.assign(target, source) has a side effect.
It copies properties from a source object to a target object.

Use Object.assign({}, source1, source2) instead to avoid side effects.
This commit is contained in:
Aya Morisawa 2017-04-02 02:45:59 +09:00
parent 530912b38b
commit 9381a84e97

View file

@ -21,7 +21,7 @@ const env = process.env.NODE_ENV;
const isProduction = env === 'production';
module.exports = (Object as any).entries(languages).map(([lang, locale]) => {
locale = Object.assign(native, locale);
locale = Object.assign({}, native, locale);
const pack /*: webpack.Configuration ← fuck wrong type definition!!! */ = {
name: lang,