We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ce6ba commit 2f216eeCopy full SHA for 2f216ee
packages/cli/lib/cli/commands/build.js
@@ -1,4 +1,5 @@
1
import baseMiddleware from "../middlewares/base.js";
2
+import path from "node:path";
3
4
const build = {
5
command: "build",
@@ -173,6 +174,7 @@ async function handleBuild(argv) {
173
174
const buildSettings = graph.getRoot().getBuilderSettings() || {};
175
await graph.build({
176
graph,
177
+ cacheDir: path.join(graph.getRoot().getRootPath(), ".ui5-cache"),
178
destPath: argv.dest,
179
cleanDest: argv["clean-dest"],
180
createBuildManifest: argv["create-build-manifest"],
0 commit comments