LoginSignup
1
0

More than 1 year has passed since last update.

【3分】global install用のyarnをこ◯してnpmに統一した

Last updated at Posted at 2022-03-21

npm経由でしかglobalにinstallさせないようにする

# global addされたnode packageの在処を特定
yarn global dir

# 上記で特定した場所に移動
cd ${LOCATION}

# node_modulesを削除
rm -rf node_modules

# 再度新しいnode_modulesを作成
(at the same location) yarn

これで完了

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0