Skip to content

Releases: hilleer/kill-port-process

v3.2.1

27 Nov 13:24
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.2.0...v3.2.1

v3.2.0

25 Sep 15:20
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.0...v3.2.0

v3.1.0

21 Jul 06:13
Compare
Choose a tag to compare
  • New feature: Kill processes gracefully (unix only). See README for usage details.

#32

v3.0.1

16 Oct 11:54
Compare
Choose a tag to compare

v3.0.0

20 Aug 07:23
Compare
Choose a tag to compare

Changes

  • Update tests run on node versions to be latest, 14, 12 and 10.
  • Update supported node versions to be >= 10
  • Fix devDependencies security vulnerabilities.

Pull requests

v2.3.0

24 Apr 06:53
Compare
Choose a tag to compare

Changes

  • Add node 14 to travis tests.
  • When run on windows, catch errors thrown when getting process id of port.

Pull requests

Required node version >= 6.0.0

16 Jan 15:27
Compare
Choose a tag to compare
  • Add required Node version in package.json engines to >= 6.0.0.

Refactoring

31 Dec 14:06
Compare
Choose a tag to compare
  • Refactor usage of child_process api, replacing exec with spawn.

Support node 6

23 Aug 13:48
Compare
Choose a tag to compare
  • Remove util.promisify to add support for node 6.

export/import/require fix

13 Aug 09:41
Compare
Choose a tag to compare
  • Fixed issue with commonjs having problems to import the default exported function. Instead of having to .default when requiring, the function is no more default-exported. Instead require like: const { killPortProcess } = require('kill-port-process');