File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
packages/qwik/src/optimizer/src Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @builder.io/qwik ' : patch
3+ ---
4+
5+ FIX: The Deno integration now builds successfully with version v2.4.3 and above.
Original file line number Diff line number Diff line change @@ -62,15 +62,9 @@ export async function getSystem() {
6262 }
6363 }
6464
65- if ( sysEnv === 'node' || sysEnv === 'bun' ) {
66- sys . path = await sys . dynamicImport ( 'node:path' ) ;
67- sys . cwd = ( ) => process . cwd ( ) ;
68- sys . os = process . platform ;
69- } else if ( sysEnv === 'deno' ) {
70- sys . path = await sys . dynamicImport ( 'node:path' ) ;
71- sys . cwd = ( ) : string => Deno . cwd ( ) ;
72- sys . os = Deno . platform ( ) ;
73- }
65+ sys . path = await sys . dynamicImport ( 'node:path' ) ;
66+ sys . cwd = ( ) => process . cwd ( ) ;
67+ sys . os = process . platform ;
7468
7569 return sys ;
7670}
You canβt perform that action at this time.
0 commit comments