Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Commit f1e3683

Browse files
committed
Update dependencies of generator
1 parent bd996e5 commit f1e3683

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

generators/endpoint/promptingHelpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ helper.validateEndpoint = function (value) {
4343

4444
helper.validateParams = function (value) {
4545
var returnvalue = chalk.red('Please enter valid path parameters with a leading `/`. See http://hapijs.com/api#path-parameters');
46-
var validChars = value.match(/[^a-zA-Z0-9()\/,!.~$&'\-_*+;=:@{}]+/g);
46+
var validChars = value.match(/[^a-zA-Z0-9()/,!.~$&'\-_*+;=:@{}]+/g);
4747
var leadingSlash = value.match(/^\//);
4848
if ((!validChars && leadingSlash) || value === '') {
4949
returnvalue = true;

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
"yosay": "1.2.1"
3636
},
3737
"devDependencies": {
38-
"codeclimate-test-reporter": "^0.4.0",
39-
"eslint": "3.8.0",
38+
"codeclimate-test-reporter": "0.4.0",
39+
"eslint": "3.11.0",
4040
"eslint-config-xo-space": "0.15.0",
4141
"gulp": "3.9.1",
4242
"gulp-coveralls": "0.1.4",
4343
"gulp-eslint": "3.0.1",
44-
"gulp-exclude-gitignore": "1.0.0",
44+
"gulp-exclude-gitignore": "1.1.1",
4545
"gulp-istanbul": "1.1.1",
4646
"gulp-line-ending-corrector": "1.0.1",
4747
"gulp-mocha": "3.0.1",

0 commit comments

Comments
 (0)