2 Commits

Author SHA1 Message Date
Gregor Lohaus
8ad2545310 fix build error
All checks were successful
Publish npm package / publish (push) Successful in 24s
2026-05-22 10:05:34 +02:00
Gregor Lohaus
4d25d07687 run on pc
Some checks failed
Publish npm package / publish (push) Failing after 3m9s
2026-05-22 09:59:36 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ on:
jobs:
publish:
runs-on: local
runs-on: x86
steps:
- uses: actions/checkout@v4

View File

@@ -125,7 +125,7 @@ function addReverseMapToken(
state.manifest.tokens[token.result] = tokens
}
function getReverseMapPath(destRoot: string, reverseMap: boolean | string): string {
function getReverseMapPath(destRoot: string, reverseMap: true | string): string {
if (reverseMap === true) return resolveOutputPath(destRoot, ".tdir-map.json")
return resolveOutputPath(destRoot, reverseMap)
}