Skip to content

Commit

Permalink
docs: add error codes YN0062 and YN0063 (#2746)
Browse files Browse the repository at this point in the history
  • Loading branch information
isker authored Apr 15, 2021
1 parent 6e445c2 commit 8afcaa2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/gatsby/content/advanced/error-codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,14 @@ A package requests a peer dependency, but its parent in the dependency tree prov

A package is marked as deprecated by the publisher. Avoid using it, use the alternative provided in the deprecation message instead.

## YN0062 - `INCOMPATIBLE_OS`

A package is incompatible with the operating system, as reported by [`process.platform`](https://nodejs.org/api/process.html#process_process_platform). Its installation will be skipped.

## YN0063 - `INCOMPATIBLE_CPU`

A package is incompatible with the CPU architecture, as reported by [`process.arch`](https://nodejs.org/api/process.html#process_process_arch). Its installation will be skipped.

## YN0068 - `UNUSED_PACKAGE_EXTENSION`

A packageExtension is detected by Yarn as being unused, which means that the selector doesn't match any of the installed packages.
Expand Down

0 comments on commit 8afcaa2

Please sign in to comment.