diff --git a/packages/docs/run-typedoc.mjs b/packages/docs/run-typedoc.mjs index e69935587..790b14b9a 100644 --- a/packages/docs/run-typedoc.mjs +++ b/packages/docs/run-typedoc.mjs @@ -1,7 +1,8 @@ import path from 'node:path' +import { fileURLToPath } from 'node:url' import { createTypeDocApp } from './typedoc-markdown.mjs' -const __dirname = path.dirname(new URL(import.meta.url).pathname) +const __dirname = path.dirname(fileURLToPath(import.meta.url)) createTypeDocApp({ name: 'API Documentation', diff --git a/packages/docs/typedoc-markdown.mjs b/packages/docs/typedoc-markdown.mjs index 90513b832..02cd0ae06 100644 --- a/packages/docs/typedoc-markdown.mjs +++ b/packages/docs/typedoc-markdown.mjs @@ -1,9 +1,10 @@ // @ts-check import fs from 'node:fs/promises' import path from 'node:path' +import {fileURLToPath} from 'node:url' import { Application, PageEvent, TSConfigReader } from 'typedoc' -const __dirname = path.dirname(new URL(import.meta.url).pathname) +const __dirname = path.dirname(fileURLToPath(import.meta.url)) const DEFAULT_OPTIONS = { // disableOutputCheck: true, diff --git a/packages/router/size-checks/rollup.config.mjs b/packages/router/size-checks/rollup.config.mjs index 9b3f07071..73485959a 100644 --- a/packages/router/size-checks/rollup.config.mjs +++ b/packages/router/size-checks/rollup.config.mjs @@ -1,4 +1,5 @@ import path from 'node:path' +import {fileURLToPath} from 'node:url' import ts from 'rollup-plugin-typescript2' import replace from '@rollup/plugin-replace' import resolve from '@rollup/plugin-node-resolve' @@ -6,7 +7,7 @@ import commonjs from '@rollup/plugin-commonjs' import terser from '@rollup/plugin-terser' import { defineConfig } from 'rollup' -const __dirname = path.dirname(new URL(import.meta.url).pathname) +const __dirname = path.dirname(fileURLToPath(import.meta.url)) const config = defineConfig({ external: ['vue'], diff --git a/scripts/check-size.mjs b/scripts/check-size.mjs index 59a5bbc8d..22d62db7d 100644 --- a/scripts/check-size.mjs +++ b/scripts/check-size.mjs @@ -1,10 +1,11 @@ import fs from 'node:fs/promises' import path from 'node:path' +import {fileURLToPath} from 'node:url' import chalk from 'chalk' import { gzipSync } from 'zlib' import { compress } from 'brotli' -const __dirname = path.dirname(new URL(import.meta.url).pathname) +const __dirname = path.dirname(fileURLToPath(import.meta.url)) async function checkFileSize(filePath) { const stat = await fs.stat(filePath).catch(() => null)