【gulp】ひとつのnode_modulesで複数のプロジェクトを管理したい!
普通にgulpをインストールするとこのようなディレクトリ構造になると思います。
/root
├ node_modules
├ (project)
├ gulpfile.js
└ package.json
こうやってプロジェクトをひとつずつ管理していくとPC内のファイルが増えていってなんだかイヤですね(少なくとも僕はイヤです)。
それを少しでも解消するために、プロジェクトたちをひとつのディレクトリにまとめて、そこにgulpをインストールします。
/root
├ node_modules
├ (project1)
│ └ gulpfile.js
├ (project2)
│ └ gulpfile.js
├ ...
└ package.json
こうすれば、gulpfile.jsはプロジェクトごとに必要になりますがnode_modulesが増えるのを防ぐことができます。
Author And Source
この問題について(【gulp】ひとつのnode_modulesで複数のプロジェクトを管理したい!), 我々は、より多くの情報をここで見つけました https://qiita.com/siromath/items/a1a28d4b37c72124bd82著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .