Merge branch 'develop' of https://github.com/mattman86/Lidarr into develop

This commit is contained in:
Matthew Despain 2017-05-07 16:11:44 -06:00
commit c51fe35fb4
1 changed files with 8 additions and 6 deletions

View File

@ -104,11 +104,13 @@ Task("Compile").Does(() => {
}); });
Task("Gulp").Does(() => { Task("Gulp").Does(() => {
Cake.Npm NpmInstall(new NpmInstallSettings {
.WithLogLevel(NpmLogLevel.Silent) LogLevel = NpmLogLevel.Silent,
.FromPath(".") WorkingDirectory = "./",
.Install() Production = true
.RunScript("build"); });
NpmRunScript("build");
}); });
Task("PackageMono").Does(() => { Task("PackageMono").Does(() => {