silverwind
silverwind
It seems to have moved [here](https://github.com/storybookjs/storybook/tree/next/code/lib/eslint-plugin), I'd suggest to archive this repo to avoid any confusions.
> the deployed on-disk size of the library is reduced from around 1.2 MB to 0.3 FYI, according to https://packagephobia.com/result?p=yaml, it's currently at 667 KB, not 1.2MB. The 257 published...
Right, I see similar, 792kB in `dist`, 452kB in `browser`: ``` du -sh node_modules/yaml 1.3M node_modules/yaml ```
git, go, node (with npm), make, curl at least. Maybe just use the [`test_env` image](https://gitea.com/gitea/test-env/src/branch/main/Dockerfile) which should have all of them.
Could use a temporary label like `command/pending` to prevent duplicate runs. Also, it serves a double purpose in indicating to users that the command was accepted.
I don't suppose these action scripts run all within the same process, right? If so, no amount of in-process lock will help, but if the file system is shared between...
This is not the right approach to update indirect dependencies as it will result in a mix of old and new versions in the dependency tree. Instead, the packages that...
If you are willing to do a breaking change (v2), I'd suggest making the glob-based `include` and `exclude` options the only options and remove all the others.
Make the patterns accept forward slashes only and when on Windows, replace foward with backward slashes. That's how pretty much all glob implementations that I know work. I'm not sure...
`gobwas/glob` is definitely not right, it's a pattern matching library, not a file system glob library. I just noticed how misnamed it actually is. I think stdlib https://pkg.go.dev/path/filepath#Glob might be...