pnpm config
별칭: c
구성 파일들을 관리하기
구성 파일들의 INI
형식으로 되어있습니다.
로컬 구성 파일은 프로젝트의 루트에 위치하며 .npmrc
라고 이름이 붙여집니다.
전역 구성 파일은 다음 위치중 한 곳에 위치하게 됩니다.
- $XDG_CONFIG_HOME env 변수가 설정된 경우, $XDG_CONFIG_HOME/pnpm/rc
- 윈도우에서: ~/AppData/Local/pnpm/config/rc
- MacOS에서: ~/Library/Preferences/pnpm/rc
- Linux:에서 ~/.config/pnpm/rc
Commands
<key>와 <value> 설정하기
Config key를 제공된 value로 설정하십시오.
<key> 가져오기
제공된 key의 config value를 출력하십시오.
<key> 삭제하기
구성 파일에서 config key를 지웁니다.
list
모든 구성 설정 표시하기
옵션
--global, -g
Set the configuration in the global config file.
--location
When set to project
, the .npmrc
file at the nearest package.json
will be used.
When set to global
, the performance is the same as setting the --global
option.
--json
Show all the config settings in JSON format.