/**
* WebPack plugin which replaces <script src="bundle.js"> to:
*
* <script>
* const bundleScript = document.createElement('script');
* bundleScript.type = 'text/javascript';
* bundleScript.async = true;
* bundleScript.src = 'bundle.js';
* document.body.appendChild(bundleScript);
* </script>
*
* @package js-create-includes-webpack-plugin
* @class JSCreateIncludesWebpackPlugin
* @author Denis Efremov <efremov.a.denis@gmail.com>
* @license MIT
*/