Socket
Socket
Sign inDemoInstall

tsc-watch

Package Overview
Dependencies
Maintainers
1
Versions
90
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.26 to 1.0.27

3

CHANGELOG.md
# @gilamran/tsc-watch CHANGELOG
## v1.0.27 - 27/08/2018
* Fixed process termination (Thanks to @igrayson)
## v1.0.26 - 20/07/2018

@@ -4,0 +7,0 @@ * Fixed several issues with hadErrors check (Thanks to @tombousso)

9

lib/tsc-watch.js

@@ -6,4 +6,5 @@ #!/usr/bin/env node

const chalk = require('chalk');
const killer = require('./killer');
const nodeCleanup = require('node-cleanup');
const spawn = require('cross-spawn');
const killer = require('./killer');
const stripAnsi = require('strip-ansi');

@@ -195,3 +196,5 @@

tscProcess.on('exit', () => killAllProcesses());
process.on('SIGTERM', () => tscProcess.kill(0));
nodeCleanup((_exitCode, signal) => {
killAllProcesses();
tscProcess.kill(signal);
});
{
"name": "tsc-watch",
"version": "1.0.26",
"version": "1.0.27",
"description": "The TypeScript compiler with onSuccess command",

@@ -28,2 +28,3 @@ "scripts": {

"ps-tree": "^1.1.0",
"node-cleanup": "^2.1.2",
"strip-ansi": "^4.0.0"

@@ -30,0 +31,0 @@ },

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