From 268e952e892c7c075ff2e51bab7f1c2ea3038ae8 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 26 Jun 2019 13:31:12 -0300 Subject: [PATCH] Generate complete source maps 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 74de39b6d54f..af4c83af5c56 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,6 @@ "browserify": { "transform": [ "babelify", - "reactify", "brfs" ] },