From ba2d90e5e9fd226a8c2107a9ebecf0077d170616 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Tue, 14 Feb 2023 16:15:09 -0800 Subject: [PATCH] chore: nx migrate latest --- migrations.json | 20 ++++++++++++++++++++ package.json | 12 ++++++------ workspace.json | 17 ----------------- 3 files changed, 26 insertions(+), 23 deletions(-) create mode 100644 migrations.json delete mode 100644 workspace.json diff --git a/migrations.json b/migrations.json new file mode 100644 index 000000000..224faaef7 --- /dev/null +++ b/migrations.json @@ -0,0 +1,20 @@ +{ + "migrations": [ + { + "version": "15.7.0-beta.0", + "description": "Split global configuration files into individual project.json files. This migration has been added automatically to the beginning of your migration set to retroactively make them work with the new version of Nx.", + "cli": "nx", + "implementation": "./src/migrations/update-15-7-0/split-configuration-into-project-json-files", + "package": "@nrwl/workspace", + "name": "15-7-0-split-configuration-into-project-json-files" + }, + { + "version": "15.7.0-beta.0", + "description": "Split global configuration files (e.g., workspace.json) into individual project.json files.", + "cli": "nx", + "implementation": "./src/migrations/update-15-7-0/split-configuration-into-project-json-files", + "package": "@nrwl/workspace", + "name": "15-7-0-split-configuration-into-project-json-files" + } + ] +} diff --git a/package.json b/package.json index f5a4a69f1..c878a9b3f 100644 --- a/package.json +++ b/package.json @@ -24,11 +24,11 @@ "devDependencies": { "@nativescript/hook": "^2.0.0", "@nativescript/nx": "~4.2.0", - "@nrwl/cli": "15.6.3", - "@nrwl/eslint-plugin-nx": "15.6.3", - "@nrwl/jest": "15.6.3", - "@nrwl/node": "15.6.3", - "@nrwl/workspace": "15.6.3", + "@nrwl/cli": "15.7.0", + "@nrwl/eslint-plugin-nx": "15.7.0", + "@nrwl/jest": "15.7.0", + "@nrwl/node": "15.7.0", + "@nrwl/workspace": "15.7.0", "@nstudio/focus": "^15.0.0", "@nstudio/nps-i": "~2.0.0", "@prettier/plugin-xml": "^2.2.0", @@ -51,7 +51,7 @@ "module-alias": "^2.2.2", "nativescript": "~8.4.0", "nativescript-typedoc-theme": "1.1.0", - "nx": "15.6.3", + "nx": "15.7.0", "parse-css": "git+https://github.com/tabatkins/parse-css.git", "parserlib": "^1.1.1", "prettier": "^2.6.2", diff --git a/workspace.json b/workspace.json deleted file mode 100644 index 087d4d011..000000000 --- a/workspace.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 2, - "projects": { - "apps-automated": "apps/automated", - "apps-toolbox": "apps/toolbox", - "apps-ui": "apps/ui", - "core": "packages/core", - "core-api-docs": "tools/scripts", - "types": "packages/types", - "types-android": "packages/types-android", - "types-ios": "packages/types-ios", - "types-minimal": "packages/types-minimal", - "ui-mobile-base": "packages/ui-mobile-base", - "webpack5": "packages/webpack5" - }, - "$schema": "./node_modules/nx/schemas/workspace-schema.json" -}