From 0b3333addfa68ac71be85cc77f4abaa613c7118c Mon Sep 17 00:00:00 2001 From: Artur Tagisow Date: Fri, 24 May 2024 14:50:58 +0200 Subject: [PATCH] add nx not to run next and nuxt at once --- nx.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nx.json diff --git a/nx.json b/nx.json new file mode 100644 index 0000000000..14c18b988f --- /dev/null +++ b/nx.json @@ -0,0 +1,19 @@ +{ + "tasksRunnerOptions": { + "default": { + "runner": "nx/tasks-runners/default", + "options": { + "cacheableOperations": [] + } + } + }, + "defaultBase": "main", + "targetDefaults": { + "@vue-storefront/nuxt:test": { + "dependsOn": [ + "@vue-storefront/next:text", + "^build" + ] + } + } +}