• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

_cabal_deps/H03-May-2022-79,64952,768

main/H09-Sep-2001-8166

src/Text/H03-May-2022-5538

test/H03-May-2022-189135

LICENSEH A D09-Sep-20011.5 KiB3124

Readme.mdH A D09-Sep-2001973 3723

Setup.hsH A D09-Sep-200146 32

cabal.projectH A D03-May-2022418 1211

hjsmin.cabalH A D03-May-20222.1 KiB7158

Readme.md

1hjsmin
2======
3
4[![Build Status](https://secure.travis-ci.org/erikd/hjsmin.png?branch=master)](http://travis-ci.org/erikd/hjsmin)
5
6Haskell implementation of a command line javascript minifier.
7
8The executable generated from this package simply does command line parsing
9before handing the off the minification process to the [language-javascript]
10package which also does the rendering.
11
12
13How to build
14------------
15
16	cabal clean && cabal configure && cabal build
17
18Tests
19-----
20
21There are currently no tests, because all the heavy lifting is done by
22[language-javascript].
23
24
25Reporting Bugs
26--------------
27
28Bugs like failing to parse certain chunks of Javascript or errors in the
29minification process should be reported on the [language-javascript] issue
30tracker.
31
32Bugs about failure to handle command line paramters should be reported on the
33[hjsmin] issue tracker.
34
35[hjsmin]: https://github.com/erikd/hjsmin
36[language-javascript]: https://github.com/erikd/language-javascript
37