当前位置: 首页 > 文档资料 > Yarn 中文文档 >

依赖和版本

优质
小牛编辑
122浏览
2023-12-01

Package dependencies are critical to the success of a package. When you develop the functionality of your package, you will very likely use existing code defined in other packages. Those packages then become dependencies to your project.

Your package.json file is the home for the declaration of all your dependencies, from development to production to optional. You will specify both the package name and minimum version information for each dependency.

Your yarn.lock file ensures that your package is consistent across installations by storing the versions of which dependencies are installed with your package.