javascript - Integrate Gulp with TFS2013 -


i trying yo integrate gulpjs tfs 2013 (using vs2015 development). couldnt find proper documentation this.

can point me right solution?

to use gulp in tfs 2013 xaml build, follow these steps below:

  1. on build agent server, install global gulp. install command using tfs build service account. npm install --global gulp-cli
  2. create batch file , use install local gulp , run gulp.

@echo off

cd %tf_build_sourcesdirectory%\testwebapp\webapplication1

npm install gulp --save-dev  gulp  

note: use %tf_build_sourcesdirectory% environment variable locate project folder.

  1. check in batch file tfs , run before or after build. enter image description here

Comments