This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
""" | |
This script uses javascript-minifier.com to compress JS files. The way you can us it is: | |
To generate a .min.js version in the same folder: | |
jsminify.py some-file.js | |
To watch for changes as you edit file(s) in a directory: | |
jsminify.py -w ./ |