Saylua-Archive / SayluaLegacy

Browser Game In Development
saylua.com
GNU Affero General Public License v3.0
2 stars 0 forks source link

Migrate to Webpack 2, only build changed packages when using `Gulp Watch` #53

Closed NoiSek closed 7 years ago

NoiSek commented 7 years ago

Move to Webpack 2 to prevent another dependency versioning issue.

Additionally, Dungeons is getting bulky enough to where editing will become a pain for any non-Dungeons context.

Normally, Webpack will cache files in memory and only re-compile builds for files that have changed, but because we are tasking Gulp to recompile via Webpack rather than using webpack --watch this feature is ignored.

Working around our build requirements so that we can use webpack --watch will require some thought.

This may entail replacing Gulp entirely with a Webpack-centric build process.