From aaaf7583bb67f1233ddfa71d7d05d6e0637a48a1 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sat, 3 Jun 2017 01:06:13 +0200 Subject: [PATCH] don't use gulp. --- Yavsc/gulpfile.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Yavsc/gulpfile.js b/Yavsc/gulpfile.js index 1aa052d5..1633fb24 100755 --- a/Yavsc/gulpfile.js +++ b/Yavsc/gulpfile.js @@ -56,20 +56,4 @@ gulp.task('run', shell.task(['ASPNET_ENV=Development dnx web --configuration=Deb gulp.task('buildrelease', shell.task(['dnu build --configuration=Release'])); - -gulp.task('cleanoutput', () => { - gulp.src('bin/output', { read: false }).pipe(clean()) -}); -gulp.task('dnupublish', ['cleanoutput'], () => { - shell.task(['dnu publish --configuration=Release', - 'git log -1 --pretty=format:%h > bin/output/wwwroot/version' - ]).apply(); -}); -gulp.task('pushinpre', ['dnupublish'], () => { - shell.task('contrib/rsync-to-pre.sh').apply(); -}) -gulp.task('pushinprod', ['dnupublish'], () => { - shell.task('contrib/rsync-to-prod.sh').apply(); -}) - gulp.task("default", ["watch"]); \ No newline at end of file