Michael Schmid
Michael Schmid
Updating dependencies that have known vulnerabilities. Replacing Istanbul with NYC since the former is deprecated.
_obsolete-web_ depends on _@babel/runtime-corejs2_ which is “no longer maintained and not recommended for usage due to the number of issues,” according to its install message. Please update to version 3...
In the generated regular expression, dot characters in ranges are unnecessarily escaped. `[_\.]` can be written simply as `[_.]`, as the dot character is always interpreted literally in a range...
I’m executing the [example code for get a file with an Ajax call](https://stuk.github.io/jszip/documentation/examples/get-binary-files-ajax.html) on NodeJS 18: ```js "use strict"; fetch("/jszip/test/ref/text.zip") // 1) fetch the url .then(function (response) { // 2)...
I believe I have found a bug with referencing documents that contain the dot character (`.`) in their identifier. Let’s say a have document `campaign` that includes the following field...
The function `logWarningMessage` in _utils.js_ depends on the `process` variable being defined. But Webpack 5 does no longer include a polyfill for this Node.js variable. So, when a warning should...