Open mavyfaby opened 1 week ago
1.1.33+247456b67
Linux 6.11.0-9-generic x86_64 x86_64
I have a code:
import { compile } from "pug"; const test = compile("test test"); console.log(test());
I'm using pug for compiling email templates. When I compile the app with --sourcemap flag it shows:
--sourcemap
But if no --sourcemap it successfully compiles:
P.S: I discovered it was --sourcemap because I'm omitting the flags one by one to see if it works or not, luckily I found it was --sourcemap.
Should compile without errors.
No response
I also had troubles because of --sourcemap with compiling single file executable
Possibly the same issue as https://github.com/oven-sh/bun/issues/14879
What version of Bun is running?
1.1.33+247456b67
What platform is your computer?
Linux 6.11.0-9-generic x86_64 x86_64
What steps can reproduce the bug?
I have a code:
I'm using pug for compiling email templates. When I compile the app with
--sourcemap
flag it shows:But if no
--sourcemap
it successfully compiles:P.S: I discovered it was
--sourcemap
because I'm omitting the flags one by one to see if it works or not, luckily I found it was--sourcemap
.What is the expected behavior?
Should compile without errors.
What do you see instead?
Additional information
No response