added packageing of ui to build.ps1

This commit is contained in:
Keivan Beigi 2013-05-15 17:33:27 -07:00
parent 0c3e53458f
commit 8d577ee2ef
1 changed files with 15 additions and 3 deletions

View File

@ -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
}