-
Would anyone be able to tell me how you add single line css formatting into the plugin? the rest of it works great, this one issue is holding me back. Cheers
*remove line breaks at the end of each ru…
-
The code ```alert("hello \"john\"");```, when minified, becomes ```alert(`hello \\"john\\"`)```.
This is incorrect and results in two extra backslashes being introduced in the alert.
Tested in v…
penn5 updated
4 months ago
-
I'm trying to disable html minification in production mode, but `minify: false` makes no effect. It makes me sad =(
```
mix.html({
htmlRoot: './src/*.html',
partialRoot: './src/partials',
l…
-
On Meteor 2.1, the following CSS is broken by Meteor minification in production builds:
```
html {
--mq-xs: var(--, );
}
```
it becomes:
```
html{--mq-xs:var(--,)}
```
The space af…
arggh updated
3 years ago
-
-
Remove server rendering.
Compile jade into html.
Minify and bundle all the html into one js to have one request ever.
-
There are some arrow functions which need to be changed to es5 fns
-
After code minification with Uglify additional plus is added to the end of formatted number, e.g. "400 +" instead of "400" (when format is set to "0,0").
This happens because variable _signed_ in f…
-
So, yeah, we need this stuff. Forcing people to just set up Webpack is not an option; this should be done by Flutterby out of the box.
Ideally, this would be implemented as a filter extension. For …
hmans updated
7 years ago
-
Input: x = (3 + 4) // 7
output: x=3+4//7
expected: x=(3+4)//7