YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* 設定をグローバル、ユーザー、プロジェクトで使い分ける [#...
** 設定ファイルのパス [#hbd1f045]
| 種別 | パス | パス(Wi...
| プロジェクトごと | /path/to/my/project/.npmrc | ...
| ユーザーごと | ~/.npmrc | %USERPR...
| グローバル | $PREFIX/etc/npmrc | %APPDAT...
| ビルトイン | /path/to/npm/npmrc | ...
** 設定の変更 [#s39b000f]
*** ユーザーごとの設定の変更 [#r868b095]
npm config set editor notepad
*** グローバルの設定の変更 [#z4cab28c]
npm config set -g editor notepad
*** プロジェクトごとの設定の変更 [#h8440853]
npm config set --userconfig ./.npmrc editor notepad
** 設定の確認 [#g85a3fb6]
*** ある項目の設定 [#id4516f0]
npm config get editor
*** すべての設定 [#y4fd06a2]
npm config ls -l
** 設定の削除 [#x3c47c71]
npm config delete editor
npm config delete -g editor
** 参考 [#secf3b4b]
https://docs.npmjs.com/misc/config
終了行:
* 設定をグローバル、ユーザー、プロジェクトで使い分ける [#...
** 設定ファイルのパス [#hbd1f045]
| 種別 | パス | パス(Wi...
| プロジェクトごと | /path/to/my/project/.npmrc | ...
| ユーザーごと | ~/.npmrc | %USERPR...
| グローバル | $PREFIX/etc/npmrc | %APPDAT...
| ビルトイン | /path/to/npm/npmrc | ...
** 設定の変更 [#s39b000f]
*** ユーザーごとの設定の変更 [#r868b095]
npm config set editor notepad
*** グローバルの設定の変更 [#z4cab28c]
npm config set -g editor notepad
*** プロジェクトごとの設定の変更 [#h8440853]
npm config set --userconfig ./.npmrc editor notepad
** 設定の確認 [#g85a3fb6]
*** ある項目の設定 [#id4516f0]
npm config get editor
*** すべての設定 [#y4fd06a2]
npm config ls -l
** 設定の削除 [#x3c47c71]
npm config delete editor
npm config delete -g editor
** 参考 [#secf3b4b]
https://docs.npmjs.com/misc/config
ページ名: