Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom babel config #26

Closed
rauchg opened this issue Oct 16, 2016 · 7 comments
Closed

Custom babel config #26

rauchg opened this issue Oct 16, 2016 · 7 comments

Comments

@rauchg
Copy link
Member

rauchg commented Oct 16, 2016

Perhaps directly take babel in package.json, unless next.babel is set.

@rauchg
Copy link
Member Author

rauchg commented Oct 16, 2016

If we move forward with this, we can document in the README how to for example add decorators support to next.

@timoxley
Copy link
Contributor

timoxley commented Oct 28, 2016

Note that this appears to work out of the box already if you simply configure plugins and transforms in your package.json or .babelrc

e.g. in package.json

{
  "name": "my-app",
  
  "babel": {
    "presets": [
      "latest",
      "react"
    ],
    "plugins": [
      "babel-plugin-istanbul",
      "transform-runtime"
    ]
  }
}

This works because by default babel will merge any configurations it finds in parent directories.

Users will need to set these up anyway if they're going to test code that runs outside next.

However, I did not have any luck using next with mobx + babel-plugin-transform-decorators-legacy. The code compiled just fine and it appears to run on the server, but none of the decorators seem to function correctly. Didn't look into it very deeply, but it may be something to do with the order of the babel plugins.

@reflog
Copy link

reflog commented Oct 30, 2016

@timoxley - great tip, did you figure out why mobx observers didn't fire?

@vdanchenkov
Copy link

vdanchenkov commented Oct 31, 2016

@timoxley It didn't work for my case. Looks like plugin added this way got lowest priority. Even lower then presets. Am I right? Is it how it's intended to work?

I guess I need to fix my plugin to make it work regardless of priority.

P.S. Hmm... It might be the source of problem with mobx

@timoxley
Copy link
Contributor

timoxley commented Nov 1, 2016

@reflog NFI.
@vdanchenkov yeah the problem is almost definitely because of the plugin order, not sure if solvable without some hackery by next.

@rauchg
Copy link
Member Author

rauchg commented Nov 1, 2016

@timoxley thanks a lot for that report. Very happy that it already partially works!

@rauchg
Copy link
Member Author

rauchg commented Nov 1, 2016

As far as potential solutions, one could be that we consider the set of transformations performed by next the "next bundle", and you're able to override the entire configuration, specifying yourself where that next bundle falls.

This is just a quick conjecture I just thought of, not sure if it's an actual solution.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants