Guido Flohr
Guido Flohr
In my (jest) test I mock XHR like this: ``` mock.get('/assets/locale/de/LC_MESSAGES/http.json', { status: 200, body: 'some string', }); ``` I use `XMLHTTPRequest` in my code in like this: ```typescript loadFile(url:...
The incomplete fix to gonzus/JavaScript-Duktape-XS#13 breaks qgoda ("Perl sub died with error: Cannot find module 'buffer'!"). Fix: Check the version of the Duktape binding and bail out if the version...
In large projects file system changes do not seem to be recognized all the times. This is rather a bug in the underlying third party modules but maybe there is...
Global options that do not have a local counterpart should automatically be globalized. Such options are `--verbose` or `--quiet`. On the other hand, `--help` has different meanings as a local...
They should work like `contains` and `icontains` but use a regular expresion instead of an exact match.
Currently, the original file is written so that the source code is exposed. But the source code may contain sensitive data, so rather delete the file altogether.
The default value for `config.linguas` should not be the empty list but `[en]`. When creating assets, its `lingua` property should default to the main language of the site, that is...
Neither Qgoda's own watch mode nor that of webpack or gulp is working when running inside a docker container Docker on Mac OS X, see docker/for-mac#2375 Can be reproduced with...
Instead of using the source filter and the obscure first line in JavaScript files, rather write a simple `require_other()` function that just searches the file in `@INC` and returns the...
The HTMLFilter interface currently runs `HTML::Parser` over the document and lets the plug-ins install handlers for the various events. That is not flexible enough. It's better to use `HTML::Tree` so...