我创建了一个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
但是,当我安装模块时,出现此错误:
找不到本地口
尝试运行:npm install gulp
屏幕截图
我的理解是,它gulp
与模块一起提供,因为我在其中声明了它,devDependencies
但看起来我的npm postinstall
脚本找不到gulp
。
我想念什么吗?