fix(basic): Adicionando .env no .gitignore e desabilitando suporte a linguagem BASIC por default

This commit is contained in:
Joao Antonio Ferreira 2019-10-10 07:40:15 -03:00
parent 60be84b292
commit 91d1476ced
5 changed files with 9 additions and 5 deletions

3
.gitignore vendored
View file

@ -18,3 +18,6 @@
*.vbs.compiled
*.vbs.js
*.vbs.ts
.env
teste.sql

6
package-lock.json generated
View file

@ -1,6 +1,6 @@
{
"name": "botserver",
"version": "1.6.0",
"version": "1.7.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2919,7 +2919,7 @@
"@types/node-fetch": "^1.6.7",
"@types/uuid": "^3.4.3",
"fetch-cookie": "^0.7.0",
"fetch-ponyfill": "github:amarzavery/fetch-ponyfill#136e6f8192bdb2aa0b7983f0b3b4361c357be9db",
"fetch-ponyfill": "github:amarzavery/fetch-ponyfill#master",
"form-data": "^2.3.2",
"is-buffer": "^2.0.0",
"is-stream": "^1.1.0",
@ -3241,7 +3241,7 @@
"@types/node-fetch": "^1.6.7",
"@types/uuid": "^3.4.3",
"fetch-cookie": "^0.7.0",
"fetch-ponyfill": "github:amarzavery/fetch-ponyfill#136e6f8192bdb2aa0b7983f0b3b4361c357be9db",
"fetch-ponyfill": "github:amarzavery/fetch-ponyfill#master",
"form-data": "^2.3.2",
"is-buffer": "^2.0.0",
"is-stream": "^1.1.0",

View file

@ -7,6 +7,7 @@
"homepage": "https://github.com/pragmatismo-io/BotServer/#readme",
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
"João Ferreira <joao.parana@gmail.com>",
"Jorge Ramos <jramos@pobox.com>"
],
"engines": {

View file

@ -197,7 +197,7 @@ export class GBMinService {
// Install default BASIC module.
this.deployer.deployPackage(min, 'packages/default.gbdialog');
// this.deployer.deployPackage(min, 'packages/default.gbdialog');
// Call the loadBot context.activity for all packages.
this.invokeLoadBot(GBServer.globals.appPackages, GBServer.globals.sysPackages, min, GBServer.globals.server);

View file

@ -50,7 +50,7 @@ const beautify = require('js-beautify').js;
/**
* @fileoverview Virtualization services for emulation of BASIC.
* This alpha version is using a hack in form of converter to
* translate BASIC to TSand string replacements to emulate await code.
* translate BASIC to TS and string replacements to emulate await code.
* See http://jsfiddle.net/roderick/dym05hsy for more info on vb2ts, so
* http://stevehanov.ca/blog/index.php?id=92 should be used to run it without
* translation and enhance classic BASIC experience.