Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickcr committed Sep 13, 2015
1 parent 8a612e8 commit be15c5d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 46 deletions.
39 changes: 5 additions & 34 deletions .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,40 +54,11 @@
"<",
"<="
],
"disallowLeftStickedOperators": [
"?",
"+",
"-",
"/",
"*",
"=",
"==",
"===",
"!=",
"!==",
">",
">=",
"<",
"<="
],
"requireRightStickedOperators" : ["!"],
"disallowRightStickedOperators": [
"?",
"+",
"/",
"*",
":",
"=",
"==",
"===",
"!=",
"!==",
">",
">=",
"<",
"<="
],
"requireLeftStickedOperators" : [",", ";"],
"requireSpaceBeforeBinaryOperators" : true,
"requireSpacesInConditionalExpression" : true,
"requireSpaceAfterBinaryOperators" : true,
"requireSpacesInConditionalExpression" : true,
"disallowSpaceBeforePostfixUnaryOperators" : true,
"disallowSpaceAfterPrefixUnaryOperators" : ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators" : ["++", "--"],
"requireSpaceBeforeBinaryOperators" : ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
Expand Down
2 changes: 1 addition & 1 deletion lib/gulp-jscpd.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module.exports = function(opts) {
map.getPercentage() + '% (' + map.numberOfDuplication + ' lines) ' +
'duplicated lines out of ' + map.numberOfLines + ' total lines of code'
);
if(!opts.silent) {
if (!opts.silent) {
this.emit('error', new gutil.PluginError('gulp-jscpd', output, {
showStack: false
}));
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@
}
},
"dependencies": {
"gulp-util": "^3.0.4",
"through2": "^1.1.1",
"coffee-script": "^1.10.0",
"gulp-util": "^3.0.6",
"jscpd": "^0.4.2",
"coffee-script": "^1.9.2",
"through2": "^2.0.0",
"winston": "^1.0.1"
},
"devDependencies": {
"mocha": "^2.2.4",
"mocha-lcov-reporter": "^0.0.2",
"blanket": "^1.1.6",
"coveralls": "^2.11.2",
"chai": "^2.3.0",
"jscs": "^1.13.1",
"gulp": "^3.8.11",
"gulp-jscs": "^1.6.0"
"blanket": "^1.1.7",
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-jscs": "^2.0.0",
"jscs": "^2.1.1",
"mocha": "^2.3.2",
"mocha-lcov-reporter": "^0.0.2"
},
"engines": {
"node": ">=0.10.0"
Expand Down

0 comments on commit be15c5d

Please sign in to comment.