Compare View

switch
from
...
to
 
Commits (3)

Changes

Showing 4 changed files Side-by-side Diff

... ... @@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
4 4  
5 5 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6 6  
  7 +#### [v2.2.15](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/compare/v2.2.13...v2.2.15)
  8 +
  9 +- Update package.json [`7631047`](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/commit/76310471874cd14ce596868ea2d4b72f03363802)
  10 +- Write pid.txt as a string [`57296a8`](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/commit/57296a819a1957c7622d59de53db1d01a454cb02)
  11 +
7 12 #### [v2.2.13](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/compare/v2.2.12...v2.2.13)
8 13  
  14 +> 22 August 2021
  15 +
9 16 - Bump eslint [`0803814`](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/commit/0803814d76309c76d2ba3fef4a00430cb0fc7ded)
10 17 - Add auto-changelog dep [`9f1aa6c`](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/commit/9f1aa6ce03749177423d827d2df27bfab7a65d77)
11 18 - Bump komodo-sdk@1.40.7 [`3e3764b`](https://gitlab.kodesumber.com/komodo/komodo-gw-st24/commit/3e3764b236d2309a66dce021845a802d59bb4619)
... ... @@ -2,7 +2,7 @@
2 2  
3 3 process.chdir(__dirname);
4 4 const fs = require('fs');
5   -fs.writeFileSync('pid.txt', process.pid);
  5 +fs.writeFileSync('pid.txt', process.pid.toString());
6 6  
7 7 const config = require('komodo-sdk/config');
8 8  
1 1 {
2 2 "name": "komodo-gw-st24",
3   - "version": "2.2.13",
  3 + "version": "2.2.15",
4 4 "lockfileVersion": 1,
5 5 "requires": true,
6 6 "dependencies": {
1 1 {
2 2 "name": "komodo-gw-st24",
3   - "version": "2.2.13",
  3 + "version": "2.2.15",
4 4 "description": "Komodo Gateway to ST24 XML-RPC",
5 5 "main": "index.js",
6 6 "scripts": {