Skip to content

Commit

Permalink
remove turborepo
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperneutrino committed Jul 18, 2024
1 parent 9b2441b commit dcadf51
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1,390 deletions.
Empty file removed .npmrc
Empty file.
81 changes: 0 additions & 81 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,81 +0,0 @@
# Turborepo starter

This is an official starter Turborepo.

## Using this example

Run the following command:

```sh
npx create-turbo@latest
```

## What's inside?

This Turborepo includes the following packages/apps:

### Apps and Packages

- `docs`: a [Next.js](https://nextjs.org/) app
- `web`: another [Next.js](https://nextjs.org/) app
- `@repo/ui`: a stub React component library shared by both `web` and `docs` applications
- `@repo/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
- `@repo/typescript-config`: `tsconfig.json`s used throughout the monorepo

Each package/app is 100% [TypeScript](https://www.typescriptlang.org/).

### Utilities

This Turborepo has some additional tools already setup for you:

- [TypeScript](https://www.typescriptlang.org/) for static type checking
- [ESLint](https://eslint.org/) for code linting
- [Prettier](https://prettier.io) for code formatting

### Build

To build all apps and packages, run the following command:

```
cd my-turborepo
pnpm build
```

### Develop

To develop all apps and packages, run the following command:

```
cd my-turborepo
pnpm dev
```

### Remote Caching

Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.

By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands:

```
cd my-turborepo
npx turbo login
```

This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).

Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:

```
npx turbo link
```

## Useful Links

Learn more about the power of Turborepo:

- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
18 changes: 0 additions & 18 deletions eslint.config.mjs

This file was deleted.

26 changes: 2 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,6 @@
{
"name": "monorepo-demo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"{apps,packages}/**.*\""
},
"scripts": {},
"devDependencies": {
"@eslint/js": "^9.7.0",
"eslint": "~9.7.0",
"eslint-plugin-svelte": "^2.42.0",
"globals": "^15.8.0",
"prettier": "^3.2.5",
"svelte": "^4.2.18",
"turbo": "^2.0.6",
"typescript": "^5.4.5",
"typescript-eslint": "^7.16.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx,md}": "prettier --write"
"prettier": "^3.3.3"
}
}
Loading

0 comments on commit dcadf51

Please sign in to comment.