Daniel Ruf
Daniel Ruf
Hi @sabrinaluo, according to https://yarnpkg.com/lang/en/docs/selective-version-resolutions/ it is only meant for subdependencies, not the toplevel dependencies as these would be normally set in the lockfile. > which lets you define custom...
Try the following example and `yarn why supports-color`: ``` { "name": "yarn-pkg-test", "version": "1.0.0", "main": "index.js", "license": "MIT", "dependencies": { "chalk": "^2.4.2" }, "resolutions": { "chalk/supports-color": "5.3.0" } } ```
So this is a feature request?
Sure, do you need help with creating a PR or do you know the needed steps?
@farjanaHuq first ensure that you fork the repo to your own account. After this clone the repository to your computer using some terminal / shell. Then create a new branch,...
@mehulbechra as you can see the issue is still open. I do not know what the current status is, I did not open this issue. At least the PR is...
\s is any whitespace character \S is any non-whitespace character You can test regular expressions at https://regex101.com/
I think we should debug this in detail. In general it should be `.*` or `.+` as a qualifier is needed. Plus `\s` if relevant.
> This would be a sensible thing to merge. Leaving out .gitignore from the repo is... unusual Definitely
> That's why the default node repos (generated by GitHub) include a .gitignore. Exactly