Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
Use modular Lodash imports (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
billyjanitsch authored and shellscape committed Mar 1, 2018
1 parent 05c2c87 commit 8d160d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const isPlainObject = require('lodash.isplainobject');
const isPlainObject = require('lodash/isPlainObject');
const TimeFixPlugin = require('time-fix-plugin');
const weblog = require('webpack-log');

Expand Down
2 changes: 1 addition & 1 deletion lib/options.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const path = require('path');
const merge = require('lodash.merge');
const merge = require('lodash/merge');
const weblog = require('webpack-log');
const MultiCompiler = require('webpack/lib/MultiCompiler');
const webpackPackage = require('webpack/package.json');
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
"killable": "^1.0.0",
"koa": "^2.4.1",
"koa-webpack": "^3.0.0",
"lodash.isplainobject": "^4.0.6",
"lodash.merge": "^4.6.1",
"lodash": "^4.17.5",
"loud-rejection": "^1.6.0",
"meow": "^4.0.0",
"nanobus": "^4.3.1",
Expand Down

0 comments on commit 8d160d8

Please sign in to comment.