File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3131
3232 // Import BUMP UTILS
3333 let bump
34- if ( devMode ) bump = await import ( './bump-utils.mjs' )
34+ if ( devMode ) // bypass cache for latest bump-utils.mjs
35+ bump = await import ( './bump-utils.mjs' )
3536 else { // import sparsely updated remote bump-utils.min.mjs
3637 fs . mkdirSync ( path . dirname ( cachePaths . bumpUtils ) , { recursive : true } )
3738 fs . writeFileSync ( cachePaths . bumpUtils , ( await ( await fetch (
Original file line number Diff line number Diff line change 2424
2525 // Import BUMP UTILS
2626 let bump
27- if ( devMode ) bump = await import ( './bump-utils.mjs' )
27+ if ( devMode ) // bypass cache for latest bump-utils.mjs
28+ bump = await import ( './bump-utils.mjs' )
2829 else { // import sparsely updated remote bump-utils.min.mjs
2930 fs . mkdirSync ( path . dirname ( cachePaths . bumpUtils ) , { recursive : true } )
3031 fs . writeFileSync ( cachePaths . bumpUtils , ( await ( await fetch (
You can’t perform that action at this time.
0 commit comments