broccoli-caching-writer
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -10,2 +10,5 @@ var fs = require('fs'); | ||
var canLink = testCanLink(); | ||
CachingWriter.prototype = Object.create(Writer.prototype); | ||
@@ -25,3 +28,2 @@ CachingWriter.prototype.constructor = CachingWriter; | ||
} | ||
this.canLink = testCanLink(); | ||
}; | ||
@@ -91,3 +93,3 @@ | ||
mkdirp.sync(path.dirname(destFile)); | ||
if (this.canLink) { | ||
if (canLink) { | ||
fs.linkSync(srcFile, destFile); | ||
@@ -94,0 +96,0 @@ } |
{ | ||
"name": "broccoli-caching-writer", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Broccoli plugin that allows simple caching (while still allowing N:N) based on the input tree hash.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
12065