fix(VBA): Several bugs fixed and refactoring on Deployer Service done.

This commit is contained in:
Rodrigo Rodriguez 2019-02-25 08:54:51 -03:00
parent 88453c6c67
commit ef026d1fe2
2 changed files with 13 additions and 12 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "botlib", "name": "botlib",
"version": "0.1.10", "version": "0.1.12",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -12,18 +12,18 @@
"license": "AGPL-3.0", "license": "AGPL-3.0",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/pragmatismo-io/BotLib.git" "url": "https://github.com/GeneralBots/BotLib.git"
}, },
"dependencies": { "dependencies": {
"async": "2.6.1", "async": "2.6.2",
"botbuilder": "4.1.3", "botbuilder": "4.2.1",
"botbuilder-ai": "4.2.0", "botbuilder-ai": "4.2.1",
"botbuilder-azure": "4.2.0", "botbuilder-azure": "4.2.1",
"botbuilder-choices": "4.0.0-preview1.2", "botbuilder-choices": "4.0.0-preview1.2",
"botbuilder-dialogs": "4.2.0", "botbuilder-dialogs": "4.2.1",
"botbuilder-location": "2.0.0", "botbuilder-location": "2.0.0",
"botbuilder-prompts": "4.0.0-preview1.2", "botbuilder-prompts": "4.0.0-preview1.2",
"chrono-node": "1.3.5", "chrono-node": "1.3.11",
"dotenv-extended": "2.3.0", "dotenv-extended": "2.3.0",
"iconv-lite": "0.4.24", "iconv-lite": "0.4.24",
"ms": "2.1.1", "ms": "2.1.1",
@ -36,14 +36,14 @@
}, },
"devDependencies": { "devDependencies": {
"@types/chai": "4.1.7", "@types/chai": "4.1.7",
"@types/mocha": "5.2.5", "@types/mocha": "5.2.6",
"@types/sequelize": "4.27.34", "@types/sequelize": "4.27.37",
"@types/winston": "2.4.4", "@types/winston": "2.4.4",
"chai": "4.2.0", "chai": "4.2.0",
"mocha": "5.2.0", "mocha": "6.0.1",
"mocha-typescript": "1.1.17", "mocha-typescript": "1.1.17",
"ts-node": "8.0.2", "ts-node": "8.0.2",
"typedoc": "0.14.2", "typedoc": "0.14.2",
"typescript": "3.2.4" "typescript": "3.3.3333"
} }
} }

View file

@ -53,6 +53,7 @@ export class GBMinInstance {
userState: UserState; userState: UserState;
userProfile: any; userProfile: any;
cbMap: {}; cbMap: {};
scriptMap: {};
constructor() { constructor() {
this.packages = []; this.packages = [];