Skip to content

Commit

Permalink
feat: update dependencies and force release
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmeinke committed Jul 11, 2017
1 parent ccf0501 commit 0047eaf
Show file tree
Hide file tree
Showing 3 changed files with 513 additions and 384 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
"description": "Get point data from SVG shapes. Convert point data to an SVG path",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015-subset-loose": "^1.0.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"jest": "^20.0.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"snazzy": "^7.0.0",
"standard": "^8.6.0",
"webpack": "^2.5.1"
"standard": "^10.0.2",
"webpack": "^3.1.0"
},
"jest": {
"testRegex": "(/test/.*|\\.(test|spec))\\.(js|jsx)$"
Expand Down
2 changes: 1 addition & 1 deletion src/valid.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const getErrors = shape => {
if (!Array.isArray(shape[ prop ])) {
errors.push(`${prop} prop must be of type array`)
}
} else if (typeof shape[ prop ] !== type) {
} else if (typeof shape[ prop ] !== type) { // eslint-disable-line valid-typeof
errors.push(`${prop} prop must be of type ${type}`)
}
}
Expand Down
Loading

0 comments on commit 0047eaf

Please sign in to comment.