From f3c1ddaea11845bf108a6a723bf41b95072d9b42 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sat, 25 Jul 2020 17:39:00 -0300 Subject: [PATCH] new(all): Services between gbapp allowed. --- package.json | 2 +- src/GBMinInstance.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4116ffa..5434f91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "1.5.9", + "version": "1.6.0", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "main": "dist/index.js", "types": "dist/index", diff --git a/src/GBMinInstance.ts b/src/GBMinInstance.ts index 95cce4b..d22f116 100644 --- a/src/GBMinInstance.ts +++ b/src/GBMinInstance.ts @@ -63,8 +63,10 @@ export class GBMinInstance { cbMap: {}; scriptMap: {}; sandBoxMap: {}; + gbappServices: []; constructor() { this.packages = []; + this.gbappServices = []; } }