astro-ghostcms/.pnpm-store/v3/files/89/11eb9c152576279a29175a51dcd...

19 lines
561 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { createRequire } from 'module';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
/**
* @fileoverview Universal module importer
*/
//-----------------------------------------------------------------------------
// Helpers
//-----------------------------------------------------------------------------
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const require = createRequire(__dirname + "/");
const { ModuleImporter } = require("./module-importer.cjs");
export { ModuleImporter };