During install of dependencies I get a warning about a transitive dependency being wrong:
yarn install --frozen-lockfile
yarn install v1.22.21
warning ../package.json: No license field
[1/4] π Resolving packages...
[2/4] π Fetching packages...
warning vscode-languageclient@7.0.0: The engine "vscode" appears to be invalid.
[3/4] π Linking dependencies...
[4/4] π¨ Building fresh packages...
β¨ Done in 4.01s.
Upon using the yarn why command this dependency is linked to vite-plugin-checker:
yarn why vscode-languageclient
yarn why v1.22.21
warning ../package.json: No license field
[1/4] π€ Why do we have the module "vscode-languageclient"...?
[2/4] π Initialising dependency graph...
[3/4] π Finding dependency...
[4/4] π‘ Calculating file sizes...
=> Found "vscode-languageclient@7.0.0"
info Reasons this module exists
- "vite-plugin-checker" depends on it
- Hoisted from "vite-plugin-checker#vscode-languageclient"
info Disk size without dependencies: "944KB"
info Disk size with unique dependencies: "1.43MB"
info Disk size with transitive dependencies: "2.14MB"
info Number of shared dependencies: 5
β¨ Done in 0.16s.
Reproduction
Going into my repository I execute:
git clean -dxf
yarn install --frozen-lockfile
Expected behavior
I am expecting to not get a warning about transitive dependencies brought in by vite-plugin-checker
yarn install --frozen-lockfile
yarn install v1.22.21
warning ../package.json: No license field
[1/4] π Resolving packages...
[2/4] π Fetching packages...
[3/4] π Linking dependencies...
[4/4] π¨ Building fresh packages...
β¨ Done in 4.01s.
In this case it's useless warning and can be ignored.
Unfortunately - only way to hide error specifically for vscode - only all
errors about engine yarn install --ignore-engines
Perhaps this error can be ignored? If so this issue can be closed.
Describe the bug
During install of dependencies I get a warning about a transitive dependency being wrong:
Upon using the yarn why command this dependency is linked to vite-plugin-checker:
Reproduction
Going into my repository I execute:
Expected behavior
I am expecting to not get a warning about transitive dependencies brought in by vite-plugin-checker
System Info
Additional context
This is not a blocker assuming that it doesn't indicate a more serious issue. I noticed this: https://github.com/microsoft/vscode/issues/91009
One poster commented:
Perhaps this error can be ignored? If so this issue can be closed.
Validations