Minification fails when I try to use Ecmascript-6 features in my app.
If i try to use an arrow function:
$.get('/clients/all').done(response => {
// Do something with the response
})
I get the following error:
/* Minification failed. Returning unminified contents.
(8,45-46): run-time error JS1195: Expected expression: >
(36,6-7): run-time error JS1195: Expected expression: )
(37,1-2): run-time error JS1002: Syntax error: }
*/
And so on with other ES6 features.
Do you know an ItemTransform for ES6?
Bundling and minification is enabled or disabled by setting the value of the debug attribute in the compilation Element in the Web. config file. In the following XML, debug is set to true so bundling and minification is disabled. To enable bundling and minification, set the debug value to "false".
To optimize the performance of an application I found that bundling and minification can significantly improve the performance. It can be applied on MVC as well as in ASP.NET web forms.
You can see ScriptBundle and StyleBundle objects we are using for bundling the js and CSS types of files. ScriptBundle: is responsible for Script files i.e javascript (JS). StyleBundle: is responsible for stylesheet files i.e CSS.
Bundling and Minification are two performance improvement techniques that improves the request load time of the application. Most of the current major browsers limit the number of simultaneous connections per hostname to six. It means that at a time, all the additional requests will be queued by the browser.
Still there is no .NET bundling package for ES6+.
But as a workaround you can use: babeljs.io > Try It Out > Presets: ES2015.
The following code:
var gridNames = Enumerable.From(verifiedKeys).Select(x => `demo_${x}`).ToArray();
Will be translated into:
var gridNames = Enumerable.From(verifiedKeys).Select(function (x) {
return "demo_" + x;
}).ToArray();
Link: https://babeljs.io/repl and check: Presets > ES2015
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With