You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17
Original file line number
Diff line number
Diff line change
@@ -437,6 +437,23 @@ release:
437
437
438
438
Note that you might need to configure a [deploy key](https://docs.gitlab.com/ee/user/project/deploy_keys/) in order to push to your remote repository.
439
439
440
+
## Nx Release migration
441
+
442
+
If you want to migrate to Nx Release, run the following command:
443
+
444
+
```bash
445
+
nx g @jscutlery/semver:migrate-nx-release
446
+
```
447
+
448
+
By executing this generator, the existing `@jscutlery/semver` configuration will be removed, and Nx Release will be appropriately configured for your projects.
449
+
450
+
> [!NOTE]
451
+
> The migration process does not currently support the sync mode.
452
+
> Complex or highly customized configurations may require additional manual adjustments after running the migration generator.
453
+
> After running this generator, you will need to adjust any custom scripts or CI workflows related to versioning and releases to align with the new Nx release workflow.
454
+
455
+
For more details on using Nx Release, refer to the [official Nx documentation](https://nx.dev/recipes/nx-release/get-started-with-nx-release#get-started-with-nx-release).
0 commit comments