Skip to content

Commit

Permalink
build script minor amendment npm
Browse files Browse the repository at this point in the history
  • Loading branch information
derjoachim committed Nov 4, 2024
1 parent ce2870f commit 5b31c7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/build.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ private function buildNodeCore()
cd("../");
run("npm ci");
run("npm run build");
run("npm prune --production");
run("npm prune --omit=dev");

cd("groupoffice-core");
run("npm prune --production");
run("npm prune --omit=dev");
cd("../goui");
run("npm prune --production");
run("npm prune --omit=dev");
}


Expand All @@ -227,7 +227,7 @@ private function buildNodeModules()
run("npm ci");
run("pwd");
run("npm run build");
run("npm prune --production");
run("npm prune --omit=dev");
cd($this->buildDir . "/" . $this->packageName);
}
}
Expand Down

0 comments on commit 5b31c7b

Please sign in to comment.