Skip to content

Commit

Permalink
remove lodash.filter and lodash.clone
Browse files Browse the repository at this point in the history
  • Loading branch information
xaksis committed Oct 12, 2018
1 parent 483a9a9 commit 424df60
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 17 deletions.
10 changes: 0 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@
"date-fns": "2.0.0-alpha.7",
"diacriticless": "1.0.1",
"lodash.assign": "^4.2.0",
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/types/boolean.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clone from 'lodash.clone';
import clone from 'lodash.clonedeep';
import def from './default';

const boolean = clone(def);
Expand Down
2 changes: 1 addition & 1 deletion src/components/types/date.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import format from 'date-fns/format';
import parse from 'date-fns/parse';
import isValid from 'date-fns/isValid';
import compareAsc from 'date-fns/compareAsc';
import clone from 'lodash.clone';
import clone from 'lodash.clonedeep';
import def from './default';

const date = clone(def);
Expand Down
2 changes: 1 addition & 1 deletion src/components/types/decimal.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clone from 'lodash.clone';
import clone from 'lodash.clonedeep';
import number from './number';

const decimal = clone(number);
Expand Down
2 changes: 1 addition & 1 deletion src/components/types/number.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clone from 'lodash.clone';
import clone from 'lodash.clonedeep';
import def from './default';

const number = clone(def);
Expand Down
2 changes: 1 addition & 1 deletion src/components/types/percentage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import clone from 'lodash.clone';
import clone from 'lodash.clonedeep';
import number from './number';

const percentage = clone(number);
Expand Down

0 comments on commit 424df60

Please sign in to comment.