File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/app/src/sandbox/eval Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -567,9 +567,6 @@ export default class TranspiledModule {
567
567
* @param {* } manager
568
568
*/
569
569
async doTranspile ( manager : Manager ) {
570
- // eslint-disable-next-line
571
- manager . transpileJobs [ this . getId ( ) ] = true ;
572
-
573
570
this . hasMissingDependencies = false ;
574
571
575
572
// Remove this module from the initiators of old deps, so we can populate a
@@ -623,7 +620,9 @@ export default class TranspiledModule {
623
620
. concat ( [ this . module . path ] )
624
621
. join ( '!' ) ;
625
622
626
- const measureKey = `transpile-${ transpilerConfig . transpiler . name } -${ this . module . path } ` ;
623
+ const measureKey = `transpile-${
624
+ transpilerConfig . transpiler . name
625
+ } -${ this . getId ( ) } `;
627
626
try {
628
627
measure ( measureKey ) ;
629
628
const {
You can’t perform that action at this time.
0 commit comments