Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

broccoli-kitchen-sink-helpers

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-kitchen-sink-helpers - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

4

CHANGELOG.md
# master
# 0.2.1
* Make readdir ordering deterministic
# 0.2.0

@@ -4,0 +8,0 @@

4

index.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc