Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Leonardo Galli 2017-05-09 20:44:43 +02:00
commit fccd02a0ca
1 changed files with 7 additions and 5 deletions

View File

@ -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(() => {