diff --git a/packages/create-turbo/__tests__/cli.test.ts b/packages/create-turbo/__tests__/cli.test.ts index 6636d7a05e9e5..99bbb88d4c4b2 100644 --- a/packages/create-turbo/__tests__/cli.test.ts +++ b/packages/create-turbo/__tests__/cli.test.ts @@ -45,13 +45,13 @@ describe("create-turbo cli", () => { if (!fs.existsSync(createTurbo)) { // TODO: Consider running the build here instead of throwing throw new Error( - `Cannot run Turbrepo CLI tests without building create-turbo` + `Cannot run Turborepo CLI tests without building create-turbo` ); } }); afterAll(() => { - // clean up after the whole test suite just in case any excptions prevented beforeEach callback from running + // clean up after the whole test suite just in case any exceptions prevented beforeEach callback from running cleanupTestDir(); }); diff --git a/packages/turbo-codemod/README.md b/packages/turbo-codemod/README.md index 2cbbd6c8789ea..7fe2597fffbf4 100644 --- a/packages/turbo-codemod/README.md +++ b/packages/turbo-codemod/README.md @@ -1,5 +1,5 @@ -# Turbrepo Codemods +# Turborepo Codemods -Turbrepo provides Codemod transformations to help upgrade your Turbrepo codebase when a feature is deprecated. +Turborepo provides Codemod transformations to help upgrade your Turborepo codebase when a feature is deprecated. Codemods are transformations that run on your codebase programmatically. This allows for a large amount of changes to be applied without having to manually go through every file.