File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
packages/react-server/src Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 10
10
import type { Writable } from 'stream' ;
11
11
import { TextEncoder } from 'util' ;
12
12
import { AsyncLocalStorage } from 'async_hooks' ;
13
+
13
14
interface MightBeFlushable {
14
15
flush ?: ( ) => void ;
15
16
}
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ const requestedBundleTypes = argv.type
91
91
? parseRequestedNames ( [ argv . type ] , 'uppercase' )
92
92
: [ ] ;
93
93
const requestedBundleNames = parseRequestedNames ( argv . _ , 'lowercase' ) ;
94
-
95
94
const forcePrettyOutput = argv . pretty ;
96
95
const isWatchMode = argv . watch ;
97
96
const syncFBSourcePath = argv [ 'sync-fbsource' ] ;
@@ -372,7 +371,6 @@ function getPlugins(
372
371
isUMDBundle && entry === 'react-art' && commonjs ( ) ,
373
372
// Apply dead code elimination and/or minification.
374
373
isProduction &&
375
- // !skipClosureTranspilation &&
376
374
closure ( {
377
375
compilation_level : 'SIMPLE' ,
378
376
language_in : 'ECMASCRIPT_2015' ,
You can’t perform that action at this time.
0 commit comments