requirejs-babel
requirejs-babel copied to clipboard
An AMD loader plugin for Babel
Here are some proposed changes for `es6.js` to be able to load lit-html (and other problematic modules). The rest of the changed files are just for testing and don't necessarily...
If the source files is in the AMD format, an ES5 source code will be assumed.
The errors are logged on the console in the web browser, but they should still be handled by calling `onload.error`.
Paths relative to the current directory include the file extension. But the recognition is not easy, because the `name` parameter passed to the plugin is not the original module name...
The `es6!` plugin can't load `lit-html` due to problems with relative paths and file extensions. To reproduce, do an ``` npm install lit-html ``` add the entry below to `paths`...
Looking to find out if there is a way to bundle Babel deps for RequireJS, and I happened upon your project. I really need help with this issue: https://github.com/requirejs/requirejs/issues/1621 If...
Regarding r.js optimization, what are the benefits of using the pragmas approach in the `es6` plugin over just adding it and `babel` to the `stubModules` array in the build config?...
How can I use this and webpack 2? When i bundle my code with Webpack 2 I get the following errors: 'Uncaught Error: Cannot find module "es6!./fdt.datetime.controller"' Is there a...
I tried to load a es6 module which imports relative paths to ther es6 modules, it loads the first file correct but all the imports in this file fails. Would...