Merge pull request #7 from AeonLucid/develop

Fix gulp task.
This commit is contained in:
mattman86 2017-05-07 16:04:38 -06:00 committed by GitHub
commit 38ae5d3962
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(() => {