From b9f69b535fc8c23e2e2a81d7484d0115778ab5dd Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 27 Jun 2019 11:28:29 -0300 Subject: [PATCH] Generate complete source maps (#6756) The source maps generated previously were mapping the bundled files to the post-Babel files - they weren't showing mapping to the source files as written. It looks like this was a result of `reactify` being used in addition to babel - that transformation must have dropped the source maps. `reactify` still needs to be listed as a dependency because it is an unlisted requirement of the `boron` package, which we use. We don't need to use it to create our bundles though, as Babel already performs the transformations we need. --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 74de39b6d..af4c83af5 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,6 @@ "browserify": { "transform": [ "babelify", - "reactify", "brfs" ] },