refactor: hide script helper internals

This commit is contained in:
Peter Steinberger
2026-05-02 07:22:24 +01:00
parent 817e6e810b
commit a3e0231252
5 changed files with 4 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ const SUFFIX_SKIP_RE = /\.(?:test|spec|fixture)\./u;
const INFRA_DIR_RE = /(^|\/)(?:coverage|dist|node_modules)(?:\/|$)/u;
const INFRA_NAME_RE = /(test-harness|test-support|test-helpers|test-fixtures)/u;
export function normalizeExtensionSourcePath(filePath) {
function normalizeExtensionSourcePath(filePath) {
return filePath.replaceAll("\\", "/");
}