Emily Marigold Klassen

Results 159 comments of Emily Marigold Klassen

Thanks for the info! That's exactly why i open an issue before working on a PR. 😊

I'd like to work on it, but I haven't done anything yet. Thanks for the nudge

I would try to use libmagic on unix systems, either by shelling out to `file`, or using the [`mmmagic` native bindings](https://www.npmjs.com/package/mmmagic). I tested both and they work, though i didnt...

I wrote the following custom JS to automatically switch by updating your config: ```js const path = require('path'); const fsp = require('fs/promises'); if (typeof window.__themeListenerUnsubscribe === 'function') { window.__themeListenerUnsubscribe(); window.__themeListenerUnsubscribe...

> @forivall I'm curious of the `if` statement above and its purpose, and removing the event listener at the bottom. Do these go in a file somewhere, executed sequentially? Is...

Right now, i have a dirty solution using [`patch-package`](https://npm.im/patch-package): `patches/enzyme-adapter-react-16+1.15.6.patch` ```patch diff --git a/node_modules/enzyme-adapter-react-16/build/ReactSixteenAdapter.js b/node_modules/enzyme-adapter-react-16/build/ReactSixteenAdapter.js index 5fc24a5..cfb2bbb 100644 --- a/node_modules/enzyme-adapter-react-16/build/ReactSixteenAdapter.js +++ b/node_modules/enzyme-adapter-react-16/build/ReactSixteenAdapter.js @@ -847,7 +847,13 @@ var ReactSixteenAdapter = /*#__PURE__*/function...

awesome. i'll submit a PR when i have a few more extra cycles in the next few days (hopefully i remember).

as I tend to use `latest` for my release branch name, i'll look into taking on this issue.

yeah, in the spirit of that keeping simplicity principle, i was going to just suggest supporting a few well-known keys, such as "release" and "latest" and "current", and to do...

Judging by how estree focuses on stability of the api, i think the > Create a new node just for the property key option is out of the question. If...