From d3bdd7f17021dbfec613a7dc6e99798160fb5f02 Mon Sep 17 00:00:00 2001 From: ThatTonybo Date: Tue, 12 Aug 2025 01:10:23 +1000 Subject: [PATCH] Update appspace --- dist/index.js | 2 +- package.json | 2 +- src/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index a3d95ab..944447e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -27,7 +27,7 @@ export default class IPC extends EventEmitter { this.name = name; this.ready = false; this.ipc = IPCModule; - this.ipc.config.appspace = 'hop.'; + this.ipc.config.appspace = 'pygmy.'; this.ipc.config.id = name; this.ipc.config.retry = 2500; this.ipc.config.maxRetries = 5; diff --git a/package.json b/package.json index fa724ef..193e861 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ipc-client", - "version": "0.0.2", + "version": "0.0.3", "module": "dist/index.js", "type": "module", "files": ["dist/**/*"], diff --git a/src/index.ts b/src/index.ts index 8d163ec..84eeb91 100644 --- a/src/index.ts +++ b/src/index.ts @@ -38,7 +38,7 @@ export default class IPC extends EventEmitter { this.ipc = IPCModule; - this.ipc.config.appspace = 'hop.'; + this.ipc.config.appspace = 'pygmy.'; this.ipc.config.id = name; this.ipc.config.retry = 2500; this.ipc.config.maxRetries = 5;