UNPKG

webpack-merge-and-include-globally

Version:

Merge multiple files (js,css..) into single file to include somewhere

28 lines (24 loc) 625 B
<!DOCTYPE html> <html> <head> <meta charset=UTF-8> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="./style.css"> </head> <body> <script src="./vendor.js"></script> <script src="./bundle.js"></script> <b>document.write( jQuery ) =</b> <hr/> <script>document.write(jQuery)</script> <hr/> <b>document.write( humps ) =</b> <hr/> <script>document.write(humps)</script> <hr/> <b>document.write( classNames ) =</b> <hr/> <script>document.write(classNames)</script> <hr/> </body> </html>