Skip to content

Commit 492cc1f

Browse files
authored
fix(bazel): ensure source maps for spec-bundle is linked (#2712)
* fix(bazel): ensure source maps for spec-bundle is linked Currently we don't have any real TS-based errors because source-maps aren't linked. * perf(bazel): disable minify for spec bundling This will speed up bundling further, and makes debugging easier.
1 parent b9bcdb3 commit 492cc1f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bazel/spec-bundling/index_rjs.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ def spec_bundle(name, deps, srcs = [], bootstrap = [], testonly = True, config =
3030
testonly = testonly,
3131
bundle = True,
3232
format = "iife",
33-
minify = True,
34-
sourcemap = "external",
33+
sourcemap = "linked",
3534
platform = "node",
3635
entry_point = ":%s_entrypoint" % name,
3736
output = "%s.spec.js" % name,

0 commit comments

Comments
 (0)