Socket
Socket
Sign inDemoInstall

fb-watchman

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fb-watchman - npm Package Compare versions

Comparing version 1.9.0 to 1.9.1

11

index.js

@@ -169,3 +169,3 @@ /* Copyright 2014-present Facebook, Inc.

}
console.log('Watchman: ', error.message);
console.error('Watchman: ', error.message);
self.emit('error', error);

@@ -191,3 +191,3 @@ }

stderr.push(data);
console.log(data);
console.error(data);
});

@@ -198,7 +198,8 @@ proc.on('error', function(error) {

proc.on('close', function (code) {
proc.on('close', function (code, signal) {
if (code !== 0) {
spawnError(new Error(
self.watchmanBinaryPath + args.join(' ') +
' returned with exit code ' + code + ' ' + stderr.join('')));
self.watchmanBinaryPath + ' ' + args.join(' ') +
' returned with exit code=' + code + ', signal=' +
signal + ', stderr= ' + stderr.join('')));
return;

@@ -205,0 +206,0 @@ }

{
"name": "fb-watchman",
"version": "1.9.0",
"version": "1.9.1",
"description": "Bindings for the Watchman file watching service",

@@ -33,4 +33,4 @@ "main": "index.js",

"dependencies": {
"bser": "^1.0.2"
"bser": "^1.0.3"
}
}
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