diff2html
Advanced tools
Comparing version 2.0.0-beta7 to 2.0.0-beta8
{ | ||
"name": "diff2html", | ||
"version": "2.0.0-beta7", | ||
"version": "2.0.0-beta8", | ||
"homepage": "http://rtfpessoa.github.io/diff2html/", | ||
@@ -37,3 +37,3 @@ "description": "Fast Diff to colorized HTML", | ||
}, | ||
"preferGlobal": "true", | ||
"preferGlobal": true, | ||
"scripts": { | ||
@@ -47,14 +47,14 @@ "release": "bash release.sh", | ||
"dependencies": { | ||
"diff": "^2.2.1", | ||
"nunjucks": "^2.3.0" | ||
"diff": "^2.2.2", | ||
"nunjucks": "^2.4.1" | ||
}, | ||
"devDependencies": { | ||
"clean-css": "^3.4.9", | ||
"clean-css": "^3.4.10", | ||
"codacy-coverage": "^1.1.3", | ||
"fast-html-parser": "^1.0.1", | ||
"istanbul": "^0.4.2", | ||
"jscs": "^2.10.1", | ||
"jscs": "^2.11.0", | ||
"mocha": "^2.4.5", | ||
"uglifyjs": "^2.4.10", | ||
"webpack": "^1.12.13" | ||
"webpack": "^1.12.14" | ||
}, | ||
@@ -61,0 +61,0 @@ "license": "MIT", |
@@ -42,5 +42,6 @@ /* | ||
if (oldFilename && newFilename && oldFilename !== newFilename && !isDeletedName(newFilename)) { | ||
if (oldFilename && newFilename && oldFilename !== newFilename | ||
&& !isDevNullName(oldFilename) && !isDevNullName(newFilename)) { | ||
return oldFilename + ' -> ' + newFilename; | ||
} else if (newFilename && !isDeletedName(newFilename)) { | ||
} else if (newFilename && !isDevNullName(newFilename)) { | ||
return newFilename; | ||
@@ -136,4 +137,4 @@ } else if (oldFilename) { | ||
function isDeletedName(name) { | ||
return name === 'dev/null'; | ||
function isDevNullName(name) { | ||
return name.indexOf('dev/null') !== -1; | ||
} | ||
@@ -140,0 +141,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
414444
7027
Updateddiff@^2.2.2
Updatednunjucks@^2.4.1