Open delphinus opened 2 weeks ago
Without this, it builds elements (here) with odd paths for local modules.
For example, code contains use Foo::Bar; and it imports lib/Foo/Bar.pm. This makes Uri.file(path).toString() => /lib/Foo/Bar.pm -- This file does not exist.
use Foo::Bar;
lib/Foo/Bar.pm
Uri.file(path).toString()
/lib/Foo/Bar.pm
Without this, it builds elements (here) with odd paths for local modules.
For example, code contains
use Foo::Bar;
and it importslib/Foo/Bar.pm
. This makesUri.file(path).toString()
=>/lib/Foo/Bar.pm
-- This file does not exist.