Skip to content

Commit

Permalink
compilerEs: fix SourceMap.pack to lookup sourcemap in js/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Giannini authored and Matthew Giannini committed Oct 31, 2023
1 parent 868fca8 commit 1a77149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compilerEs/fan/util/SourceMap.fan
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class SourceMap
if (pod != null && isPodJsFile(file))
{
// lookup sourcemap for the pod
sm := pod.file(`/${pod.name}.js.map`, false)
sm := pod.file(`/js/${pod.name}.js.map`, false)
if (sm != null)
{
// read into memory
Expand Down

0 comments on commit 1a77149

Please sign in to comment.