Skip to content

Commit

Permalink
fix(e2e): use node:path to resolve dist directory (#1054)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbedard authored Jan 11, 2025
1 parent e47878d commit 64c6b57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dirs.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { dirname, resolve } from 'node:path'
import { fileURLToPath } from 'node:url'

export const distDir = fileURLToPath(new URL('./dist', import.meta.url))
export const distDir = resolve(dirname(fileURLToPath(import.meta.url)), 'dist')

0 comments on commit 64c6b57

Please sign in to comment.