├── .gitignore ├── .gitmodules ├── LICENCE ├── README.md ├── TODO ├── boot.properties ├── circle.yml ├── resources └── Uglify2 │ ├── compress.js │ └── uglifyjs.self.js ├── src └── nha │ ├── boot_uglify.clj │ └── boot_uglify │ ├── boot_task.clj │ ├── brotli.clj │ ├── core.clj │ ├── files_util.clj │ ├── gzip.clj │ ├── minify_js.clj │ ├── nashorn.clj │ ├── trieme.clj │ └── uglifyjs.clj └── test ├── nha ├── boot_uglify │ ├── boot_task_test.clj │ ├── brotli_test.clj │ ├── files_util_test.clj │ ├── gzip_test.clj │ ├── minify_js_test.clj │ ├── nashorn_test.clj │ └── uglifyjs_test.clj └── run.clj └── resources └── samples └── js └── source ├── arrays.js ├── blocks.js └── conditionals.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/TODO -------------------------------------------------------------------------------- /boot.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/boot.properties -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/circle.yml -------------------------------------------------------------------------------- /resources/Uglify2/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/resources/Uglify2/compress.js -------------------------------------------------------------------------------- /resources/Uglify2/uglifyjs.self.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/resources/Uglify2/uglifyjs.self.js -------------------------------------------------------------------------------- /src/nha/boot_uglify.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/boot_task.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/boot_task.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/brotli.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/brotli.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/core.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/files_util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/files_util.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/gzip.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/gzip.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/minify_js.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/minify_js.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/nashorn.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/nashorn.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/trieme.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/trieme.clj -------------------------------------------------------------------------------- /src/nha/boot_uglify/uglifyjs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/src/nha/boot_uglify/uglifyjs.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/boot_task_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/boot_task_test.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/brotli_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/brotli_test.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/files_util_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/files_util_test.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/gzip_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/gzip_test.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/minify_js_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/minify_js_test.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/nashorn_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/nashorn_test.clj -------------------------------------------------------------------------------- /test/nha/boot_uglify/uglifyjs_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/boot_uglify/uglifyjs_test.clj -------------------------------------------------------------------------------- /test/nha/run.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/nha/run.clj -------------------------------------------------------------------------------- /test/resources/samples/js/source/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/resources/samples/js/source/arrays.js -------------------------------------------------------------------------------- /test/resources/samples/js/source/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/resources/samples/js/source/blocks.js -------------------------------------------------------------------------------- /test/resources/samples/js/source/conditionals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nha/boot-uglify/HEAD/test/resources/samples/js/source/conditionals.js --------------------------------------------------------------------------------