File tree 1 file changed +3
-0
lines changed
packages/app/src/sandbox/eval
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ export type SerializedTranspiledModule = {
72
72
transpilationDependencies : Array < string > ;
73
73
transpilationInitiators : Array < string > ;
74
74
warnings : WarningStructure [ ] ;
75
+ hasMissingDependencies : boolean ;
75
76
} ;
76
77
77
78
/* eslint-disable no-use-before-define */
@@ -1090,6 +1091,7 @@ export default class TranspiledModule {
1090
1091
Array . from ( this . asyncDependencies ) . map ( m => m . then ( x => x . getId ( ) ) )
1091
1092
) ,
1092
1093
warnings : this . warnings . map ( war => war . serialize ( ) ) ,
1094
+ hasMissingDependencies : this . hasMissingDependencies ,
1093
1095
} ;
1094
1096
1095
1097
if ( ! sourceEqualsCompiled || ! optimizeForSize ) {
@@ -1110,6 +1112,7 @@ export default class TranspiledModule {
1110
1112
this . emittedAssets = data . emittedAssets ;
1111
1113
this . isEntry = data . isEntry ;
1112
1114
this . isTestFile = data . isTestFile ;
1115
+ this . hasMissingDependencies = data . hasMissingDependencies ;
1113
1116
1114
1117
if ( data . sourceEqualsCompiled ) {
1115
1118
this . source = new ModuleSource (
You can’t perform that action at this time.
0 commit comments