Skip to content

Commit

Permalink
Merge pull request #5 from gucong3000/greenkeeper/eslint-4.1.0
Browse files Browse the repository at this point in the history
Update eslint to the latest version 馃殌
  • Loading branch information
gucong3000 committed Jun 26, 2017
2 parents 672edac + eaeb2a5 commit 5ac85cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion lib/opt-validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function testRemotesFile (url, prop, type) {
}

function fixurl (url) {
url = url && /^(https?:)?(\/\/[^\/]+\/.+)\/?$/.exec(url);
url = url && /^(https?:)?(\/\/[^/]+\/.+)\/?$/.exec(url);
if (url) {
return (url[1] || 'https:') + url[2];
}
Expand Down Expand Up @@ -97,4 +97,5 @@ function validation (options) {
});

}

module.exports = validation;
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
"url": "https://github.com/gucong3000/postcss-pie/issues"
},
"dependencies": {
"postcss": "^6.0.1",
"postcss": "^6.0.3",
"request": "^2.81.0"
},
"description": "makes IE capable of rendering several of the most useful CSS3 decoration features.",
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint": "^4.1.1",
"got": "^7.0.0",
"mocha": "^3.4.1",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"sinon": "^2.3.1"
"sinon": "^2.3.5"
},
"homepage": "https://github.com/gucong3000/postcss-pie#readme",
"keywords": [
Expand Down

0 comments on commit 5ac85cd

Please sign in to comment.