File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,9 @@ module.exports = mergeExports(fn, {
270
270
get MultiCompiler ( ) {
271
271
return require ( "./MultiCompiler" ) ;
272
272
} ,
273
+ get OptimizationStages ( ) {
274
+ return require ( "./OptimizationStages" ) ;
275
+ } ,
273
276
get Parser ( ) {
274
277
return require ( "./Parser" ) ;
275
278
} ,
Original file line number Diff line number Diff line change @@ -13645,6 +13645,11 @@ declare namespace exports {
13645
13645
export let matchPart : ( str : string , test : Matcher ) => boolean ;
13646
13646
export let matchObject : ( obj : MatchObject , str : string ) => boolean ;
13647
13647
}
13648
+ export namespace OptimizationStages {
13649
+ export let STAGE_BASIC : - 10 ;
13650
+ export let STAGE_DEFAULT : 0 ;
13651
+ export let STAGE_ADVANCED : 10 ;
13652
+ }
13648
13653
export namespace RuntimeGlobals {
13649
13654
export let require : "__webpack_require__" ;
13650
13655
export let requireScope : "__webpack_require__.*" ;
You can’t perform that action at this time.
0 commit comments