Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(turborepo): typos #3285

Merged
merged 1 commit into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/create-turbo/__tests__/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

Expand Down
4 changes: 2 additions & 2 deletions packages/turbo-codemod/README.md
Original file line number Diff line number Diff line change
@@ -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.