- yarn config set <key> <value> [-g|—global]
- yarn config get <key>
- yarn config delete <key>
- yarn config list
管理 yarn 配置文件。
yarn config set <key> <value> [-g|—global]
设置配置项 key 为一个确切值 value。
示例︰
$ yarn config set init-license BSD-2-Clauseyarn config vx.x.xsuccess Set "init-license" to "BSD-2-Clause".✨ Done in 0.05s.
yarn config get <key>
回显给定 key 的值到 stdout。
示例︰
$ yarn config get init-licenseBSD-2-Clause
yarn config delete <key>
从配置里删除指定 key。
示例︰
$ yarn config delete test-keyyarn config vx.x.xsuccess Deleted "test-key".✨ Done in 0.06s.
yarn config list
显示当前配置。
示例︰
$ yarn config listyarn config vx.x.xinfo yarn config{ 'version-tag-prefix': 'v','version-git-tag': true,'version-git-sign': false,'version-git-message': 'v%s','init-version': '1.0.0','init-license': 'MIT','save-prefix': '^','ignore-scripts': false,'ignore-optional': true,registry: 'https://registry.yarnpkg.com','user-agent': 'yarn/0.15.0 npm/? node/v6.2.1 darwin x64' }info npm config{ registry: 'https://registry.npmjs.org/','//localhost:4873/:_authToken': 'some-auth-token' }✨ Done in 0.05s.
原文: https://yarnpkg.com/zh-Hans/docs/cli/config
