git-watchtower 1.10.14 → 1.10.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3282,7 +3282,7 @@ async function start() {
3282
3282
  } else {
3283
3283
  // Static mode
3284
3284
  server = createStaticServer();
3285
- server.listen(PORT, () => {
3285
+ server.listen(PORT, '127.0.0.1', () => {
3286
3286
  addLog(`Server started on http://localhost:${PORT}`, 'success');
3287
3287
  addLog(`Serving ${STATIC_DIR.replace(PROJECT_ROOT, '.')}`, 'info');
3288
3288
  addLog(`Current branch: ${store.get('currentBranch')}`, 'info');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-watchtower",
3
- "version": "1.10.14",
3
+ "version": "1.10.15",
4
4
  "description": "Terminal-based Git branch monitor with activity sparklines and optional dev server with live reload",
5
5
  "main": "bin/git-watchtower.js",
6
6
  "bin": {