broccoli-kitchen-sink-helpers
Advanced tools
Comparing version 0.2.0 to 0.2.1
# master | ||
# 0.2.1 | ||
* Make readdir ordering deterministic | ||
# 0.2.0 | ||
@@ -4,0 +8,0 @@ |
@@ -44,3 +44,3 @@ var fs = require('fs') | ||
try { | ||
entries = fs.readdirSync(fullPath) | ||
entries = fs.readdirSync(fullPath).sort() | ||
} catch (err) { | ||
@@ -121,3 +121,3 @@ console.warn('Warning: Failed to read directory ' + fullPath) | ||
mkdirp.sync(dest) | ||
var entries = fs.readdirSync(src) | ||
var entries = fs.readdirSync(src).sort() | ||
for (var i = 0; i < entries.length; i++) { | ||
@@ -124,0 +124,0 @@ // Set _mkdirp to false when recursing to avoid extra mkdirp calls. |
{ | ||
"name": "broccoli-kitchen-sink-helpers", | ||
"description": "Collection of helpers that need to be extracted into separate packages", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"author": "Jo Liss <joliss42@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
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
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
10033