atlas/tools/unused/combine.sh
Hans5958 0cd0896629 Move unused scripts to the unused folder
Just realised theere is shrinkFont and allCharacters. Is it even worth it to recompile for every new character?
2022-04-19 09:05:25 +07:00

9 lines
189 B
Bash

#!/bin/bash
touch combined.js;
cat ../web/_js/atlas.js > combined.js;
cat ../web/_js/view.js >> combined.js;
cat ../web/_js/draw.js >> combined.js;
cat ../web/_js/main.js >> combined.js;