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.
Run the Generator
Section titled “Run the Generator”The convert-to-monorepo generator will attempt to convert a standalone repo to a monorepo.
nx g convert-to-monorepoIf you need to do the conversion manually, you can follow the steps below.
Manual Conversion Strategy
Section titled “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
- If there is a - tsconfig.jsonfile in the root, rename it to- tsconfig.old.json- This 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/temp- Terminal window nx g app apps/temp
- Move the - /src(and- /public, if present) folders to- apps/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.json- Project-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
- 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,- jestConfig- tsconfig.json,- tsconfig.app.json,- tsconfig.spec.json- extends,- outDir,- files- .eslintrc.json- extends- jest.config.ts- preset,- coverageDirectory- vite.config.ts- cacheDir,- root,- dir
- Doublecheck that all the tasks defined in the - apps/temp/project.jsonfile still work.- Terminal window nx build tempnx test tempnx 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 the- my-appconfig files.
- Update the - /apps/temp-e2e/project.json- implicitDependenciesto be- tempinstead of- my-app
- Doublecheck that all the tasks defined in the - apps/temp-e2e/project.jsonfile still work.- Terminal window nx lint temp-e2enx 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, rename- temp-e2eto- my-app-e2eand rename- tempto- my-app- Terminal window nx g move --projectName=temp-e2e --destination=my-app-e2enx g move --projectName=temp --destination=my-app
- Update the - defaultProjectin- nx.jsonif needed
- Check again that all the tasks still work and that the - nx graphdisplays what you expect.