-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Description
After some thought,
maybe it is possible to replace/improve some of the build/render scripts with the capabilities of webpack as a bundler,
I in my experience webpack is great tool due to -
it's web-development-server
supported loaders - https://webpack.js.org/loaders and even pugjs loader
extends modularization - https://webpack.js.org/concepts/modules/,
"build" optimizations, etc.
I like the simplicity of the current build/render scripts,
it's straight forward: build script calls render script that has some build-in values for file paths and the "rendering utility",
very simple to understand/manipulate, and still webpack comes with a lot of benefits..
The drawback of webpack in my opinion,
is the complexity for "first time configuration".
Thanks