From 0945b3505a7f11dd1e94e4dc4b7ed1fcd40b2e97 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Fri, 23 Apr 2021 15:24:10 -0400 Subject: [PATCH] fix(repo): fix nx-dev build (#5450) --- workspace.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/workspace.json b/workspace.json index 474d7a3c00..38e98e78ac 100644 --- a/workspace.json +++ b/workspace.json @@ -2206,7 +2206,13 @@ "sourceRoot": "nx-dev/nx-dev", "projectType": "application", "targets": { - "build-nx-dev": { + "build": { + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ], "executor": "@nrwl/next:build", "outputs": ["{options.outputPath}"], "options": { @@ -2220,7 +2226,7 @@ "serve": { "executor": "@nrwl/next:server", "options": { - "buildTarget": "nx-dev:build-nx-dev", + "buildTarget": "nx-dev:build", "dev": true }, "configurations": { @@ -2233,7 +2239,7 @@ "export": { "executor": "@nrwl/next:export", "options": { - "buildTarget": "nx-dev:build-nx-dev:production" + "buildTarget": "nx-dev:build:production" } }, "lint": {