diff --git a/bin/index.js b/bin/index.js index 7f46f6c..c114a0f 100755 --- a/bin/index.js +++ b/bin/index.js @@ -19,7 +19,7 @@ import { glob as globImplementation } from '../src/glob.cjs' const DEFAULT_PATTERNS = [`**/?(*.)+(spec|test).?([cm])[jt]s?(x)`] // do not trust magic dirs by default const bundleOpts = { pure: true, bundle: true, esbuild: true, ts: 'auto' } const bareboneOpts = { ...bundleOpts, barebone: true } -const hermesA = ['-w', '-Xmicrotask-queue'] // -Xes6-class fails with -O0 / -Og, --block-scoping fails in default, any of that is bad +const hermesA = ['-w', '-Xmicrotask-queue', '-eager'] // -Xes6-class fails with -O0 / -Og, --block-scoping fails in default, any of that is bad const hermesS = [...hermesA, '-Xes6-block-scoping'] const denoA = ['run', '--allow-all'] // also will set DENO_COMPAT=1 env flag below const denoT = ['test', '--allow-all']