diff2html-cli
Advanced tools
Comparing version 1.4.6-rc.2 to 1.4.6-rc.3
{ | ||
"name": "diff2html-cli", | ||
"version": "1.4.6-rc.2", | ||
"version": "1.4.6-rc.3", | ||
"homepage": "https://www.github.com/rtfpessoa/diff2html-cli", | ||
@@ -39,3 +39,3 @@ "description": "Fast Diff to colorized HTML", | ||
"scripts": { | ||
"style": "jscs src/*.js", | ||
"style": "eslint src/*.js", | ||
"coverage": "istanbul cover _mocha -- -u exports -R spec ./test/**/*", | ||
@@ -52,14 +52,17 @@ "test": "npm run style && npm run coverage", | ||
"dependencies": { | ||
"copy-paste": "^1.2.0", | ||
"diff2html": "^2.0.0-rc.5", | ||
"copy-paste": "^1.3.0", | ||
"diff2html": "^2.0.0-rc.9", | ||
"extend": "^3.0.0", | ||
"open": "0.0.5", | ||
"request": "^2.72.0", | ||
"yargs": "^4.7.1" | ||
"request": "^2.73.0", | ||
"yargs": "^4.8.0" | ||
}, | ||
"devDependencies": { | ||
"codacy-coverage": "^1.1.3", | ||
"istanbul": "^0.4.3", | ||
"jscs": "^3.0.3", | ||
"mocha": "^2.4.5" | ||
"eslint": "^3.0.1", | ||
"eslint-plugin-promise": "^1.3.2", | ||
"eslint-plugin-standard": "^1.3.2", | ||
"istanbul": "^0.4.4", | ||
"jscs": "^3.0.6", | ||
"mocha": "^2.5.3" | ||
}, | ||
@@ -66,0 +69,0 @@ "license": "MIT", |
# diff2html-cli | ||
[![Circle CI](https://circleci.com/gh/rtfpessoa/diff2html-cli.svg?style=svg)](https://circleci.com/gh/rtfpessoa/diff2html-cli) | ||
[![Codacy Code Badge](https://api.codacy.com/project/badge/grade/e6139937d72f40ed8b3920d53c74298a)](https://www.codacy.com/app/Codacy/diff2html-cli) | ||
[![Codacy Coverage Badge](https://api.codacy.com/project/badge/coverage/e6139937d72f40ed8b3920d53c74298a)](https://www.codacy.com/app/Codacy/diff2html-cli) | ||
[![Circle CI](https://circleci.com/gh/rtfpessoa/diff2html-cli.svg?style=svg)](https://circleci.com/gh/rtfpessoa/diff2html-cli) | ||
[![Dependency Status](https://dependencyci.com/github/rtfpessoa/diff2html/badge)](https://dependencyci.com/github/rtfpessoa/diff2html) | ||
@@ -7,0 +8,0 @@ [![npm](https://img.shields.io/npm/v/diff2html-cli.svg)](https://www.npmjs.com/package/diff2html-cli) |
@@ -9,3 +9,2 @@ /* | ||
(function() { | ||
var os = require('os'); | ||
@@ -50,3 +49,3 @@ var path = require('path'); | ||
gitArgs = gitArgsArr.map(function(arg) { | ||
return "\"" + arg + "\""; // wrap parameters | ||
return '"' + arg + '"'; // wrap parameters | ||
}).join(' '); | ||
@@ -148,3 +147,3 @@ } else { | ||
} else { | ||
log.error('Error: ' + message); | ||
log.error('Error: ' + response.statusCode); | ||
} | ||
@@ -155,3 +154,2 @@ }); | ||
module.exports.Diff2HtmlInterface = new Diff2HtmlInterface(); | ||
})(); |
@@ -9,3 +9,2 @@ /* | ||
(function() { | ||
var request = require('request'); | ||
@@ -37,3 +36,2 @@ | ||
module.exports.HttpUtils = new HttpUtils(); | ||
})(); |
@@ -9,3 +9,2 @@ /* | ||
(function() { | ||
function Logger() { | ||
@@ -23,3 +22,2 @@ } | ||
module.exports.Logger = new Logger(); | ||
})(); |
@@ -9,3 +9,2 @@ /* | ||
(function() { | ||
var childProcess = require('child_process'); | ||
@@ -65,3 +64,2 @@ var fs = require('fs'); | ||
module.exports.Utils = new Utils(); | ||
})(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18992
103
7
Updatedcopy-paste@^1.3.0
Updateddiff2html@^2.0.0-rc.9
Updatedrequest@^2.73.0
Updatedyargs@^4.8.0