Game File Bundler
A utility for combining your game files into one HTML file.
Once you start making a game, it's very likely that you'll end up creating multiple files to keep your game code organized in a maintainable way. Now you'll want to combine them all into one file that you can upload to itch.io or any other website. The Game File Bundler takes one HTML file and any number of CSS and JS files and writes them all out to one HTML file that can function as a standalone web page. The output file includes the entire adventure.js framework, so that the web page has no external dependencies. If you upload a modified version of adventure.js, that will be included; otherwise, the bundler will include a copy from the server. Adventure.js must always be listed first, followed by your main game file. You can re-order any other files by dragging and dropping them in the list.
Though it's possible to use images with AdventureJS, the game file bundler does not currently handle images. For now, your images must be hosted on a web server with your game file. You can also host image files on a separate server from the game file, as long as your images use absolute URLs.