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

dev-watch

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dev-watch - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

15

lib/modules/typescript.js

@@ -9,2 +9,3 @@ var watch = require('node-watch');

config.rootFile = config.rootFile ? config.rootFile : 'boot';
config.options = config.options ? config.options : {};
config.dest = config.dest ? config.dest : 'script.js';

@@ -18,2 +19,11 @@ }

cmd += ' --declaration';
var keys = Object.keys(config.options);
for(var k in keys)
{
cmd += ' --' + keys[k];
var value = config.options[keys[k]];
if(value !== null)
cmd += ' "' + value.toString() + '"';
}

@@ -72,5 +82,8 @@ return cmd;

browserify: true,
declarations : false
declarations : false,
options: {
outDir: "..."
}
}
}
}

2

package.json
{
"name": "dev-watch",
"version": "0.1.3",
"version": "0.1.4",
"description": "Watch files and compile/transform them for development purpose",

@@ -5,0 +5,0 @@ "main": "./lib/dev-watch",

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