Created
June 3, 2013 01:46
-
-
Save matsukaz/5695724 to your computer and use it in GitHub Desktop.
symlinkで複数モジュールの管理を楽に ref: http://qiita.com/items/25740c8680d5a26e42b5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install -g symlink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parent <- child <- grandchild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
symlink -r . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd hoge-parent && npm link | |
cd .. | |
cd hoge-child && npm link | |
cd .. | |
cd hoge-grandchild && npm link |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment