-
-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0317/date validation adjustment (#344)
- Loading branch information
1 parent
249b15c
commit f8a1e70
Showing
7 changed files
with
67 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
.DS_Store | ||
.idea/ | ||
.npm-debug.log | ||
node_modules | ||
spec/checklist.md | ||
coverage | ||
.vscode/ | ||
coverage/ | ||
node_modules/ | ||
NOTES.md | ||
npm-debug.log | ||
.idea | ||
.vscode | ||
sandbox | ||
notes.md | ||
RELEASE.md | ||
sandbox/ | ||
spec/checklist.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "validatorjs", | ||
"description": "Validation library inspired by Laravel's Validator", | ||
"version": "3.16.1", | ||
"version": "3.17.0", | ||
"author": "David <[email protected]>", | ||
"contributors": [ | ||
{ | ||
|
@@ -70,9 +70,9 @@ | |
"lint": "eslint \"./src/**/*.js\"", | ||
"lint:spec": "eslint \"./spec/**/*.js\" --rule 'no-redeclare: off'", | ||
"lint:fix": "eslint \"./src/**/*.js\" --fix", | ||
"test-node": "node node_modules/mocha/bin/mocha spec --slow 500 --reporter mocha-better-spec-reporter", | ||
"test-node:watch": "node node_modules/mocha/bin/mocha --watch spec --slow 500 --reporter mocha-better-spec-reporter", | ||
"test-browser": "grunt dist && node node_modules/karma/bin/karma start --single-run", | ||
"test": "npm run test-node && npm run test-browser" | ||
"test:node": "node node_modules/mocha/bin/mocha spec --slow 500 --reporter mocha-better-spec-reporter", | ||
"test:node-watch": "node node_modules/mocha/bin/mocha --watch spec --slow 500 --reporter mocha-better-spec-reporter", | ||
"test:browser": "grunt dist && node node_modules/karma/bin/karma start --single-run", | ||
"test": "npm run test:node && npm run test:browser" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters