Brian Kidd

Results 17 comments of Brian Kidd

Ditto for yarn workspaces. I need to tell gradle-node-plugin to use a subfolder for package.json and root for the lock file.

Being able to use renovate with gradle-node would be awesome. Using common files like `.nvmrc` and `.node-version` would probably be all that's needed. https://docs.renovatebot.com/node/ I filed an issue with them...

> This is a little tricky to implement right now since it lets you use versions like `16` and if you've got 16.13.1 installed locally you probably don't want it...

We're seeing this too for the first time today on yarn berry projects with `actions/setup-node@v4`.

For yarn users, setting the following in your `package.json` should get you by until a patch is released. `"resolutions": { "parse5": "7.1.2" }`

This idea appears to have died in darkness. https://github.com/npm/rfcs/pull/314 I think it was an oversight when creating scopes.

I only needed to "pause" animation for one element (to take a [snapshot](https://github.com/americanexpress/jest-image-snapshot)) so this worked: ```javascript await page.evaluate(() => document.querySelector('.wrapper .icon').setAttribute('style', 'animation: none')) ``` Depending on how complex your...