Skip to content

Commit

Permalink
Version 4.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gilamran committed May 17, 2020
1 parent a5f44b3 commit 10554b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# @gilamran/tsc-watch CHANGELOG

## v4.2.6 - 18/5/2020

Using number 15 instead of SIGTERM to support POSIX standard - (Thanks to @Asarew)

## v4.2.0 - 29/2/2020

Using readline instead of raw stdout buffer - (Thanks to @Janpot for the idea)
Expand Down
2 changes: 1 addition & 1 deletion lib/killer.js
Expand Up @@ -2,7 +2,7 @@ const psTree = require('ps-tree');
const spawn = require('cross-spawn');
const { exec } = require('child_process');

let KILL_SIGNAL = 'SIGTERM';
let KILL_SIGNAL = '15'; // SIGTERM
let hasPS = true;

const isWindows = process.platform === 'win32';
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "tsc-watch",
"version": "4.2.5",
"version": "4.2.6",
"description": "The TypeScript compiler with onSuccess command",
"scripts": {
"test": "mocha test/**/*.js"
Expand Down

0 comments on commit 10554b2

Please sign in to comment.