Skip to content

Commit

Permalink
Use lodash.merge instead
Browse files Browse the repository at this point in the history
  • Loading branch information
ianobermiller committed Jan 27, 2016
1 parent 4e39ffe commit da3b2c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"karma-phantomjs-shim": "^1.0.0",
"karma-sinon-chai": "^1.0.0",
"karma-webpack": "^1.7.0",
"lodash": "^3.9.3",
"lodash.merge": "^4.0.2",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"nodemon": "^1.4.1",
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.minified.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var webpack = require('webpack');
var _ = require('lodash');
var merge = require('lodash.merge');

module.exports = _.merge({}, require('./webpack.config.js'), {
module.exports = merge({}, require('./webpack.config.js'), {
output: {
filename: 'radium.min.js'
},
Expand Down

0 comments on commit da3b2c6

Please sign in to comment.