test
This commit is contained in:
parent
f63777b978
commit
e394670084
|
|
@ -1,10 +1,12 @@
|
|||
import path from 'node:path';
|
||||
import { readdir as _readdir } from 'node:fs';
|
||||
import { promisify } from 'node:util';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
|
||||
import { importGlobalSilent } from 'import-global';
|
||||
const readdir = promisify(_readdir);
|
||||
const __dirname = path.dirname(import.meta.url);
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = path.dirname(__filename);
|
||||
|
||||
const defaultPlugins = new Set([
|
||||
'browsertime',
|
||||
|
|
|
|||
Loading…
Reference in New Issue