Даниил Пронин
Даниил Пронин
Input: ```twig {% htmlcompress %} .foo { --a: 1em; padding: var(--a); color: blue; } {% endhtmlcompress %} ``` Expected output: ```html .foo {--a: 1em;padding: var(--a);color: blue;} ``` Actual output: ```html...
If I has this: ``` html ``` It is very similar to this: ``` html ``` So let's replace this image paths too! _I have suggested this feature in https://github.com/imulus/retinajs/issues/178...
Would be cool to show search suggestions when I type a package name on "Yarn: Add and Save Dependency" command prompt.
It is not clear what your plugin does without any documentation except of just obvious `gulp` settings.
Release: [@quasar/app-webpack-v3.4.0](https://github.com/quasarframework/quasar/releases/tag/@quasar%2Fapp-v3.4.0) I just tested it and it works. 1. I ran `npm init quasar` 2. In wizard steps, I chosen Pinia The code I got is pretty simple: `src/stores/index.ts`...
- Added interactive elements using stores - Every `console.log` is described to know why it appears in browser console - Updated required Node version to match `@quasar/app` requirements - Do...
If I have any `url(data:image/...)` in my CSS then CSSgrace fires an error: ``` [10:09:48] Plumber found unhandled error: Error in plugin 'gulp-postcss' Message: ENOENT, no such file or directory...
There are two rules to disallow duplicates dollar variables and mixins: > [no-duplicate-dollar-variables](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/no-duplicate-dollar-variables/README.md): Disallow duplicate dollar variables within a stylesheet. > > [no-duplicate-mixins](https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/no-duplicate-mixins/README.md): Disallow duplicate mixins within a stylesheet. But...
If I enable `primer/no-unused-vars`, I cannot use `--fix` feature of Stylelint. If I just disable it, like `"primer/no-unused-vars": false` or remove this line, `--fix` is working again.