I'm trying cssmin for grunt
In accordance with the objectives of the docs can be defined "in accordance with the instructions for setting up tasks." When I create a cssmin task using this template, for example:
cssmin: { my_target: { minify: { src: 'path-to/default.css', dest: 'path-to/default.min.css' } } }
a mini file is not created.
If I delete the target level, it works as expected. Am I doing something wrong here? or there are other options than cssmin (In my research, I chose this, since everyone pointed to it)
Using:
- grunt v0.4.1
- cssmin v0.6.0
Thanks in advance,
Thomas
source share