From 8d577ee2ef766310309a9b46629f48a5cf5ba9c0 Mon Sep 17 00:00:00 2001 From: Keivan Beigi Date: Wed, 15 May 2013 17:33:27 -0700 Subject: [PATCH] added packageing of ui to build.ps1 --- build.ps1 | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/build.ps1 b/build.ps1 index 10485d946..749ee6dcf 100644 --- a/build.ps1 +++ b/build.ps1 @@ -59,10 +59,8 @@ Function PackageTests() } -Build -PackageTests -if($runTests) +Function Nunit() { $testFiles @@ -73,4 +71,18 @@ if($runTests) $nunitExe = '.\Libraries\nunit\nunit-console-x86.exe ' + $testFiles + ' /process:multiple /noxml' Invoke-Expression $nunitExe +} + +Function Grunt() +{ + grunt package +} + +Build +Grunt +PackageTests + +if($runTests) +{ + Nunit } \ No newline at end of file