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 11
11
"type" : " bun" ,
12
12
"request" : " attach" ,
13
13
"name" : " Debug Stitcher" ,
14
- "url" : " ws://localhost:6499 /sprs-stitcher" ,
14
+ "url" : " ws://localhost:6500 /sprs-stitcher" ,
15
15
}
16
16
]
17
17
}
Original file line number Diff line number Diff line change 3
3
"version" : " 1.1.0" ,
4
4
"type" : " module" ,
5
5
"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" ,
7
7
"build" : " bun build ./runtime/local.ts --target=bun --outdir=./dist" ,
8
8
"test" : " bun test" ,
9
9
"lint" : " tsc && eslint" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export function mapAttributes(
4
4
) {
5
5
const items = splitByCommaWithPreservingQuotes ( param ) ;
6
6
items . forEach ( ( item ) => {
7
- const [ key , value ] = item . split ( "=" ) ;
7
+ const [ key , value ] = item . split ( / = ( . + ) / ) ;
8
8
if ( key === undefined || value === undefined ) {
9
9
return ;
10
10
}
You can’t perform that action at this time.
0 commit comments