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() {
62
62
}
63
63
}
64
64
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 ;
74
68
75
69
return sys ;
76
70
}
You canβt perform that action at this time.
0 commit comments