diff --git a/ChangeLog.md b/ChangeLog.md index babe498..779f569 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [0.2.19](https://github.com/billchurch/WebSSH2/compare/v0.2.18...v0.2.19) (2024-08-22) + + + ## [0.2.18](https://github.com/billchurch/WebSSH2/compare/v0.2.17...v0.2.18) (2024-08-22) diff --git a/app/config.js b/app/config.js index 0ccdb71..635ebe8 100644 --- a/app/config.js +++ b/app/config.js @@ -31,7 +31,7 @@ const defaultConfig = { readyTimeout: 20000, keepaliveInterval: 120000, keepaliveCountMax: 10, - alwaysSendKeyboardInteractivePrompts: false, + alwaysSendKeyboardInteractivePrompts: false }, header: { text: null, diff --git a/package.json b/package.json index 56f96ee..6e4da1f 100644 --- a/package.json +++ b/package.json @@ -49,9 +49,9 @@ "start": "node index.js", "lint": "eslint app", "lint:fix": "eslint app --fix", - "watch": "NODE_ENV=development nodemon index.js -w app/ -w index.js -w config.json -w package.json", + "watch": "NODE_ENV=development DEBUG=webssh*,-webssh2:ssh2 nodemon index.js -w app/ -w index.js -w config.json -w package.json", "test": "jest", - "release": "standard-version -a -s --release-as patch", + "release": "standard-version -a -s --release-as patch --commit-all", "release:dry-run": "standard-version -a -s --release-as patch --dry-run", "publish:dry-run": "npm publish --dry-run", "publish:npm": "npm publish",