assets-expander
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -0,1 +1,7 @@ | ||
0.3.1 / 2012-08-02 | ||
================== | ||
* Added direct path to vows dependency. | ||
* Added fs.existsSync fallback to get rid of 0.8 warnings. | ||
0.3.0 / 2012-07-09 | ||
@@ -2,0 +8,0 @@ ================== |
var fs = require('fs'), | ||
path = require('path'), | ||
yaml = require('../vendor/yaml'); | ||
yaml = require('../vendor/yaml'), | ||
existsSync = fs.existsSync || path.existsSync; | ||
@@ -49,3 +50,3 @@ var AssetsExpander = function(pathToYaml, options) { | ||
var expanded = path.join(root, asset) + '.' + options.type; | ||
if (path.existsSync(expanded)) matches.push(expanded); | ||
if (existsSync(expanded)) matches.push(expanded); | ||
} | ||
@@ -52,0 +53,0 @@ |
@@ -11,7 +11,10 @@ { | ||
}, | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"main": "index.js", | ||
"devDependencies": { | ||
"vows": "*" | ||
}, | ||
"engines": { | ||
"node": ">=0.6.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
Non-existent author
Supply chain riskThe package was published by an npm account that no longer exists.
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
27109
731
1