laravel-mix-polyfill icon indicating copy to clipboard operation
laravel-mix-polyfill copied to clipboard

A Laravel Mix extension to include polyfills by using Babel, core-js, and regenerator-runtime

Results 6 laravel-mix-polyfill issues
Sort by recently updated
recently updated
newest added

Hi Both the production as well as the development build fail with the following error: ``` ERROR in ./src/js/app.js Module build failed (from ./node_modules/babel-loader/lib/index.js): Error: [BABEL] src\js\app.js: Invalid Option: corejs...

If someone could please educate me: if Mix already compiles E6+ down to Vanilla JS, when/why would I need to utilize this extension and use polyfills? Should I be using...

Hi there, after enabling the plugin, I am getting: > SCRIPT5022: Exception thrown and not caught which refers to ``` var getterFor = function getterFor(TYPE) { return function (it) {...

Laravel Mix has "basic Typescript support", but there are not examples included here using `ts()` in the `webpack.mix.js` configuration file. So do you know if this package is compatible with...

I installed via `npm install --save laravel-mix-polyfill` ``` // webpack.mix.js mix.js('resources/js/app.js', 'public/js') .sass('resources/sass/app.scss', 'public/css') .polyfill({ enabled: true, useBuiltIns: "usage", targets: {"ie": 11}, debug: true, corejs: 2, }); ``` ``` //...

I'm using your library like this: ```js mix.js('resources/js/app.js', 'public/js') .sass('resources/sass/app.scss', 'public/css') .sourceMaps() .polyfill({ enabled: true, useBuiltIns: "usage", targets: '> 0.25%, not dead, IE >= 11' }); ``` This does not...