首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >Gulp 4- Azure网站

Gulp 4- Azure网站
EN

Stack Overflow用户
提问于 2016-02-22 13:39:51
回答 1查看 408关注 0票数 1

我有一个Node.js网站,我试图部署到Windows。这个网站要求我运行gulp以使html缩小,等等。为了做到这一点,我在我的deploy.sh文件中添加了以下内容:

代码语言:javascript
运行
复制
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-调试器日志文件中,我看到了以下内容:

代码语言:javascript
运行
复制
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设置为

代码语言:javascript
运行
复制
"engines": {
  "node": "~5.3.0"
},

这是支持的,我相信这是第四杯的唯一要求。我错过了什么?

谢谢你的帮助!

更新

完整的package.json:

代码语言:javascript
运行
复制
{
  "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"
  }
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2016-02-23 09:07:09

根据你的日志:

错误无目标未找到兼容版本: gulp@'github:gulpjs/gulp#4.0‘

您似乎使用了npm的低版本来安装您的依赖项。

而且您没有在package.json文件中指定npm版本,这将使Azure应用程序使用默认的NPMVersion2.11.2。

因此,将npm版本添加到"engines“闭包中,下面是我的测试'package.json':

代码语言:javascript
运行
复制
 {
    "engines": {
      "node": "~5.3.0",
      "npm": "3.3.12"
    },
    "dependencies":{
        "gulp": "github:gulpjs/gulp#4.0"
    }
 }
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/35555168

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档