Skip to content

Commit 567cb30

Browse files
fix: forkJoin as array
1 parent e74c7c8 commit 567cb30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fusebox/compression.plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class CompressionPluginClass implements Plugin {
4444
`${bundleOutput.dir}/${bundleOutput.filename}.js`
4545
).pipe(
4646
flatMap(file => {
47-
return forkJoin(
47+
return forkJoin([
4848
gzip_(file, { level: 9 }).pipe(
4949
flatMap(compressed =>
5050
bundleOutput.writeToOutputFolder(
@@ -61,7 +61,7 @@ export class CompressionPluginClass implements Plugin {
6161
)
6262
)
6363
)
64-
)
64+
])
6565
})
6666
)
6767
})

0 commit comments

Comments
 (0)