Socket
Socket
Sign inDemoInstall

watch

Package Overview
Dependencies
3
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.17.1 to 0.18.0

.npmignore

5

cli.js

@@ -9,3 +9,3 @@ #!/usr/bin/env node

if(argv._.length === 0) {
console.error('Usage: watch <command> [...directory] [--wait=<seconds>] [--filter=<file>] [--ignoreDotFiles] [--ignoreUnreadable]')
console.error('Usage: watch <command> [...directory] [--wait=<seconds>] [--filter=<file>] [--interval=<seconds>] [--ignoreDotFiles] [--ignoreUnreadable]')
process.exit()

@@ -29,2 +29,5 @@ }

var waitTime = Number(argv.wait || argv.w)
if (argv.interval || argv.i) {
watchTreeOpts.interval = Number(argv.interval || argv.i || 0.2) * 1000.0;
}

@@ -31,0 +34,0 @@ if(argv.ignoreDotFiles || argv.d)

8

package.json

@@ -13,3 +13,3 @@ {

},
"version": "0.17.1",
"version": "0.18.0",
"homepage": "https://github.com/mikeal/watch",

@@ -28,5 +28,5 @@ "bugs": {

},
"engines": [
"node >=0.1.95"
],
"engines": {
"node": ">=0.1.95"
},
"main": "./main",

@@ -33,0 +33,0 @@ "dependencies": {

Sorry, the diff of this file is not supported yet

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