You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 20, 2020. It is now read-only.
We were wondering if you would consider adding the feature of disabling minification but still parse and compile available types (e.g. add a separate option in to negate the "Notice that this would also disabling CoffeeScript/SCSS/LESS/Stylus parsing for this response." for response._no_minify)
Currently our project has two development modes detected... dev and dbg (develompent and debug). When we are in debug mode we would like to be able to disable minification for extreme debugging purposes but still enable parsing and compiling. Currently there is nothing like response._no_minification = true;, or similar, to prevent result = cssmin(content) calls from happening similar to response._no_cache. e.g. perhaps something like result = identifier._no_minification ? content : cssmin(content)?
We can use another package in a very small group (in their unusual way) for our debug environment but it would be awesome to see this feature here as your package appears to be handling this according to the specs and is very clean in comparison.
Thanks so much for the consideration and this is definitely one of my more favorite packages. :)
The text was updated successfully, but these errors were encountered:
We were wondering if you would consider adding the feature of disabling minification but still parse and compile available types (e.g. add a separate option in to negate the "Notice that this would also disabling CoffeeScript/SCSS/LESS/Stylus parsing for this response." for
response._no_minify
)Currently our project has two development modes detected... dev and dbg (develompent and debug). When we are in debug mode we would like to be able to disable minification for extreme debugging purposes but still enable parsing and compiling. Currently there is nothing like
response._no_minification = true;
, or similar, to preventresult = cssmin(content)
calls from happening similar toresponse._no_cache
. e.g. perhaps something likeresult = identifier._no_minification ? content : cssmin(content)
?We can use another package in a very small group (in their unusual way) for our debug environment but it would be awesome to see this feature here as your package appears to be handling this according to the specs and is very clean in comparison.
Thanks so much for the consideration and this is definitely one of my more favorite packages. :)
The text was updated successfully, but these errors were encountered: