Comparing version 1.0.16 to 1.0.17
# @gilamran/tsc-watch CHANGELOG | ||
## v1.0.17 - 27/01/2018 | ||
* Terminating typescript on SIGTERM event (Thanks to @amir-arad) | ||
## v1.0.16 - 27/01/2018 | ||
@@ -4,0 +7,0 @@ * Fixed stdout coloring issues on Mac (Thanks to @jonaskello) |
@@ -195,1 +195,2 @@ #!/usr/bin/env node | ||
tscProcess.on('exit', () => Promise.all([killAllSuccessProcesses(), killFailureProcess()])); | ||
process.on('SIGTERM', () => tscProcess.kill(0)); |
{ | ||
"name": "tsc-watch", | ||
"version": "1.0.16", | ||
"version": "1.0.17", | ||
"description": "The TypeScript compiler with onSuccess command", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -19,3 +19,3 @@ # The TypeScript compiler with `--watch` and a new onSuccess argument | ||
```sh | ||
tsc-watch server.ts --outDir ./dist --onSuccess "node ./dist/server.ts" --onFailure "echo Beep! Compilation Failed" | ||
tsc-watch server.ts --outDir ./dist --onSuccess "node ./dist/server.js" --onFailure "echo Beep! Compilation Failed" | ||
``` | ||
@@ -22,0 +22,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15888
344