我有一个Node.js网站,我试图部署到Windows。这个网站要求我运行gulp以使html缩小,等等。为了做到这一点,我在我的deploy.sh
文件中添加了以下内容:
if [ -e "$DEPLOYMENT_TARGET/gulpfile.js" ]; then
echo "Running gulp tasks"
cd "$DEPLOYMENT_TARGET"
eval './node_modules/.bin/gulp'
exitWithMessageOnError "gulp failed"
cd -> /dev/null
fi
我面临的挑战是,我的吞咽文件是在本地使用Gulp 4创建的,据我所知,该版本不受支持。这是基于以下事实:在我的npm-调试器日志文件中,我看到了以下内容:
516 error notarget No compatible version found: gulp@'github:gulpjs/gulp#4.0'
516 error notarget Valid install targets:
516 error notarget ["0.0.1","0.0.2","0.0.3","0.0.4","0.0.5","0.0.7","0.0.8","0.0.9","0.1.0","0.2.0","1.0.0","1.1.0","1.2.0","1.2.1","2.0.0","2.0.1","2.1.0","2.2.0","2.3.0","2.4.0","2.4.1","2.6.0","2.6.1","2.7.0","3.0.0","3.1.1","3.1.2","3.1.3","3.1.4","3.2.0","3.2.1","3.2.2","3.2.3","3.2.4","3.2.5","3.3.0","3.3.1","3.3.2","3.3.4","3.4.0","3.5.0","3.5.1","3.5.2","3.5.5","3.5.6","3.6.0","3.6.1","3.6.2","3.7.0","3.8.0","3.8.1","3.8.2","3.8.3","3.8.4","3.8.5","3.8.6","3.8.7","3.8.8","3.8.9","3.8.10","3.8.11","3.9.0","3.9.1"]
516 error notarget
但是,在我的package.json文件中,我已经将Node设置为
"engines": {
"node": "~5.3.0"
},
这是支持的,我相信这是第四杯的唯一要求。我错过了什么?
谢谢你的帮助!
更新
完整的package.json:
{
"name": "Website",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./src/server.js"
},
"description": "My Website",
"engines": {
"node": "~5.3.0",
"npm": "3.3.12"
},
"devDependencies": {
"bower": "^1.5.2",
"browser-sync": "^2.11.1",
"del": "^2.2.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-concat": "2.6.0",
"gulp-cssnano": "^2.1.0",
"gulp-exec": "^2.1.1",
"gulp-htmlmin": "^1.3.0"
},
"dependencies": {
"body-parser": "~1.8.1",
"cookie-parser": "~1.3.3",
"debug": "~2.0.0",
"express": "~4.9.0",
"express-livereload": "0.0.24",
"morgan": "~1.3.0",
"serve-favicon": "~2.1.3",
"xml2js": "^0.4.12"
}
}
发布于 2016-02-23 09:07:09
根据你的日志:
错误无目标未找到兼容版本: gulp@'github:gulpjs/gulp#4.0‘
您似乎使用了npm的低版本来安装您的依赖项。
而且您没有在package.json
文件中指定npm版本,这将使Azure应用程序使用默认的NPMVersion2.11.2。
因此,将npm版本添加到"engines“闭包中,下面是我的测试'package.json':
{
"engines": {
"node": "~5.3.0",
"npm": "3.3.12"
},
"dependencies":{
"gulp": "github:gulpjs/gulp#4.0"
}
}
https://stackoverflow.com/questions/35555168
复制相似问题