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:
- on build agent server, install global gulp. install command using tfs build service account.
npm install --global gulp-cli
- 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.
Comments
Post a Comment