babel icon indicating copy to clipboard operation
babel copied to clipboard

Babel wrapper package for use with Meteor

Results 7 babel issues
Sort by recently updated
recently updated
newest added

React introduced the "New JSX Transform" that no longer requires the React variable to be available in the current context. This isn't enabled by default, but can be done manually,...

in-development

I'm trying to upgrade from Meteor 1.6 to Meteor 1.11.1 and I'm getting the same error on virtually every file: `Invalid property descriptor. Cannot both specify accessors and a value...

in-discussion

Meteor has it's magical `if (Meteor.isClient) import 'foo.scss';` syntax which violates JavaScript standards. What is the best way to achieve compatibility with JavaScript parsers, like js-hyperclick, which fails to parse...

We're using `meteor-babel` in our wallabyJS config, and a recent update to this package has broken it. Here's the compilers part: ```js compilers: { '**/*.js?(x)': wallaby.compilers.babel({ presets: ['meteor', '@babel/preset-react', '@babel/preset-flow'],...

.babelrc ```json { "ignore": [ "imports/do-not-babel.js" ] } ``` This does not seem to be working.

When babel parses React elements, it forgets the variables alias ```js import React from "react"; import ReactDOM from "react-dom"; import { Meteor } from "meteor/meteor"; import { LocaleProvider } from...