fix: add __dirname compatibility
This commit is contained in:
parent
a5f166210d
commit
60f45cb8d5
|
@ -3,7 +3,14 @@ import { fileURLToPath } from "node:url";
|
||||||
|
|
||||||
import type { PresetAsset } from "presetter-types";
|
import type { PresetAsset } from "presetter-types";
|
||||||
|
|
||||||
const DIR = dirname(fileURLToPath(import.meta.url));
|
let DIR: string;
|
||||||
|
|
||||||
|
if (typeof __dirname === "undefined") {
|
||||||
|
// @ts-ignore
|
||||||
|
DIR = dirname(fileURLToPath(import.meta.url));
|
||||||
|
} else {
|
||||||
|
DIR = __dirname;
|
||||||
|
}
|
||||||
|
|
||||||
// paths to the template directory
|
// paths to the template directory
|
||||||
const TEMPLATES = resolve(DIR, "..", "templates");
|
const TEMPLATES = resolve(DIR, "..", "templates");
|
||||||
|
|
Loading…
Reference in New Issue