Hi all, I'm working on a character sheet (Battletech - A Time of War specifically), and something that's annoyed me for a while when developing the sheets is that the JavaScript is embedded in the HTML, which prevents any IDE from giving me assistance when working. So recently, I've pulled all the JavaScript out into its own separate file to use when developing the sheet worker scripts. Now what I'd like to do is write a little script that can take all the JavaScript from the stand alone file, and insert it into the character sheet HTML file. I'd also like to wire this in as a git hook to do it automatically for me every time the JavaScript file is changed. Is this allowed, or would this be a big no no? Also, if anyone else has solved this problem in a different way, I'm happy to hear solutions that don't involve git hooks. :) Git hooks just seems like the only way to automate this, as far as I am aware.