Skip to content

Commit

Permalink
fix(CI): default.gbui compilation issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Rodriguez (pragmatismo.io) committed Nov 19, 2018
1 parent aeb43b9 commit 7a11919
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 92 deletions.
28 changes: 15 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
.coveralls.yml
.env
.npmrc
.nyc_output
coverage
dist
docs
guaribas.log
guaribas.sqlite
node_modules
packages/default.gbui/build
tmp
work
/.coveralls.yml
/.env
/.npmrc
/.nyc_output
/coverage
/dist
/docs
/guaribas.log
/guaribas.sqlite
/node_modules
/packages/default.gbui/build
/packages/default.gbui/.env
/packages/default.gbui/node_modules
/tmp
/work
26 changes: 14 additions & 12 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# This file must be a copy of .gitignore except for the WILLSHIP commented lines below.
.coveralls.yml
.env
.npmrc
# WILLSHIP .nyc_output
coverage
# WILLSHIP dist
guaribas.log
guaribas.sqlite
node_modules
# WILLSHIP packages/default.gbui/build
tmp
work
/.coveralls.yml
/.env
/.npmrc
# WILLSHIP /.nyc_output
/coverage
# WILLSHIP /dist
/guaribas.log
/guaribas.sqlite
/node_modules
# WILLSHIP /packages/default.gbui/build
/packages/default.gbui/.env
/packages/default.gbui/node_modules
/tmp
/work
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose",
"build": "npm install && npm run build-server && npm run build-gbui && npm run build-docs",
"build-server": "tsc",
"build-gbui": "cd packages/default.gbui && 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/",
"test": "nyc --reporter=html --reporter=text mocha -r ts-node/register packages/**/*.test.ts ",
"pretest": "npm run build",
Expand Down
107 changes: 45 additions & 62 deletions packages/default.gbui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions packages/default.gbui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"license": "AGPL-3.0",
"homepage": ".",
"dependencies": {
"ajv": "^6.5.4",
"ajv": "^6.5.5",
"botframework-directlinejs": "^0.10.0",
"botframework-webchat": "4.1.0",
"deep-extend": "^0.6.0",
"fetch": "^1.1.0",
"msal": "^0.2.3",
"powerbi-client": "^2.6.5",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-player": "^1.6.6",
"react-player": "^1.7.0",
"react-powerbi": "^0.3.1",
"react-scripts": "^2.1.1",
"react-transition-group": "^2.5.0",
Expand Down

0 comments on commit 7a11919

Please sign in to comment.