Skip to content

Commit

Permalink
feat(size): use dequal instead of fast-deep-equal because it is smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Mar 7, 2019
1 parent c18bc78 commit ea58204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"fast-deep-equal": "^2.0.1"
"dequal": "^1.0.0"
},
"devDependencies": {
"jest-in-case": "^1.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import deepEqual from 'fast-deep-equal'
import deepEqual from 'dequal'

function checkDeps(deps) {
if (!deps || !deps.length) {
Expand Down

0 comments on commit ea58204

Please sign in to comment.