-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Dependencies | ||
|
||
This guide describes the dependencies of this repository and their purpose. | ||
|
||
## Table of Contents | ||
|
||
- [Table of Contents](#table-of-contents) | ||
- [Package Dependencies](#package-dependencies) | ||
- [Peer Dependencies](#peer-dependencies) | ||
- [Development Dependencies](#development-dependencies) | ||
|
||
## Package Dependencies | ||
|
||
Package dependencies, or just regular dependencies are those packages that are needed for the | ||
library code to run properly and so are are included as part of the library's final production bundle. | ||
|
||
## Peer Dependencies | ||
|
||
Peer dependencies are package dependencies that the library depends on | ||
but are not included as part of the library's final production bundle. | ||
|
||
Usually peer dependencies are packages that would-be users would already have or need | ||
as part of their own applications, and hence, no need to include them as part of | ||
the library code. | ||
|
||
## Development Dependencies | ||
|
||
Development dependencies are package dependencies used while developing library code | ||
but are not part of the library's final production bundle. |