Socket
Socket
Sign inDemoInstall

chokidar

Package Overview
Dependencies
71
Maintainers
2
Versions
104
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.0.3

5

CHANGELOG.md

@@ -0,3 +1,6 @@

# Chokidar 1.0.3 (4 June 2015)
* Fix race issue with `alwaysStat` option and removed files
# Chokidar 1.0.2 (30 May 2015)
* Fix bug with absolute paths and ENAMETOOLONG error.
* Fix bug with absolute paths and ENAMETOOLONG error

@@ -4,0 +7,0 @@ # Chokidar 1.0.1 (8 April 2015)

3

index.js

@@ -145,2 +145,5 @@ 'use strict';

fs.stat(path, function(error, stats) {
// Suppress event when fs.stat fails, to avoid sending undefined 'stat'
if (error || !stats) return;
args.push(stats);

@@ -147,0 +150,0 @@ emitEvent();

{
"name": "chokidar",
"description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.",
"version": "1.0.2",
"version": "1.0.3",
"keywords": [

@@ -6,0 +6,0 @@ "fs",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc