Miquel Alejandro Vicens Dalmau
Miquel Alejandro Vicens Dalmau
Following your documented sample, if the ``s are compressed in the same line: ```html ``` It processes only the first file: it does not work!
It would be very recommended to rewrite doc. samples replacing `\n` with `\r\n`. It is a good practice, in addition to avoiding unexpected and bizarre errors like [this one](https://github.com/jonkemp/gulp-useref/issues/271).
Taking this simple sample: ```js const { watch } = require('gulp'); function css(cb) { cb(); } function js(cb) { cb(); } exports.default = function () { watch('src/**/*.css', css); watch('src/scripts/index.js', js);...
Taking this Gulp file: ```js const { watch } = require('gulp'); function css(cb) { cb(); } function js(cb) { cb(); } function defaultTask(cb) { watch('src/**/*.css', css); watch('src/scripts/index.js', js); cb(); }...
In Chrome, textareas with minimum length restriction has unexpected behavior when it is form-validated. It seems to be related to [this pull request](https://github.com/facebook/react/pull/27635). [Here](https://plnkr.co/edit/oSBPQ2ZNvOyz44bc?open=Hello.js&deferRun=1) you have a demo (code example)....
I upgraded from 2.0.0 and has stopped working! Looking for solutions, I find another issue about the same problem where the author (@jonschlinkert) said that ["[...] this was refactored"](https://github.com/jonschlinkert/delete-empty/issues/14#issuecomment-841201114) and...