- Move the integrated vs. package-based concept page to the deprecated section - Remove the integrated project in package-based repo recipe - Remove the package-based project in integrated repo recipe - Rename standalone to integrated recipe - Update references to integrated or package-based terms in tutorials
6.2 KiB
Convert from a Standalone Repository to a Monorepo
You can always add another app to a standalone repository the same way you would in a monorepo. But at some point, you may want to move the primary app out of the root of your repo because the repo is no longer primarily focused on that one app. There are other apps that are equally important and you want the folder structure to align with the new reality.
{% youtube src="https://youtu.be/ztNpLf2Zl-c?si=u0CfLAx_tpioZ3Vu" title="Graduating your Standalone Nx Repo to a Monorepo" width="100%" /%}
Run the Generator
The convert-to-monorepo generator will attempt to convert a standalone repo to a monorepo.
nx g convert-to-monorepo
If you need to do the conversion manually, you can follow the steps below.
Manual Conversion Strategy
For this recipe, we'll assume that the root-level app is named my-app. The high-level process we'll go through to move the app involves four stages:
- Create a new app named
tempunderapps/temp. - Move source and config files from
my-appintoapps/temp. - Delete the files for
my-app. - Rename
apps/temptoapps/my-app
Steps
-
Update the
workspaceLayoutproperty innx.jsonto be:{ "workspaceLayout": { "appsDir": "apps", "libsDir": "libs" } }This will make sure that new apps are created under
appsand new libraries are created underlibs. -
If there is a
tsconfig.jsonfile in the root, rename it totsconfig.old.jsonThis step is to make sure that a
tsconfig.base.jsonfile is generated by the app generator in the next step. -
Create a new app using the appropriate plugin under
apps/tempnx g app apps/temp -
Move the
/src(and/public, if present) folders toapps/temp/, overwriting the folders already there. -
For each config file in
apps/temp, copy over the corresponding file from the root of the repo.It can be difficult to know which files are root-level config files and which files are project-specific config files. Here is a non-exhaustive list of config files to help distinguish between the two.
Type of Config Files Root-level .eslintignore,.eslintrc.base.json,.gitignore,.prettierignore,jest.config.ts,jest.preset.js,.prettierrc,nx.json,package.json,tsconfig.base.jsonProject-level .eslintrc.json,index.html,project.json,jest.config.app.ts,tsconfig.app.json,tsconfig.json,tsconfig.spec.json,vite.config.ts,webpack.config.js{% callout title="jest.config.app.ts" type="note" %}
jest.config.app.tsin the root should be renamed tojest.config.tswhen moved toapps/temp. Also update thejestConfigoption inproject.jsonto point tojest.config.tsinstead ofjest.config.app.ts. {% /callout %} -
Update the paths of the project-specific config files that were copied into
apps/temp.Here is a non-exhaustive list of properties that will need to be updated to have the correct path:
Config File(s) Properties to Check project.json$schema,sourceRoot,root,outputPath,reportsDirectory,cypressConfig,lintFilePatterns,index,main,tsConfig,assets,styles,jestConfigtsconfig.json,tsconfig.app.json,tsconfig.spec.jsonextends,outDir,files.eslintrc.jsonextendsjest.config.tspreset,coverageDirectoryvite.config.tscacheDir,root,dir -
Doublecheck that all the tasks defined in the
apps/temp/project.jsonfile still work.nx build temp nx test temp nx lint temp -
Move the
/e2e/srcfolder to/apps/temp-e2e, overwriting the folder already there -
For each config file in
apps/temp-e2e, copy over the corresponding file from the root of the repo. Update the paths for these files in the same way you did for themy-appconfig files. -
Update the
/apps/temp-e2e/project.jsonimplicitDependenciesto betempinstead ofmy-app -
Doublecheck that all the tasks defined in the
apps/temp-e2e/project.jsonfile still work.nx lint temp-e2e nx e2e temp-e2e -
Delete all the project specific config files in the root and under
e2e -
Once the
project.jsonfile has been deleted in the root, renametemp-e2etomy-app-e2eand renametemptomy-appnx g move --projectName=temp-e2e --destination=my-app-e2e nx g move --projectName=temp --destination=my-app -
Update the
defaultProjectinnx.jsonif needed -
Check again that all the tasks still work and that the
nx graphdisplays what you expect.