-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

webpack


> Bundle a web project's js files and other assets into a single output file.

More information.


Create a single output file from an entry point file:

webpack {app.js} {bundle.js}

Load CSS files too from the JavaScript file (this uses the CSS loader for `.css` files):

webpack {app.js} {bundle.js} --module-bind '{css=css}'

Pass a config file (with e.g. the entry script and the output filename) and show compilation progress:

webpack --config {webpack.config.js} --progress

Automatically recompile on changes to project files:

webpack --watch {app.js} {bundle.js}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 14:49:04 2024