Tuesday 15 January 2019

Compile JavaScript with Webpack in a WordPress Plugin


The goal of this article is to show you how to configure webpack to watch and compile the JavaScript files in a WordPress plugin. What this article will not cover is how to configure webpack to work with every file type known to the world. Our focus is going to be JavaScript. That’s it. What is webpack?
According to the webpack website:
At its core, webpack is a static module bundler for modern JavaScript applications. When webpack processes your application, it internally builds a dependency graph which maps every module your project needs and generates one or more bundles.
Now you might be asking yourself, what is a dependency graph? In webpack, there are files specified as entry points. These entry points are at the top of the dependency graph. Any files required or imported from the entry files will be processed and bundled by webpack.
Benefits
Dependency Management – When concatenating JavaScript files for a WordPress plugin or theme, there is not an efficient way to add in third-party libraries. You can either download and enqueue the minified file or, worse yet, include it as part of the files being concatenating. With webpack in use, we get access to using a package
Source: https://managewp.org/articles/18298/compile-javascript-with-webpack-in-a-wordpress-plugin



source https://williechiu40.wordpress.com/2019/01/15/compile-javascript-with-webpack-in-a-wordpress-plugin/

No comments:

Post a Comment