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

sherpa

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sherpa - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json

@@ -5,3 +5,3 @@ {

"description": "Watch files in a directory for changes/updates",
"version": "0.1.2",
"version": "0.1.3",
"homepage": "http://github.com/kalisjoshua/sherpa",

@@ -8,0 +8,0 @@ "repository": {

/*jshint laxcomma:true strict:false*/
/*globals module require*/
/*globals console module require*/
var fs = require("fs")
, path = require("path")
, util = require('util');
, path = require("path");
function puts(error, stdout/*, stderr*/) {
util.puts(stdout);
}
function walk (start, callback) {

@@ -53,3 +48,3 @@ fs.lstat(start, function (err, stat) {

puts(null, "Watching " + root + " every " + opts.interval / 1000 + " seconds for changes...");
console.log("Watching", root, "every", opts.interval / 1000, "seconds for changes...");

@@ -56,0 +51,0 @@ walk(root, function (err, dir, files) {

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