Skip to content

Commit fb894c5

Browse files
committed
Merge branch 'rc' into master
2 parents 87e3243 + 74ae91c commit fb894c5

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ jobs:
2525

2626
- stage: deploy_rc
2727
script:
28+
- npm run build
2829
- bash .ci/publish_rc.sh
2930

3031
- stage: deploy_canary
3132
script:
33+
- npm run build
3234
- bash .ci/publish_canary.sh
3335

3436

lib/dispatchRequest.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ function DispatchRequest(url, action, payload, local_auth, remote_auth = null) {
9595
.then(response => response.data)
9696
.catch(err => {
9797
let e = new Error(ErrorMessage.getAPIErrorMessage(url, options, err))
98-
console.log(err)
9998
if (err.response && err.response.data) {
10099
e.data = err.response.data
101100
}

lib/errorMessage.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ function getErrorAsMessage(url, api, err) {
1111
if (err.type) str += ` Type: ${err.type}`;
1212
if (url) str += ` url: ${url}`;
1313
if (api && api.method) str += ` method: ${api.method}`;
14+
if (err.stack) str = [str, err.stack].join("\n");
1415
return str;
1516
}
1617

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@terminusdb/terminusdb-client",
3-
"version": "3.0.4",
3+
"version": "3.0.6",
44
"description": "TerminusDB client library",
55
"main": "index.js",
66
"files": [

0 commit comments

Comments
 (0)