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

pull/2/head
Matthew Despain 7 years ago
commit c51fe35fb4

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

Loading…
Cancel
Save