From 6bbc74434d5d4e7d170496fa44df5ff0284c0934 Mon Sep 17 00:00:00 2001 From: DamianEdwards Date: Fri, 26 Sep 2014 14:07:31 -0700 Subject: [PATCH] Fix grunt clean in MusicStore.Spa to not delete wwwroot\bin --- src/MusicStore.Spa/Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MusicStore.Spa/Gruntfile.js b/src/MusicStore.Spa/Gruntfile.js index 0d26aca0c2..2d6bd2fdbe 100644 --- a/src/MusicStore.Spa/Gruntfile.js +++ b/src/MusicStore.Spa/Gruntfile.js @@ -33,8 +33,8 @@ module.exports = function (grunt) { }, clean: { options: { force: true }, - bower: ['wwwroot'], - assets: ['wwwroot'], + bower: ['wwwroot/*', '!wwwroot/bin'], + assets: ['wwwroot/*', '!wwwroot/bin'], tsng: ['client/**/*.ng.ts'] }, copy: {