Skip to content

Commit

Permalink
chore: update helper script names
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Dec 4, 2023
1 parent c86d56d commit 50399df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/isolate/helper-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const { compileAndRunScript } = require('./script-runner.js')
* @returns
*/
module.exports.setupHelperScripts = async (isolate, context) => {
await compileAndRunScript({ isolate, context, script: isObjectHelpers, path: objectHelpersPath })
await compileAndRunScript({ isolate, context, script: base64, path: base64Path })
await compileAndRunScript({ isolate, context, script: overrideGlobals, path: overrideGlobalsPath })
await compileAndRunScript({ isolate, context, script: freezeGlobals, path: freezeGlobalsPath })
await compileAndRunScript({ isolate, context, script: isObjectHelpers, path: 'object-helpers.js' })
await compileAndRunScript({ isolate, context, script: base64, path: 'base64.js' })
await compileAndRunScript({ isolate, context, script: overrideGlobals, path: 'code-generation.js' })
await compileAndRunScript({ isolate, context, script: freezeGlobals, path: 'freeze-globals.js' })
}

0 comments on commit 50399df

Please sign in to comment.