Get Free Audit

The Integration of Babel and Post CSS in Magento 2

Oct 2, 2018

2685 Andrey Litvin

The Integration of Babel and Post CSS in Magento 2

Magento is a huge engine written by a large number of talented programmers. The problem is that due to its prevalence, they cannot make any serious changes without changing the major version.

Magento 2 was introduced in July 2015, when the ES5 features were not widely spread. Back then developers were using underscore for working with arrays, Knockout for data binding, and jQuery for working with DOM.

In 2018, JS developers started using such ES7 features as:

  • The declaration of variables via let and const instead of var
  • Arrow Functions
  • Async, await and Promise instead of callback
  • Destructive assignment, extension operator, array and objects iteration methods

The situation with styles is similar, float was used for design implementation back then, while today you can use grid.

The vast majority of Magento 2 sites still use outdated layout and scripting methods to support older browsers. And although the share of IE11 is only 1.35%, and IE10 0.14%, our customers want sites to be accessible to everyone, regardless of their browser.

I’d like to make it clear that further instructions will help to use ES7 features and new CSS features in browsers older than IE11, since I believe it is not necessary to support IE10 in 2018.

EcmaScript >5

For older browsers to be able to work with the new code standards, Babel needs to be integrated into the development process.

First, you need to add Babel to the dependences of the project. To do this, run the following code in the directory of the project:


In order for Babel to know which files are subject to transpilation, you need to specify the javascript file mask in the dev/tools/grunt/configs/themes.js file.


Replace mymegatheme with the name of your theme, and BelVG with the vendor of the theme.

Now we need to teach Grunt to interact with the declared files. To do this, add the following lines to the dev/tools/grunt/configs/combo.js file:


It remains to teach Grunt to process the files. For this we create the dev/tools/grunt/configs/babel.js file and write the following there:

Andrey_Dubina
Partner With Us Let's discuss how to grow your business. Get a Free Quote.
Talk to Andrey


Done, now you can write modern Javascript and forget about the support of older browsers.

CSS Next

Unfortunately, CSS does not have such a beautiful version name as JavaScript, so I borrowed this name from the PostCSS preset, although we will not use it.

I should also point out that the proposed settings will use PostCSS as a postprocessor, as it was intended. Often I see it being used as a preprocessor, which violates the functions implied by the authors (the answer lies in the title).

First, you need to install the plugin for Grunt and the preset for PostCSS:


Then you need to create a dev/tools/grunt/configs/postcss.json file and insert the following configuration there:


And finally, we create the dev/tools/grunt/configs/postcss.js file with the following content:


Run the following command before the release:


That’s it, thank you for your attention. Now you can write modern code and forget about the browser compatibility.

Andrey Dubina
Partner With Us Looking for a partner to grow your business? We are the right company to bring your webstore to success. Talk to Andrey

6 Comments

  1. Hi, Ammar, thanks for the comment. By default, there is a file – Gruntfile.js.sample. Rename it to Gruntfile.js

  2. Hi, Bishop! Thanks for your comment.
    Why not make the production assembly with a Grunt? Outside of the Magento world, the frontend is built by the same systems like Grunt, Rollup and Webpack. Any of these can be embedded in the Magento and assembled by them.

  3. This is nice, but keep in mind that Grunt is only used for development. Production builds use serverside PHP-based LESS compilation, meaning that all this grunt extension work is totally moot when it comes time to actually get your work up on a site.

Post a new comment

BelVG Newsletter
Subscribe to our mailing list and get interesting stuff and updates to your email inbox.
Email *