We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d35cdd9 commit eb337b5Copy full SHA for eb337b5
1 file changed
bin/index.js
@@ -19,7 +19,7 @@ import { glob as globImplementation } from '../src/glob.cjs'
19
const DEFAULT_PATTERNS = [`**/?(*.)+(spec|test).?([cm])[jt]s?(x)`] // do not trust magic dirs by default
20
const bundleOpts = { pure: true, bundle: true, esbuild: true, ts: 'auto' }
21
const bareboneOpts = { ...bundleOpts, barebone: true }
22
-const hermesA = ['-Og', '-Xmicrotask-queue']
+const hermesA = ['-w', '-Xmicrotask-queue'] // -Xes6-class fails with -O0 / -Og, --block-scoping fails in default, any of that is bad
23
const denoA = ['run', '--allow-all'] // also will set DENO_COMPAT=1 env flag below
24
const denoT = ['test', '--allow-all']
25
const nodeTS = process.features.typescript ? 'auto' : 'flag'
0 commit comments