关于node.js:VSTS Gulp构建步骤错误

VSTS Gulp build step error

VSTS中设置构建步骤时遇到问题。我们使用gulp从less文件生成css。在Visual Studio(任务运行器资源管理器)中,它可以正常工作,但是在VSTS中运行时,出现以下构建错误:

Gulp failed with error: C:\
PM\\Modules\\gulp.cmd failed with return code: 1

我也尝试了文档中提到的有关NPM / Gulp设置的示例,但是它对我也不起作用。我应用的唯一更改是设置gulpfile.js的路径。我保留了其余的内容(NPM安装参数,Gulp任务名称,工作文件夹等)。但是我遇到了上面提到的错误。

有人建议我在做什么错吗?

这是失败的构建步骤的完整日志:

2016-07-11T12:07:06.7456466Z Set workingFolder to default: C:\\LR\\MMS\\Services\\Mms\\TaskAgentProvisioner\\Tools\\agents\\1.102.0\\tasks\\Gulp\\0.5.24
2016-07-11T12:07:06.9966480Z ##[debug]agent.workFolder=C:\\a
2016-07-11T12:07:07.0176485Z ##[debug]loading inputs and endpoints
2016-07-11T12:07:07.0186489Z ##[debug]loading ENDPOINT_AUTH_E43D0F79-1244-42AD-B28B-5B98484615E7
2016-07-11T12:07:07.0186489Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_E43D0F79-1244-42AD-B28B-5B98484615E7_ACCESSTOKEN
2016-07-11T12:07:07.0196487Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2016-07-11T12:07:07.0196487Z ##[debug]loading ENDPOINT_AUTH_SCHEME_E43D0F79-1244-42AD-B28B-5B98484615E7
2016-07-11T12:07:07.0206490Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2016-07-11T12:07:07.0206490Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2016-07-11T12:07:07.0216488Z ##[debug]loading INPUT_CWD
2016-07-11T12:07:07.0216488Z ##[debug]loading INPUT_GULPFILE
2016-07-11T12:07:07.0216488Z ##[debug]loading INPUT_GULPJS
2016-07-11T12:07:07.0226488Z ##[debug]loaded 9
2016-07-11T12:07:07.0226488Z ##[debug]check path : C:\\LR\\MMS\\Services\\Mms\\TaskAgentProvisioner\\Tools\\agents\\1.102.0\\tasks\\Gulp\\0.5.24\\task.json
2016-07-11T12:07:07.0236481Z ##[debug]set resource file to: C:\\LR\\MMS\\Services\\Mms\\TaskAgentProvisioner\\Tools\\agents\\1.102.0\\tasks\\Gulp\\0.5.24\\task.json
2016-07-11T12:07:07.0236481Z ##[debug]system.culture=en-US
2016-07-11T12:07:07.0246486Z ##[debug]gulpFile=C:\\a\\1\\s\\MyProject\\gulpfile.js
2016-07-11T12:07:07.0246486Z ##[debug]check path : C:\\a\\1\\s\\MyProject\\gulpfile.js
2016-07-11T12:07:07.0256486Z ##[debug]cwd=C:\\a\\1\\s
2016-07-11T12:07:07.0256486Z ##[debug]path exists: C:\\a\\1\\s
2016-07-11T12:07:07.0276485Z ##[debug]gulp=C:\
PM\\Modules\\gulp.cmd
2016-07-11T12:07:07.0276485Z ##[debug]check path : C:\
PM\\Modules\\gulp.cmd
2016-07-11T12:07:07.0286476Z ##[debug]targets=null
2016-07-11T12:07:07.0296489Z ##[debug]C:\
PM\\Modules\\gulp.cmd arg: []
2016-07-11T12:07:07.0296489Z ##[debug]C:\
PM\\Modules\\gulp.cmd arg: --gulpfile
2016-07-11T12:07:07.0306484Z ##[debug]C:\
PM\\Modules\\gulp.cmd pathArg: C:\\a\\1\\s\\MyProject\\gulpfile.js
2016-07-11T12:07:07.0306484Z ##[debug]C:\
PM\\Modules\\gulp.cmd arg: C:\\a\\1\\s\\MyProject\\gulpfile.js
2016-07-11T12:07:07.0316486Z ##[debug]arguments=null
2016-07-11T12:07:07.0316486Z ##[debug]exec tool: C:\
PM\\Modules\\gulp.cmd
2016-07-11T12:07:07.0316486Z ##[debug]Arguments:
2016-07-11T12:07:07.0326490Z ##[debug] --gulpfile
2016-07-11T12:07:07.0326490Z ##[debug] C:\\a\\1\\s\\MyProject\\gulpfile.js
2016-07-11T12:07:07.0336484Z [command]C:\
PM\\Modules\\gulp.cmd --gulpfile C:\\a\\1\\s\\MyProject\\gulpfile.js
2016-07-11T12:07:07.9754363Z [12:07:07] Local gulp not found in C:\\a\\1\\s\\MyProject
2016-07-11T12:07:07.9764358Z [12:07:07] Try running: npm install gulp
2016-07-11T12:07:07.9844369Z ##[debug]rc:1
2016-07-11T12:07:07.9854369Z ##[debug]success:false
2016-07-11T12:07:07.9874369Z ##[debug]taskRunner fail
2016-07-11T12:07:07.9894368Z ##[debug]task result: Failed
2016-07-11T12:07:07.9964345Z ##[error]Gulp failed with error: C:\
PM\\Modules\\gulp.cmd failed with return code: 1

package.json

的内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
   "name":"package",
   "version":"1.0.0",
   "private": true,
   "devDependencies": {
       "gulp":"3.9.1",
       "gulp-bower":"0.0.13",
       "gulp-config":"0.3.0",
       "gulp-less":"3.0.5",
       "gulp-plumber":"1.1.0",
       "gulp-minify-css":"1.2.4",
       "gulp-watch":"4.3.5"
    }
}

" \\ npm install "步骤的日志

2016-07-12T09:39:02.2279747Z Set workingFolder to default: C:\\LR\\MMS\\Services\\Mms\\TaskAgentProvisioner\\Tools\\agents\\1.102.0\\tasks\
pm\\0.2.14
2016-07-12T09:39:02.9144367Z ##[debug]agent.workFolder=C:\\a
2016-07-12T09:39:02.9144367Z ##[debug]loading inputs and endpoints
2016-07-12T09:39:02.9154360Z ##[debug]loading ENDPOINT_AUTH_E43D0F79-1244-42AD-B28B-5B98484615E7
2016-07-12T09:39:02.9154360Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_E43D0F79-1244-42AD-B28B-5B98484615E7_ACCESSTOKEN
2016-07-12T09:39:02.9164387Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN
2016-07-12T09:39:02.9174377Z ##[debug]loading ENDPOINT_AUTH_SCHEME_E43D0F79-1244-42AD-B28B-5B98484615E7
2016-07-12T09:39:02.9174377Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION
2016-07-12T09:39:02.9184400Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION
2016-07-12T09:39:02.9184400Z ##[debug]loading INPUT_COMMAND
2016-07-12T09:39:02.9194377Z ##[debug]loading INPUT_CWD
2016-07-12T09:39:02.9204364Z ##[debug]loaded 8
2016-07-12T09:39:02.9204364Z ##[debug]check path : C:\\LR\\MMS\\Services\\Mms\\TaskAgentProvisioner\\Tools\\agents\\1.102.0\\tasks\
pm\\0.2.14\\task.json
2016-07-12T09:39:02.9214362Z ##[debug]set resource file to: C:\\LR\\MMS\\Services\\Mms\\TaskAgentProvisioner\\Tools\\agents\\1.102.0\\tasks\
pm\\0.2.14\\task.json
2016-07-12T09:39:02.9214362Z ##[debug]system.culture=en-US
2016-07-12T09:39:02.9224360Z ##[debug]check path : C:\\Program Files\
odejs\
pm.cmd
2016-07-12T09:39:02.9224360Z ##[debug]npm=C:\\Program Files\
odejs\
pm.cmd
2016-07-12T09:39:02.9224360Z ##[debug]cwd=C:\\a\\1\\s\\MyProject
2016-07-12T09:39:02.9234370Z ##[debug]path exists: C:\\a\\1\\s\\MyProject
2016-07-12T09:39:02.9234370Z ##[debug]command=install
2016-07-12T09:39:02.9244374Z ##[debug]C:\\Program Files\
odejs\
pm.cmd arg: install
2016-07-12T09:39:02.9244374Z ##[debug]arguments=null
2016-07-12T09:39:02.9254371Z ##[debug]exec tool: C:\\Program Files\
odejs\
pm.cmd
2016-07-12T09:39:02.9254371Z ##[debug]Arguments:
2016-07-12T09:39:02.9503609Z ##[debug] install
2016-07-12T09:39:02.9503609Z [command]C:\\Program Files\
odejs\
pm.cmd install
2016-07-12T09:39:12.1720721Z npm WARN deprecated [email protected]: Please use gulp-clean-css
2016-07-12T09:39:15.5308118Z npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
2016-07-12T09:39:15.6948189Z npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
2016-07-12T09:39:15.9905269Z npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
2016-07-12T09:39:16.0395266Z npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^4.0.0. 2016-07-12T09:39:16.0945273Z npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
2016-07-12T09:39:18.0735789Z npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
2016-07-12T09:39:18.1575757Z npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^4.0.0. 2016-07-12T09:39:46.0792916Z [email protected] C:\\a\\1\\s\\MyProject 2016-07-12T09:39:46.0792916Z +-- [email protected] 2016-07-12T09:39:46.0802920Z | +-- [email protected] 2016-07-12T09:39:46.0802920Z | +-- [email protected] 2016-07-12T09:39:46.0812919Z | | +-- [email protected] 2016-07-12T09:39:46.0812919Z | | +-- [email protected] 2016-07-12T09:39:46.0822926Z | | +-- [email protected] 2016-07-12T09:39:46.0822926Z | | +-- [email protected] 2016-07-12T09:39:46.0832921Z | | `-- [email protected] 2016-07-12T09:39:46.0832921Z | +-- [email protected] 2016-07-12T09:39:46.0832921Z | +-- [email protected] 2016-07-12T09:39:46.0842919Z | | +-- [email protected] 2016-07-12T09:39:46.0852917Z | | +-- [email protected] 2016-07-12T09:39:46.0852917Z | | +-- [email protected] 2016-07-12T09:39:46.0852917Z | | +-- [email protected] 2016-07-12T09:39:46.0862905Z | | | +-- [email protected] 2016-07-12T09:39:46.0862905Z | | | `-- [email protected] 2016-07-12T09:39:46.0872918Z | | | +-- [email protected] 2016-07-12T09:39:46.0882914Z | | | | `-- [email protected] 2016-07-12T09:39:46.0882914Z | | | +-- [email protected] 2016-07-12T09:39:46.0892921Z | | | +-- [email protected] 2016-07-12T09:39:46.0892921Z | | | | +-- [email protected] 2016-07-12T09:39:46.0892921Z | | | | | `-- [email protected] 2016-07-12T09:39:46.0902920Z | | | | `-- [email protected] 2016-07-12T09:39:46.0902920Z | | | +-- [email protected] 2016-07-12T09:39:46.0912908Z | | | +-- [email protected] 2016-07-12T09:39:46.0912908Z | | | | +-- [email protected] 2016-07-12T09:39:46.0922912Z | | | | +-- [email protected] 2016-07-12T09:39:46.0922912Z | | | | | `-- [email protected] 2016-07-12T09:39:46.0922912Z | | | | `-- [email protected] 2016-07-12T09:39:46.0932925Z | | | | +-- [email protected] 2016-07-12T09:39:46.0932925Z | | | | | `-- [email protected] 2016-07-12T09:39:46.0942918Z | | | | `-- [email protected] 2016-07-12T09:39:46.0942918Z | | | | `-- [email protected] 2016-07-12T09:39:46.0952912Z | | | +-- [email protected] 2016-07-12T09:39:46.0952912Z | | | +-- [email protected] 2016-07-12T09:39:46.0952912Z | | | | +-- [email protected] 2016-07-12T09:39:46.0962919Z | | | | | +-- [email protected] 2016-07-12T09:39:46.0962919Z | | | | | `-- [email protected] 2016-07-12T09:39:46.0972983Z | | | | | `-- [email protected] 2016-07-12T09:39:46.0972983Z | | | | `-- [email protected] 2016-07-12T09:39:46.0972983Z | | | | +-- [email protected] 2016-07-12T09:39:46.0982914Z | | | | | +-- [email protected] 2016-07-12T09:39:46.0982914Z | | | | | | `-- [email protected] 2016-07-12T09:39:46.0992965Z | | | | | | `-- [email protected] 2016-07-12T09:39:46.0992965Z | | | | | `-- [email protected] 2016-07-12T09:39:46.0992965Z | | | | `-- [email protected] 2016-07-12T09:39:46.1002917Z | | | +-- [email protected] 2016-07-12T09:39:46.1002917Z | | | | +-- [email protected] 2016-07-12T09:39:46.1012920Z | | | | | `-- [email protected] 2016-07-12T09:39:46.1012920Z | | | | | `-- [email protected] 2016-07-12T09:39:46.1012920Z | | | | `-- [email protected] 2016-07-12T09:39:46.1022917Z | | | `-- [email protected] 2016-07-12T09:39:46.1022917Z | | +-- [email protected] 2016-07-12T09:39:46.1032910Z | | | `-- [email protected] 2016-07-12T09:39:46.1032910Z | | +-- [email protected] 2016-07-12T09:39:46.1042906Z | | | `-- [email protected] 2016-07-12T09:39:46.1042906Z | | +-- [email protected] 2016-07-12T09:39:46.1052907Z | | | `-- [email protected] 2016-07-12T09:39:46.1052907Z | | +-- [email protected] 2016-07-12T09:39:46.1062917Z | | +-- [email protected] 2016-07-12T09:39:46.1062917Z | | +-- [email protected] 2016-07-12T09:39:46.1072954Z | | +-- [email protected] 2016-07-12T09:39:46.1072954Z | | | +-- [email protected] 2016-07-12T09:39:46.1082904Z | | | +-- [email protected] 2016-07-12T09:39:46.1082904Z | | | +-- [email protected] 2016-07-12T09:39:46.1082904Z | | | +-- [email protected] 2016-07-12T09:39:46.1092906Z | | | +-- [email protected] 2016-07-12T09:39:46.1092906Z | | | | `-- [email protected] 2016-07-12T09:39:46.1102906Z | | | +-- [email protected] 2016-07-12T09:39:46.1102906Z | | | | +-- [email protected] 2016-07-12T09:39:46.1112961Z | | | | +-- [email protected] 2016-07-12T09:39:46.1112961Z | | | | `-- [email protected] 2016-07-12T09:39:46.1112961Z | | | +-- [email protected] 2016-07-12T09:39:46.1122906Z | | | `-- [email protected] 2016-07-12T09:39:46.1122906Z | | +-- [email protected] 2016-07-12T09:39:46.1132911Z | | | `-- [email protected] 2016-07-12T09:39:46.1132911Z | | +-- [email protected] 2016-07-12T09:39:46.1142910Z | | `-- [email protected] 2016-07-12T09:39:46.1142910Z | +-- [email protected] 2016-07-12T09:39:46.1142910Z | +-- [email protected] 2016-07-12T09:39:46.1152910Z | | +-- [email protected] 2016-07-12T09:39:46.1152910Z | | +-- [email protected] 2016-07-12T09:39:46.1162905Z | | +-- [email protected] 2016-07-12T09:39:46.1162905Z | | +-- [email protected] 2016-07-12T09:39:46.1162905Z | | `-- [email protected] 2016-07-12T09:39:46.1172905Z | +-- [email protected] 2016-07-12T09:39:46.1172905Z | +-- [email protected] 2016-07-12T09:39:46.1182907Z | | +-- [email protected] 2016-07-12T09:39:46.1182907Z | | +-- [email protected] 2016-07-12T09:39:46.1192910Z | | `-- [email protected] 2016-07-12T09:39:46.1192910Z | +-- [email protected] 2016-07-12T09:39:46.1192910Z | +-- [email protected] 2016-07-12T09:39:46.1202900Z | +-- [email protected] 2016-07-12T09:39:46.1202900Z | | `-- [email protected] 2016-07-12T09:39:46.1212905Z | +-- [email protected] 2016-07-12T09:39:46.1212905Z | | `-- [email protected] 2016-07-12T09:39:46.1212905Z | `-- [email protected] 2016-07-12T09:39:46.1222905Z | +-- [email protected] 2016-07-12T09:39:46.1222905Z | +-- [email protected] 2016-07-12T09:39:46.1232911Z | | +-- [email protected] 2016-07-12T09:39:46.1232911Z | | +-- [email protected] 2016-07-12T09:39:46.1242904Z | | +-- [email protected] 2016-07-12T09:39:46.1242904Z | | +-- [email protected] 2016-07-12T09:39:46.1242904Z | | | `-- [email protected] 2016-07-12T09:39:46.1252944Z | | `-- [email protected] 2016-07-12T09:39:46.1252944Z | +-- [email protected] 2016-07-12T09:39:46.1262994Z | | `-- [email protected] 2016-07-12T09:39:46.1262994Z | | `-- [email protected] 2016-07-12T09:39:46.1262994Z | | +-- [email protected] 2016-07-12T09:39:46.1272908Z | | | +-- [email protected] 2016-07-12T09:39:46.1272908Z | | | `-- [email protected] 2016-07-12T09:39:46.1282913Z | | +-- [email protected] 2016-07-12T09:39:46.1282913Z | | `-- [email protected] 2016-07-12T09:39:46.1292911Z | +-- [email protected] 2016-07-12T09:39:46.1292911Z | +-- [email protected] 2016-07-12T09:39:46.1292911Z | | `-- [email protected] 2016-07-12T09:39:46.1302923Z | +-- [email protected] 2016-07-12T09:39:46.1302923Z | | +-- [email protected] 2016-07-12T09:39:46.1312908Z | | `-- [email protected] 2016-07-12T09:39:46.1312908Z | +-- [email protected] 2016-07-12T09:39:46.1312908Z | | `-- [email protected] 2016-07-12T09:39:46.1322909Z | `-- [email protected] 2016-07-12T09:39:46.1322909Z | `-- [email protected] 2016-07-12T09:39:46.1332917Z +-- [email protected] 2016-07-12T09:39:46.1332917Z | +-- [email protected] 2016-07-12T09:39:46.1332917Z | +-- [email protected] 2016-07-12T09:39:46.1342908Z | | +-- [email protected] 2016-07-12T09:39:46.1342908Z | | +-- [email protected] 2016-07-12T09:39:46.1352906Z | | +-- [email protected] 2016-07-12T09:39:46.1352906Z | | | `-- [email protected] 2016-07-12T09:39:46.1362905Z | | | +-- [email protected] 2016-07-12T09:39:46.1362905Z | | | `-- [email protected] 2016-07-12T09:39:46.1362905Z | | +-- [email protected] 2016-07-12T09:39:46.1372905Z | | +-- [email protected] 2016-07-12T09:39:46.1372905Z | | | `-- [email protected] 2016-07-12T09:39:46.1382919Z | | +-- [email protected] 2016-07-12T09:39:46.1382919Z | | +-- [email protected] 2016-07-12T09:39:46.1392917Z | | | +-- [email protected] 2016-07-12T09:39:46.1392917Z | | | | `-- [email protected] 2016-07-12T09:39:46.1392917Z | | | +-- [email protected] 2016-07-12T09:39:46.1402909Z | | | `-- [email protected] 2016-07-12T09:39:46.1402909Z | | +-- [email protected] 2016-07-12T09:39:46.1412958Z | | +-- [email protected] 2016-07-12T09:39:46.1412958Z | | +-- [email protected] 2016-07-12T09:39:46.1422916Z | | `-- [email protected] 2016-07-12T09:39:46.1422916Z | +-- [email protected] 2016-07-12T09:39:46.1422916Z | | +-- [email protected] 2016-07-12T09:39:46.1432914Z | | | `-- [email protected] 2016-07-12T09:39:46.1432914Z | | `-- [email protected] 2016-07-12T09:39:46.1442914Z | `-- [email protected] 2016-07-12T09:39:46.1442914Z | `-- [email protected] 2016-07-12T09:39:46.1442914Z +-- [email protected] 2016-07-12T09:39:46.1452907Z | +-- [email protected] 2016-07-12T09:39:46.1452907Z | | +-- [email protected] 2016-07-12T09:39:46.1462907Z | | +-- [email protected] 2016-07-12T09:39:46.1462907Z | | `-- [email protected] 2016-07-12T09:39:46.1462907Z | | +-- [email protected] 2016-07-12T09:39:46.1472977Z | | | `-- [email protected] 2016-07-12T09:39:46.1472977Z | | +-- [email protected] 2016-07-12T09:39:46.1482918Z | | `-- [email protected] 2016-07-12T09:39:46.1482918Z | | +-- [email protected] 2016-07-12T09:39:46.1482918Z | | `-- [email protected] 2016-07-12T09:39:46.1492907Z | +-- [email protected] 2016-07-12T09:39:46.1492907Z | | +-- [email protected] 2016-07-12T09:39:46.1502905Z | | `-- [email protected] 2016-07-12T09:39:46.1502905Z | +-- [email protected] 2016-07-12T09:39:46.1512906Z | | +-- [email protected] 2016-07-12T09:39:46.1512906Z | | | `-- [email protected] 2016-07-12T09:39:46.1512906Z | | +-- [email protected] 2016-07-12T09:39:46.1522924Z | | +-- [email protected] 2016-07-12T09:39:46.1522924Z | | | `-- [email protected] 2016-07-12T09:39:46.1532909Z | | | +-- [email protected] 2016-07-12T09:39:46.1532909Z | | | `-- [email protected] 2016-07-12T09:39:46.1532909Z | | `-- [email protected] 2016-07-12T09:39:46.1542910Z | `-- [email protected] 2016-07-12T09:39:46.1542910Z +-- [email protected] 2016-07-12T09:39:46.1552906Z | +-- [email protected] 2016-07-12T09:39:46.1552906Z | | +-- [email protected] 2016-07-12T09:39:46.1562922Z | | +-- [email protected] 2016-07-12T09:39:46.1562922Z | | | `-- [email protected] 2016-07-12T09:39:46.1562922Z | | +-- [email protected] 2016-07-12T09:39:46.1572903Z | | +-- [email protected] 2016-07-12T09:39:46.1572903Z | | +-- [email protected] 2016-07-12T09:39:46.1582910Z | | | +-- [email protected] 2016-07-12T09:39:46.1582910Z | | | +-- [email protected] 2016-07-12T09:39:46.1582910Z | | | `-- [email protected] 2016-07-12T09:39:46.1592901Z | | | +-- [email protected] 2016-07-12T09:39:46.1592901Z | | | +-- [email protected] 2016-07-12T09:39:46.1602980Z | | | | +-- [email protected] 2016-07-12T09:39:46.1602980Z | | | | | +-- [email protected] 2016-07-12T09:39:46.1602980Z | | | | | | `-- [email protected] 2016-07-12T09:39:46.1612905Z | | | | | `-- [email protected] 2016-07-12T09:39:46.1612905Z | | | | +-- [email protected] 2016-07-12T09:39:46.1622914Z | | | | `-- [email protected] 2016-07-12T09:39:46.1622914Z | | | `-- [email protected] 2016-07-12T09:39:46.1632914Z | | `-- [email protected] 2016-07-12T09:39:46.1632914Z | +-- [email protected] 2016-07-12T09:39:46.1632914Z | | +-- [email protected] 2016-07-12T09:39:46.1642907Z | | | `-- [email protected] 2016-07-12T09:39:46.1642907Z | | +-- [email protected] 2016-07-12T09:39:46.1652905Z | | +-- [email protected] 2016-07-12T09:39:46.1652905Z | | +-- [email protected] 2016-07-12T09:39:46.1652905Z | | +-- [email protected] 2016-07-12T09:39:46.1662905Z | | | `-- [email protected] 2016-07-12T09:39:46.1662905Z | | `-- [email protected] 2016-07-12T09:39:46.1672913Z | +-- [email protected] 2016-07-12T09:39:46.1672913Z | +-- [email protected] 2016-07-12T09:39:46.1672913Z | | `-- [email protected] 2016-07-12T09:39:46.1682909Z | | `-- [email protected] 2016-07-12T09:39:46.1682909Z | `-- [email protected] 2016-07-12T09:39:46.1692906Z +-- [email protected] 2016-07-12T09:39:46.1692906Z | +-- [email protected] 2016-07-12T09:39:46.1702908Z | | +-- [email protected] 2016-07-12T09:39:46.1702908Z | | | `-- [email protected] 2016-07-12T09:39:46.1702908Z | | `-- [email protected] 2016-07-12T09:39:46.1712904Z | | `-- [email protected] 2016-07-12T09:39:46.1712904Z | +-- [email protected] 2016-07-12T09:39:46.1722918Z | +-- [email protected] 2016-07-12T09:39:46.1722918Z | | +-- [email protected] 2016-07-12T09:39:46.1722918Z | | +-- [email protected] 2016-07-12T09:39:46.1732907Z | | +-- [email protected] 2016-07-12T09:39:46.1732907Z | | +-- [email protected] 2016-07-12T09:39:46.1742927Z | | +-- [email protected] 2016-07-12T09:39:46.1742927Z | | `-- [email protected] 2016-07-12T09:39:46.1752906Z | `-- [email protected] 2016-07-12T09:39:46.1752906Z | `-- [email protected] 2016-07-12T09:39:46.1752906Z | `-- [email protected] 2016-07-12T09:39:46.1762930Z +-- [email protected] 2016-07-12T09:39:46.1762930Z `-- [email protected] 2016-07-12T09:39:46.1772915Z +-- [email protected] 2016-07-12T09:39:46.1772915Z | +-- [email protected] 2016-07-12T09:39:46.1772915Z | `-- [email protected] 2016-07-12T09:39:46.1782908Z | +-- [email protected] 2016-07-12T09:39:46.1782908Z | | `-- [email protected] 2016-07-12T09:39:46.1792905Z | +-- [email protected] 2016-07-12T09:39:46.1792905Z | +-- [email protected] 2016-07-12T09:39:46.1802905Z | | +-- [email protected] 2016-07-12T09:39:46.1802905Z | | | `-- [email protected] 2016-07-12T09:39:46.1802905Z | | | +-- [email protected] 2016-07-12T09:39:46.1812913Z | | | +-- [email protected] 2016-07-12T09:39:46.1812913Z | | | | `-- [email protected] 2016-07-12T09:39:46.1822913Z | | | +-- [email protected] 2016-07-12T09:39:46.1822913Z | | | `-- [email protected] 2016-07-12T09:39:46.1822913Z | | +-- [email protected] 2016-07-12T09:39:46.1832937Z | | `-- [email protected] 2016-07-12T09:39:46.1832937Z | +-- [email protected] 2016-07-12T09:39:46.1842902Z | | `-- [email protected] 2016-07-12T09:39:46.1842902Z | +-- [email protected] 2016-07-12T09:39:46.1842902Z | +-- [email protected] 2016-07-12T09:39:46.1852902Z | +-- [email protected] 2016-07-12T09:39:46.1852902Z | +-- [email protected] 2016-07-12T09:39:46.1862908Z | | `-- [email protected] 2016-07-12T09:39:46.1862908Z | +-- [email protected] 2016-07-12T09:39:46.1862908Z | +-- [email protected] 2016-07-12T09:39:46.1872909Z | | +-- [email protected] 2016-07-12T09:39:46.1872909Z | | | `-- [email protected] 2016-07-12T09:39:46.1882905Z | | `-- [email protected] 2016-07-12T09:39:46.1882905Z | +-- [email protected] 2016-07-12T09:39:46.1892905Z | | +-- [email protected] 2016-07-12T09:39:46.1892905Z | | `-- [email protected] 2016-07-12T09:39:46.1892905Z | `-- [email protected] 2016-07-12T09:39:46.1902905Z | +-- [email protected] 2016-07-12T09:39:46.1902905Z | `-- [email protected] 2016-07-12T09:39:46.1912916Z +-- [email protected] 2016-07-12T09:39:46.1912916Z | +-- [email protected] 2016-07-12T09:39:46.1912916Z | +-- [email protected] 2016-07-12T09:39:46.1922905Z | +-- [email protected] 2016-07-12T09:39:46.1922905Z | | `-- [email protected] 2016-07-12T09:39:46.1932905Z | +-- [email protected] 2016-07-12T09:39:46.1932905Z | `-- [email protected] 2016-07-12T09:39:46.1932905Z | +-- [email protected] 2016-07-12T09:39:46.1942905Z | | `-- [email protected] 2016-07-12T09:39:46.1942905Z | `-- [email protected] 2016-07-12T09:39:46.1952911Z +-- [email protected] 2016-07-12T09:39:46.1952911Z | `-- [email protected] 2016-07-12T09:39:46.1962908Z +-- [email protected] 2016-07-12T09:39:46.1962908Z | `-- [email protected] 2016-07-12T09:39:46.1962908Z +-- [email protected] 2016-07-12T09:39:46.1972910Z +-- [email protected] 2016-07-12T09:39:46.1972910Z | `-- [email protected] 2016-07-12T09:39:46.1982905Z +-- [email protected] 2016-07-12T09:39:46.1982905Z | +-- [email protected] 2016-07-12T09:39:46.1992904Z | `-- [email protected] 2016-07-12T09:39:46.1992904Z `-- [email protected] 2016-07-12T09:39:46.1992904Z +-- [email protected] 2016-07-12T09:39:46.2002905Z +-- [email protected] 2016-07-12T09:39:46.2002905Z `-- [email protected] 2016-07-12T09:39:46.2012911Z npm WARN optional Skipping failed optional dependency /chokidar/fsevents: 2016-07-12T09:39:46.2012911Z npm WARN notsup Not compatible with your operating system or architecture: [email protected] 2016-07-12T09:39:46.2292905Z ##[debug]rc:0 2016-07-12T09:39:46.2302910Z ##[debug]success:true 2016-07-12T09:39:46.2312909Z ##[debug]task result: Succeeded


尝试在" npm install"任务的"高级"设置下将"工作目录"更新为" package.json"文件的路径。