-
```
Our current build process uses yuicompressor, but we should investigate
other possibilities. Specifically, I would like to look at Google's
Closure: http://code.google.com/closure/compiler/ and s…
-
This runs before minification. Can you add an option to append/prepend after minification?
-
Hi,
I´m having a problem when I make minification with css. I have 2 lines, the first one remove the spaces near the +. With this the Google Chrome does not shows the right position. However, with th…
-
hi,
i have this css rules:
bd_span{ width: 49.0%}
is being compressed to this:
.bd_span{width:49.0}
width:49.0 is wrong!!!
current version: 2.4.8
-
I would like to know if its possible to implement a way to have the diet template compile into a minified html (like how Jade does when its compiled/rendered into html)
-
All HTML files should be minified:
- Remove whitespace and newlines
- Maybe remove comments, if it can be done in a way that doesn't affect tools that depend on HTML comments. If not, no big deal.
-
The CSS and JS of the site can be minified to speed up loading time. We'll need to research how it is done in Django.
-
### Related problem
There is no related problem.
### Proposed solution
I suggest user-defined variable and function names are shortened as much as possible (e.g one character, growing as necessary)…
-
I have 2 files:
1. test.js
```
import { bogus } from './bogus.js';
bogus()
```
2. bogus.js
```
function foo() {
console.log('foo');
}
export {
foo
}
```
If `bogus.js` is minified, eslint-…
-
Hugo Pipes allow [the minification of CSS assets](https://gohugo.io/hugo-pipes/minification/)
I'm working on an implementation in BeautifulHugo [in this dedicated branch](https://github.com/RoneoOr…