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

tsc-watch

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsc-watch - npm Package Compare versions

Comparing version 1.0.15 to 1.0.16

3

CHANGELOG.md
# @gilamran/tsc-watch CHANGELOG
## v1.0.16 - 27/01/2018
* Fixed stdout coloring issues on Mac (Thanks to @jonaskello)
## v1.0.15 - 18/01/2018

@@ -4,0 +7,0 @@ * Added `--onFailure` argument

8

lib/tsc-watch.js

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

return chalk.white(line);
return line;
}

@@ -66,3 +66,3 @@

const parts = fullCommand.split(' ').filter(a => a.length > 0);
return spawn(parts[0], parts.slice(1), {stdio: 'inherit'})
return spawn(parts[0], parts.slice(1), { stdio: 'inherit' })
}

@@ -158,3 +158,3 @@ }

});
});
});
}

@@ -187,3 +187,3 @@ });

const Signal = {
send: typeof process.send === 'function' ? (...e) => process.send(...e) : () => {},
send: typeof process.send === 'function' ? (...e) => process.send(...e) : () => { },
_successStr: 'first_success',

@@ -190,0 +190,0 @@ emitSuccess: () => {

{
"name": "tsc-watch",
"version": "1.0.15",
"version": "1.0.16",
"description": "The TypeScript compiler with onSuccess command",

@@ -5,0 +5,0 @@ "scripts": {

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