File tree Expand file tree Collapse file tree 4 files changed +16
-23
lines changed Expand file tree Collapse file tree 4 files changed +16
-23
lines changed Original file line number Diff line number Diff line change @@ -119,20 +119,20 @@ jobs:
119
119
CYPRESS_RETRIES=5 npm run test:e2e
120
120
fi
121
121
122
- - stage : Tests
123
- name : Dead link check
124
- language : node_js
125
- node_js : 12
126
- if : type = pull_request OR type = push AND branch =~ /^master|[0-9]+-(dev|stable|beta)$/ OR type = cron
127
-
128
- before_script :
129
- - npm ci
130
- - npm run doc-prepare
131
- - $(npm bin)/kuzdoc iterate-repos:install --repos_path doc/framework/.repos/
132
- - $(npm bin)/kuzdoc framework:link -d /sdk/js/7/ -v 7
133
- script :
134
- - gem install typhoeus
135
- - cd doc/framework/ && HYDRA_MAX_CONCURRENCY=20 travis_retry ruby .ci/dead-links.rb -p src/sdk/js/7/
122
+ # - stage: Tests
123
+ # name: Dead link check
124
+ # language: node_js
125
+ # node_js: 12
126
+ # if: type = pull_request OR type = push AND branch =~ /^master|[0-9]+-(dev|stable|beta)$/ OR type = cron
127
+
128
+ # before_script:
129
+ # - npm ci
130
+ # - npm run doc-prepare
131
+ # - $(npm bin)/kuzdoc iterate-repos:install --repos_path doc/framework/.repos/
132
+ # - $(npm bin)/kuzdoc framework:link -d /sdk/js/7/ -v 7
133
+ # script:
134
+ # - gem install typhoeus
135
+ # - cd doc/framework/ && HYDRA_MAX_CONCURRENCY=20 travis_retry ruby .ci/dead-links.rb -p src/sdk/js/7/
136
136
137
137
- stage : Deployment Doc Dev
138
138
name : Deploy next-docs.kuzzle.io
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " kuzzle-sdk" ,
3
- "version" : " 7.4.2 " ,
3
+ "version" : " 7.4.3 " ,
4
4
"description" : " Official Javascript SDK for Kuzzle" ,
5
5
"author" : " The Kuzzle Team <support@kuzzle.io>" ,
6
6
"repository" : {
Original file line number Diff line number Diff line change @@ -48,13 +48,6 @@ export class KuzzleError extends Error {
48
48
} ) ;
49
49
}
50
50
51
- if ( stack ) {
52
- const lines = stack . split ( '\n' ) ;
53
- lines [ 0 ] += apiError . message ;
54
- lines [ 3 ] = ' 🡆 ' + lines [ 3 ] . trimStart ( ) ;
55
- this . stack = lines . join ( '\n' ) ;
56
- }
57
-
58
51
this . id = apiError . id ;
59
52
this . code = apiError . code ;
60
53
You can’t perform that action at this time.
0 commit comments