File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111 "type" : " bun" ,
1212 "request" : " attach" ,
1313 "name" : " Debug Stitcher" ,
14- "url" : " ws://localhost:6499 /sprs-stitcher" ,
14+ "url" : " ws://localhost:6500 /sprs-stitcher" ,
1515 }
1616 ]
1717}
Original file line number Diff line number Diff line change 33 "version" : " 1.1.0" ,
44 "type" : " module" ,
55 "scripts" : {
6- "dev" : " bun --watch --inspect=ws://localhost:6499 /sprs-stitcher ./runtime/local.ts" ,
6+ "dev" : " bun --watch --inspect=ws://localhost:6500 /sprs-stitcher ./runtime/local.ts" ,
77 "build" : " bun build ./runtime/local.ts --target=bun --outdir=./dist" ,
88 "test" : " bun test" ,
99 "lint" : " tsc && eslint" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export function mapAttributes(
44) {
55 const items = splitByCommaWithPreservingQuotes ( param ) ;
66 items . forEach ( ( item ) => {
7- const [ key , value ] = item . split ( "=" ) ;
7+ const [ key , value ] = item . split ( / = ( . + ) / ) ;
88 if ( key === undefined || value === undefined ) {
99 return ;
1010 }
You can’t perform that action at this time.
0 commit comments