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:
119119 CYPRESS_RETRIES=5 npm run test:e2e
120120 fi
121121
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/
136136
137137 - stage : Deployment Doc Dev
138138 name : Deploy next-docs.kuzzle.io
Original file line number Diff line number Diff line change 11{
22 "name" : " kuzzle-sdk" ,
3- "version" : " 7.4.2 " ,
3+ "version" : " 7.4.3 " ,
44 "description" : " Official Javascript SDK for Kuzzle" ,
55 "author" : " The Kuzzle Team <support@kuzzle.io>" ,
66 "repository" : {
Original file line number Diff line number Diff line change @@ -48,13 +48,6 @@ export class KuzzleError extends Error {
4848 } ) ;
4949 }
5050
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-
5851 this . id = apiError . id ;
5952 this . code = apiError . code ;
6053
You can’t perform that action at this time.
0 commit comments