From 744755b0c4b1fa0415a3ba7e877666ceb8493e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Murias?= Date: Tue, 9 Oct 2018 10:38:40 +0200 Subject: [PATCH] [js] Add default options to perl6-js runner --- tools/build/create-js-runner.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/create-js-runner.pl b/tools/build/create-js-runner.pl index 6388c212785..88eef8f6225 100644 --- a/tools/build/create-js-runner.pl +++ b/tools/build/create-js-runner.pl @@ -14,7 +14,7 @@ my $install_to = "perl6-js$bat"; open my $fh, ">", $install_to or die "open: $!"; -print $fh $preamble, "node rakudo.js", $postamble, "\n" or die "print: $!"; +print $fh $preamble, "node rakudo.js -Ilib --source-map", $postamble, "\n" or die "print: $!"; close $fh or die "close: $!"; chmod 0755, $install_to if $^O ne 'MSWin32';