File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ function loadSupportedDoc () {
205
205
results . push ( { name : n , versions : row [ 1 ] } )
206
206
} )
207
207
} else {
208
- match = / ^ h t t p s : \/ \/ .* \[ ( .* ) \] $ / . exec ( row [ 0 ] )
208
+ match = / ^ h t t p s : \/ \/ .* \[ ( .* ) \] $ / . exec ( row [ 0 ] . trim ( ) )
209
209
if ( ! match ) {
210
210
throw new Error ( `could not parse this table cell text from docs/supported-technologies.asciidoc: ${ JSON . stringify ( row [ 0 ] ) } ` )
211
211
}
@@ -248,6 +248,8 @@ function bitrot (moduleNames) {
248
248
log . debug ( { moduleNames } , 'bitrot' )
249
249
var tavYmls = [
250
250
yaml . load ( fs . readFileSync ( '.tav.yml' , 'utf8' ) ) ,
251
+ yaml . load ( fs . readFileSync ( './test/opentelemetry-bridge/.tav.yml' , 'utf8' ) ) ,
252
+ yaml . load ( fs . readFileSync ( './test/opentelemetry-metrics/fixtures/.tav.yml' , 'utf8' ) ) ,
251
253
yaml . load ( fs . readFileSync ( 'test/instrumentation/modules/next/a-nextjs-app/.tav.yml' , 'utf8' ) )
252
254
]
253
255
var supported = loadSupportedDoc ( )
You can’t perform that action at this time.
0 commit comments