From 1a77149586380c3e075b56d502488fb4a20b7e7d Mon Sep 17 00:00:00 2001 From: Matthew Giannini Date: Tue, 31 Oct 2023 16:26:29 -0400 Subject: [PATCH] compilerEs: fix SourceMap.pack to lookup sourcemap in js/ directory --- src/compilerEs/fan/util/SourceMap.fan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compilerEs/fan/util/SourceMap.fan b/src/compilerEs/fan/util/SourceMap.fan index deaa6da2f..3fe849bcd 100644 --- a/src/compilerEs/fan/util/SourceMap.fan +++ b/src/compilerEs/fan/util/SourceMap.fan @@ -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