fix(all): Automated build errors.

This commit is contained in:
Rodrigo Rodriguez 2022-07-01 10:40:28 -03:00
parent 904ec971e1
commit ce2b484f8e
4 changed files with 58415 additions and 928 deletions

34242
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -25,6 +25,7 @@
"type": "git", "type": "git",
"url": "https://github.com/GeneralBots/BotServer.git" "url": "https://github.com/GeneralBots/BotServer.git"
}, },
"scripts": { "scripts": {
"clean": "shx rm -rf node_modules/ dist/ docs/reference", "clean": "shx rm -rf node_modules/ dist/ docs/reference",
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose -e ./packages/default.gbui/**/* -e ./packages/**/*.gbdialog/**/*", "tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose -e ./packages/default.gbui/**/* -e ./packages/**/*.gbdialog/**/*",
@ -32,6 +33,7 @@
"build-server": "tsc", "build-server": "tsc",
"build-gbui": "cd packages/default.gbui && echo SKIP_PREFLIGHT_CHECK=true >.env && npm install && npm run build", "build-gbui": "cd packages/default.gbui && echo SKIP_PREFLIGHT_CHECK=true >.env && npm install && npm run build",
"build-docs": "typedoc --options typedoc.json src/", "build-docs": "typedoc --options typedoc.json src/",
"test": "node test.js",
"start": "node ./boot.js", "start": "node ./boot.js",
"reverse-proxy": "node_modules/.bin/ngrok http 4242", "reverse-proxy": "node_modules/.bin/ngrok http 4242",
"watch:build": "tsc --watch", "watch:build": "tsc --watch",

File diff suppressed because it is too large Load diff

1
test.js Normal file
View file

@ -0,0 +1 @@
console.log("Feel free to PR refactored and unit tests added if you want to.");