├── .travis.yml ├── LICENSE ├── README.md ├── bin └── hasp ├── examples └── foo.hcss ├── makefile └── test ├── breakpoints ├── input.hcss └── output.css ├── comments ├── input.hcss └── output.css ├── includes ├── input.hcss ├── other.hcss └── output.css ├── plain-css ├── input.css └── output.css ├── run └── variables ├── input.hcss └── output.css /.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | script: make 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/README.md -------------------------------------------------------------------------------- /bin/hasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/bin/hasp -------------------------------------------------------------------------------- /examples/foo.hcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/examples/foo.hcss -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/makefile -------------------------------------------------------------------------------- /test/breakpoints/input.hcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/breakpoints/input.hcss -------------------------------------------------------------------------------- /test/breakpoints/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/breakpoints/output.css -------------------------------------------------------------------------------- /test/comments/input.hcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/comments/input.hcss -------------------------------------------------------------------------------- /test/comments/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/comments/output.css -------------------------------------------------------------------------------- /test/includes/input.hcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/includes/input.hcss -------------------------------------------------------------------------------- /test/includes/other.hcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/includes/other.hcss -------------------------------------------------------------------------------- /test/includes/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/includes/output.css -------------------------------------------------------------------------------- /test/plain-css/input.css: -------------------------------------------------------------------------------- 1 | /* Just CSS */ 2 | 3 | body { 4 | background: #fff; 5 | } 6 | -------------------------------------------------------------------------------- /test/plain-css/output.css: -------------------------------------------------------------------------------- 1 | /* Just CSS */ 2 | 3 | body { 4 | background: #fff; 5 | } 6 | -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/run -------------------------------------------------------------------------------- /test/variables/input.hcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djanowski/hasp/HEAD/test/variables/input.hcss -------------------------------------------------------------------------------- /test/variables/output.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | } 4 | --------------------------------------------------------------------------------