discovering gulp-dnx-tasks

main
Paul Schneider 7 years ago
parent 6bf407ebc9
commit 73055d11a0
1 changed files with 2 additions and 2 deletions

@ -7,7 +7,8 @@ var gulp = require("gulp"),
uglify = require("gulp-uglify"),
shell = require("gulp-shell"),
rename = require('gulp-rename'),
clean = require('gulp-clean');
clean = require('gulp-clean'),
dnx = require("gulp-dnx-tasks");
var webroot = "./wwwroot/";
@ -51,5 +52,4 @@ gulp.task('build', shell.task(['dnu build --configuration=Debug']));
gulp.task('run', shell.task(['ASPNET_ENV=Development dnx web --configuration=Debug']));
gulp.task('buildrelease', shell.task(['dnu build --configuration=Release']));
gulp.task("default", ["min"]);

Loading…