npm 错误缺少脚本:构建(使用 Azure Pipelines 设置 CI)

Beh*_*har 6 azure azure-devops azure-pipelines

我正在使用 Microsoft 的 Azure DevOps 并尝试构建管道。当我运行它时,会出现以下错误(请注意,我使用的是 Nodejs):

2019-02-27T14:51:52.8760703Z ##[section]Starting: npm install and build
2019-02-27T14:51:52.8763347Z ==============================================================================
2019-02-27T14:51:52.8763405Z Task         : Command Line
2019-02-27T14:51:52.8763440Z Description  : Run a command line script using cmd.exe on Windows and bash on macOS and Linux.
2019-02-27T14:51:52.8763490Z Version      : 2.146.1
2019-02-27T14:51:52.8763523Z Author       : Microsoft Corporation
2019-02-27T14:51:52.8763557Z Help         : [More Information](https://go.microsoft.com/fwlink/?LinkID=613735)
2019-02-27T14:51:52.8763604Z ==============================================================================
2019-02-27T14:51:53.0258171Z Generating script.
2019-02-27T14:51:53.0326177Z [command]/bin/bash --noprofile --norc /home/vsts/work/_temp/10b6fcd3-847a-4422-bb84-ba6e0b8ca7cb.sh
2019-02-27T14:51:54.3278066Z npm WARN holzlauf@1.0.0 No description
2019-02-27T14:51:54.3278893Z npm WARN holzlauf@1.0.0 No repository field.
2019-02-27T14:51:54.3279186Z 
2019-02-27T14:51:54.5749996Z audited 175 packages in 1.032s
2019-02-27T14:51:54.5757001Z found 0 vulnerabilities
2019-02-27T14:51:54.5757413Z 
2019-02-27T14:51:54.8302910Z npm ERR! missing script: build
2019-02-27T14:51:55.4914767Z 
2019-02-27T14:51:55.4916102Z npm ERR! A complete log of this run can be found in:
2019-02-27T14:51:55.4916931Z npm ERR!     /home/vsts/.npm/_logs/2019-02-27T14_51_54_831Z-debug.log
2019-02-27T14:51:55.5084373Z ##[error]Bash exited with code '1'.
2019-02-27T14:51:55.5117395Z ##[section]Finishing: npm install and build
Run Code Online (Sandbox Code Playgroud)

这是我的 package.json:

{
  "name": "holzlauf",
  "version": "1.0.0",
  "description": "",
  "main": "app.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "webpack --config webpack.conf.js",
    "deploy": "npm run build && gh-pages -d build",
    "start": "node app.js"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "applicationinsights": "^1.1.0",
    "body-parser": "^1.18.3",
    "ejs": "^2.6.1",
    "express": "^4.16.4",
    "nodemailer": "^5.1.1",
    "serve-favicon": "^2.5.0"
  }
}
Run Code Online (Sandbox Code Playgroud)

我将不胜感激您的帮助!

小智 1

这意味着在你的\xe2\x80\x9cpackage.json\xe2\x80\x9d(在你运行\xe2\x80\x9cnpm run build\xe2\x80\x9d的文件夹中),有\xe2\x80\x99s NO \xe2\x80\x9cbuild\xe2\x80\x9d 脚本

\n
{ \n "name": "Example Application", \n "version": "1.0.0", \n "description": "", \n "main": "index.js", \n "scripts": { \n    "build": "echo \'build script executed\'" \n }, \n "author": "", \n "license": "" \n} \n
Run Code Online (Sandbox Code Playgroud)\n

参考:\n https://www.quora.com/What-does-it-mean-when-you-get-the-NPM-error-missing-script-build

\n