fix(VBA): Several bugs fixed and refactoring on Deployer Service done.
This commit is contained in:
parent
88453c6c67
commit
ef026d1fe2
2 changed files with 13 additions and 12 deletions
24
package.json
24
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"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)",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
|
@ -12,18 +12,18 @@
|
|||
"license": "AGPL-3.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pragmatismo-io/BotLib.git"
|
||||
"url": "https://github.com/GeneralBots/BotLib.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"async": "2.6.1",
|
||||
"botbuilder": "4.1.3",
|
||||
"botbuilder-ai": "4.2.0",
|
||||
"botbuilder-azure": "4.2.0",
|
||||
"async": "2.6.2",
|
||||
"botbuilder": "4.2.1",
|
||||
"botbuilder-ai": "4.2.1",
|
||||
"botbuilder-azure": "4.2.1",
|
||||
"botbuilder-choices": "4.0.0-preview1.2",
|
||||
"botbuilder-dialogs": "4.2.0",
|
||||
"botbuilder-dialogs": "4.2.1",
|
||||
"botbuilder-location": "2.0.0",
|
||||
"botbuilder-prompts": "4.0.0-preview1.2",
|
||||
"chrono-node": "1.3.5",
|
||||
"chrono-node": "1.3.11",
|
||||
"dotenv-extended": "2.3.0",
|
||||
"iconv-lite": "0.4.24",
|
||||
"ms": "2.1.1",
|
||||
|
@ -36,14 +36,14 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/chai": "4.1.7",
|
||||
"@types/mocha": "5.2.5",
|
||||
"@types/sequelize": "4.27.34",
|
||||
"@types/mocha": "5.2.6",
|
||||
"@types/sequelize": "4.27.37",
|
||||
"@types/winston": "2.4.4",
|
||||
"chai": "4.2.0",
|
||||
"mocha": "5.2.0",
|
||||
"mocha": "6.0.1",
|
||||
"mocha-typescript": "1.1.17",
|
||||
"ts-node": "8.0.2",
|
||||
"typedoc": "0.14.2",
|
||||
"typescript": "3.2.4"
|
||||
"typescript": "3.3.3333"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,6 +53,7 @@ export class GBMinInstance {
|
|||
userState: UserState;
|
||||
userProfile: any;
|
||||
cbMap: {};
|
||||
scriptMap: {};
|
||||
|
||||
constructor() {
|
||||
this.packages = [];
|
||||
|
|
Loading…
Add table
Reference in a new issue