Skip to content

Commit

Permalink
rm extra files
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Apr 20, 2016
1 parent bd63c4f commit 83c6a3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/array.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ inherits(ArraySchema, MixedSchema, {
},
ensure: function ensure() {
return this.default([]).transform(function (val) {
return val != null ? [] : [].concat(val);
return val == null ? [] : [].concat(val);
});
},
compact: function compact(rejector) {
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"build": "babel src --out-dir lib && npm run toc",
"release": "release"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/jquense/yup.git"
Expand Down
Binary file added yup-0.17.3.tgz
Binary file not shown.

0 comments on commit 83c6a3f

Please sign in to comment.