Skip to content
Advertisement

Ignore return outside of function with babel 7

I recently updated to babel 7 and webpack 4 and am receiving this error when running our gulp build task:

JavaScript

This is caused by the return outside of a function in browser-syncs dev-ip dependency.

Is there a way to configure my .babelrc file to ignore this?

I’ve tried the following:

  1. Installing only production dependencies, but because browser sync is imported in my gulp file it’s still being compiled
  2. Setting up workspaces with yarn, but similar issue as #1
  3. Dynamically importing browser sync in my gulp file, I guess this is not yet supported yet?
  4. Telling babel to ignore or exclude compiling the node_modules folder, but this doesn’t seem to do anything?

Apparently babel-parser has an option allowReturnOutsideFunction: true, but I can’t figure out how to set this in my .babelrc file.

Any thoughts on how to get around this?

Advertisement

Answer

Since I could not find a solution to this, I ended up just forking browser-sync and dev-ip.

I give you, browser-stink

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement