webapp-module-storage
次の定義を持つモジュール()を作成しました。
package.json
{
"dependencies": {
...
},
"devDependencies": {
"gulp": "^3.9.1",
...
},
"name": "webapp-module-storage",
"scripts": {
"postinstall": "gulp build",
"test": "gulp test"
}
}
モジュールをインストールするときに、別のモジュール内でモジュールを使用できると思いました。
npm install github:myorg/webapp-module-storage#master
ただし、モジュールをインストールすると、次のエラーが発生します。
ローカルのgulpが見つかりません
実行してみてください:npm install gulp
スクリーンショット
私の理解では、gulp
モジュールを宣言したため、モジュールと一緒に出荷されますがdevDependencies
、npm postinstall
スクリプトでが見つからないようgulp
です。
私は何かが足りないのですか?