mirror of
https://github.com/Radarr/Radarr
synced 2025-01-04 06:23:32 +00:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
fccd02a0ca
1 changed files with 7 additions and 5 deletions
|
@ -104,11 +104,13 @@ Task("Compile").Does(() => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("Gulp").Does(() => {
|
Task("Gulp").Does(() => {
|
||||||
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(() => {
|
||||||
|
|
Loading…
Reference in a new issue