Sébastien Règne
Sébastien Règne
Hi, I tried with the [`inPlace`](https://stryker-mutator.io/docs/stryker-js/configuration/#inplace-boolean) option and the tests pass. But `inPlace` is incompatible with the [`ignorePatterns`](https://stryker-mutator.io/docs/stryker-js/configuration/#ignorepatterns-string) option. I use `ignorePatterns` to remove directories from the list of tested...
The files I put in `ignorePatterns` aren't tested. So there are no test files to exclude with the `mochaOptions.spec` option. I understand that this is not the goal of `ignorePatterns`,...
Thanks for the `mutate` option. 👍 I found another problem with `inPlace`: file permissions aren't preserved. I have a file with permissions `-rwxr-xr-x` which loses the permission to execute: `-rw-rw-r--`....
I created a minimal [testcase_rwx.zip](https://github.com/stryker-mutator/stryker-js/files/10817671/testcase_rwx.zip) to reproduce the permission problem: 🏄♂️ - _src/_ - _foo.js_ (`-rw-rw-r--`): `module.exports = function foo() { return "foo"; };` - _bar.js_ (`-rwxr-xr-x`): `function bar() {...
The [`import.meta.resolve()`](https://nodejs.org/api/esm.html#importmetaresolvespecifier-parent) method has become synchronous in [**Node v20**](https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V20.md#20.0.0), but you still need the `--experimental-import-meta-resolve` flag. > **Synchronous `import.meta.resolve()`** > > In alignment with browser behavior, this function now returns...
@HendrikF Thank you for the process. For my browser extension, I implemented your process and it works. Here is an excerpt of the [source code](https://github.com/regseb/castkodi/blob/209eac0/src/core/scraper/dmax.js) in JavaScript (which can be...
The new version **7.7.0** supports Prime Video. Firefox 124+ or Chrome 123+ browsers required. And you need the [Amazon VOD](https://github.com/Sandmann79/xbmc) add-on. It only works with the **[www.primevideo.com](https://www.primevideo.com/)** website (but not...
I've [added support](https://github.com/regseb/castkodi/commit/a334d82b3e7609fa382057a7361ef1a581acc2bd) in Cast Kodi **7.8.0** (require Firefox 125+ or Chrome 124+) for: - [www.amazon.com](https://www.amazon.com/gp/video/storefront/) - [www.amazon.co.uk](https://www.amazon.co.uk/gp/video/storefront) - [www.amazon.de](https://www.amazon.de/gp/video/storefront/) - [www.amazon.co.jp](https://www.amazon.co.jp/gp/video/storefront/)
I reproduce the bug with this package too: ```JSON { "name": "testcase", "version": "1.0.0", "dependencies": { "addons-scanner-utils": "9.3.0", "htmlhint": "1.1.4" } } ``` - [`addons-scanner-utils`](https://github.com/mozilla/addons-scanner-utils/blob/9.3.0/package.json#L23) has `node-fetch` `2.6.11` in _peerDependencies_...
> There is a weird thing that happens within the `package.json` that you may have missed out @regseb I tested with this two `package.json` and they aren't modified after `npm...