From 8f5a8265d59e9f9ea9da4a2646d4a5c1c11ea649 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Fri, 29 Apr 2022 11:54:22 -0400 Subject: [PATCH] fix(core): move removing roots migration to 14.0.6 (#10066) --- packages/nx/migrations.json | 6 +++--- .../{update-14-0-4 => update-14-0-6}/remove-roots.spec.ts | 0 .../{update-14-0-4 => update-14-0-6}/remove-roots.ts | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename packages/nx/src/migrations/{update-14-0-4 => update-14-0-6}/remove-roots.spec.ts (100%) rename packages/nx/src/migrations/{update-14-0-4 => update-14-0-6}/remove-roots.ts (100%) diff --git a/packages/nx/migrations.json b/packages/nx/migrations.json index 26a2fc578a6a7..da1e1a3474a3d 100644 --- a/packages/nx/migrations.json +++ b/packages/nx/migrations.json @@ -1,10 +1,10 @@ { "generators": { - "14-0-4-remove-root": { + "14-0-6-remove-root": { "cli": "nx", - "version": "14.0.4", + "version": "14.0.6", "description": "Remove root property from project.json files", - "factory": "./src/migrations/update-14-0-4/remove-roots" + "factory": "./src/migrations/update-14-0-6/remove-roots" } } } diff --git a/packages/nx/src/migrations/update-14-0-4/remove-roots.spec.ts b/packages/nx/src/migrations/update-14-0-6/remove-roots.spec.ts similarity index 100% rename from packages/nx/src/migrations/update-14-0-4/remove-roots.spec.ts rename to packages/nx/src/migrations/update-14-0-6/remove-roots.spec.ts diff --git a/packages/nx/src/migrations/update-14-0-4/remove-roots.ts b/packages/nx/src/migrations/update-14-0-6/remove-roots.ts similarity index 100% rename from packages/nx/src/migrations/update-14-0-4/remove-roots.ts rename to packages/nx/src/migrations/update-14-0-6/remove-roots.ts