mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 12:54:21 +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(() => {
|
||||
Npm
|
||||
.WithLogLevel(NpmLogLevel.Silent)
|
||||
.FromPath(".")
|
||||
.Install()
|
||||
.RunScript("build");
|
||||
NpmInstall(new NpmInstallSettings {
|
||||
LogLevel = NpmLogLevel.Silent,
|
||||
WorkingDirectory = "./",
|
||||
Production = true
|
||||
});
|
||||
|
||||
NpmRunScript("build");
|
||||
});
|
||||
|
||||
Task("PackageMono").Does(() => {
|
||||
|
|
Loading…
Reference in a new issue