Skip to content

Commit

Permalink
build rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed May 26, 2017
1 parent 097f08a commit 0e539b5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dist/vee-validate.es2015.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vee-validate v2.0.0-rc.4
* vee-validate v2.0.0-rc.5
* (c) 2017 Abdelrahman Awad
* @license MIT
*/
Expand Down Expand Up @@ -1106,7 +1106,7 @@ const debounce = (callback, wait = 0, immediate = true) => {
const callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) callback(args);
if (callNow) callback(...args);
};
};

Expand Down Expand Up @@ -3326,7 +3326,7 @@ var index = {
Validator,
ErrorBag,
Rules,
version: '2.0.0-rc.4'
version: '2.0.0-rc.5'
};

export default index;
6 changes: 3 additions & 3 deletions dist/vee-validate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vee-validate v2.0.0-rc.4
* vee-validate v2.0.0-rc.5
* (c) 2017 Abdelrahman Awad
* @license MIT
*/
Expand Down Expand Up @@ -1177,7 +1177,7 @@ var debounce = function (callback, wait, immediate) {
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) { callback(args); }
if (callNow) { callback.apply(void 0, args); }
};
};

Expand Down Expand Up @@ -3565,7 +3565,7 @@ var index = {
Validator: Validator,
ErrorBag: ErrorBag,
Rules: Rules,
version: '2.0.0-rc.4'
version: '2.0.0-rc.5'
};

return index;
Expand Down
4 changes: 2 additions & 2 deletions dist/vee-validate.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vee-validate",
"version": "2.0.0-rc.4",
"version": "2.0.0-rc.5",
"description": "Simple Vue.js input validation plugin",
"main": "dist/vee-validate.js",
"typings": "types/index.d.ts",
Expand Down

0 comments on commit 0e539b5

Please sign in to comment.