create-turbo 1.6.2 → 1.6.3
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
- package/templates/_shared_ts/README.md +2 -2
- package/templates/_shared_ts/apps/docs/README.md +1 -1
- package/templates/_shared_ts/apps/docs/package.json +1 -1
- package/templates/_shared_ts/apps/web/README.md +1 -1
- package/templates/_shared_ts/apps/web/package.json +1 -1
- package/templates/_shared_ts/packages/eslint-config-custom/package.json +1 -1
- package/templates/_shared_ts/turbo.json +1 -1
- package/templates/berry/README.md +9 -9
- package/templates/npm/README.md +9 -9
- package/templates/pnpm/README.md +9 -9
- package/templates/pnpm/apps/docs/package.json +1 -1
- package/templates/pnpm/apps/web/package.json +1 -1
- package/templates/yarn/README.md +9 -9
package/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Welcome to Turborepo
|
2
2
|
|
3
|
-
[Turborepo](https://
|
3
|
+
[Turborepo](https://turbo.build/repo) is a high-performance monorepo build-system for modern JavaScript and TypeScript codebases.
|
4
4
|
|
5
5
|
To get started, open a new shell and run:
|
6
6
|
|
@@ -10,4 +10,4 @@ npx create-turbo@latest
|
|
10
10
|
|
11
11
|
Then follow the prompts you see in your terminal.
|
12
12
|
|
13
|
-
For more information about Turborepo, [visit
|
13
|
+
For more information about Turborepo, [visit turbo.build/repo](https://turbo.build/repo) and follow us on Twitter ([@turborepo](https://twitter.com/turborepo))!
|
package/dist/index.js
CHANGED
@@ -31,9 +31,9 @@ var import_chalk = __toESM(require("chalk"));
|
|
31
31
|
// package.json
|
32
32
|
var package_default = {
|
33
33
|
name: "create-turbo",
|
34
|
-
version: "1.6.
|
34
|
+
version: "1.6.3",
|
35
35
|
description: "Create a new Turborepo",
|
36
|
-
homepage: "https://
|
36
|
+
homepage: "https://turbo.build/repo",
|
37
37
|
license: "MPL-2.0",
|
38
38
|
repository: {
|
39
39
|
type: "git",
|
package/package.json
CHANGED
@@ -8,8 +8,8 @@ This turborepo includes the following packages/apps:
|
|
8
8
|
|
9
9
|
### Apps and Packages
|
10
10
|
|
11
|
-
- `docs`: a [Next.js](https://nextjs.org) app
|
12
|
-
- `web`: another [Next.js](https://nextjs.org) app
|
11
|
+
- `docs`: a [Next.js](https://nextjs.org/) app
|
12
|
+
- `web`: another [Next.js](https://nextjs.org/) app
|
13
13
|
- `ui`: a stub React component library shared by both `web` and `docs` applications
|
14
14
|
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
|
15
15
|
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
|
@@ -19,7 +19,7 @@ The `pages/api` directory is mapped to `/api/*`. Files in this directory are tre
|
|
19
19
|
To learn more about Next.js, take a look at the following resources:
|
20
20
|
|
21
21
|
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
22
|
-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
22
|
+
- [Learn Next.js](https://nextjs.org/learn/foundations/about-nextjs) - an interactive Next.js tutorial.
|
23
23
|
|
24
24
|
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
25
25
|
|
@@ -19,7 +19,7 @@ The `pages/api` directory is mapped to `/api/*`. Files in this directory are tre
|
|
19
19
|
To learn more about Next.js, take a look at the following resources:
|
20
20
|
|
21
21
|
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
22
|
-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
22
|
+
- [Learn Next.js](https://nextjs.org/learn/foundations/about-nextjs) - an interactive Next.js tutorial.
|
23
23
|
|
24
24
|
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
25
25
|
|
@@ -8,8 +8,8 @@ This turborepo uses [Yarn](https://yarnpkg.com/) as a package manager. It includ
|
|
8
8
|
|
9
9
|
### Apps and Packages
|
10
10
|
|
11
|
-
- `docs`: a [Next.js](https://nextjs.org) app
|
12
|
-
- `web`: another [Next.js](https://nextjs.org) app
|
11
|
+
- `docs`: a [Next.js](https://nextjs.org/) app
|
12
|
+
- `web`: another [Next.js](https://nextjs.org/) app
|
13
13
|
- `ui`: a stub React component library shared by both `web` and `docs` applications
|
14
14
|
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
|
15
15
|
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
|
@@ -44,7 +44,7 @@ yarn run dev
|
|
44
44
|
|
45
45
|
### Remote Caching
|
46
46
|
|
47
|
-
Turborepo can use a technique known as [Remote Caching](https://
|
47
|
+
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.
|
48
48
|
|
49
49
|
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:
|
50
50
|
|
@@ -65,9 +65,9 @@ yarn dlx turbo link
|
|
65
65
|
|
66
66
|
Learn more about the power of Turborepo:
|
67
67
|
|
68
|
-
- [Pipelines](https://
|
69
|
-
- [Caching](https://
|
70
|
-
- [Remote Caching](https://
|
71
|
-
- [
|
72
|
-
- [Configuration Options](https://
|
73
|
-
- [CLI Usage](https://
|
68
|
+
- [Pipelines](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
|
69
|
+
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
|
70
|
+
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
|
71
|
+
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
|
72
|
+
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
|
73
|
+
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
|
package/templates/npm/README.md
CHANGED
@@ -8,8 +8,8 @@ This turborepo uses [npm](https://www.npmjs.com/) as a package manager. It inclu
|
|
8
8
|
|
9
9
|
### Apps and Packages
|
10
10
|
|
11
|
-
- `docs`: a [Next.js](https://nextjs.org) app
|
12
|
-
- `web`: another [Next.js](https://nextjs.org) app
|
11
|
+
- `docs`: a [Next.js](https://nextjs.org/) app
|
12
|
+
- `web`: another [Next.js](https://nextjs.org/) app
|
13
13
|
- `ui`: a stub React component library shared by both `web` and `docs` applications
|
14
14
|
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
|
15
15
|
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
|
@@ -44,7 +44,7 @@ npm run dev
|
|
44
44
|
|
45
45
|
### Remote Caching
|
46
46
|
|
47
|
-
Turborepo can use a technique known as [Remote Caching](https://
|
47
|
+
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.
|
48
48
|
|
49
49
|
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:
|
50
50
|
|
@@ -65,9 +65,9 @@ npx turbo link
|
|
65
65
|
|
66
66
|
Learn more about the power of Turborepo:
|
67
67
|
|
68
|
-
- [Pipelines](https://
|
69
|
-
- [Caching](https://
|
70
|
-
- [Remote Caching](https://
|
71
|
-
- [
|
72
|
-
- [Configuration Options](https://
|
73
|
-
- [CLI Usage](https://
|
68
|
+
- [Pipelines](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
|
69
|
+
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
|
70
|
+
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
|
71
|
+
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
|
72
|
+
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
|
73
|
+
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
|
package/templates/pnpm/README.md
CHANGED
@@ -8,8 +8,8 @@ This turborepo uses [pnpm](https://pnpm.io) as a package manager. It includes th
|
|
8
8
|
|
9
9
|
### Apps and Packages
|
10
10
|
|
11
|
-
- `docs`: a [Next.js](https://nextjs.org) app
|
12
|
-
- `web`: another [Next.js](https://nextjs.org) app
|
11
|
+
- `docs`: a [Next.js](https://nextjs.org/) app
|
12
|
+
- `web`: another [Next.js](https://nextjs.org/) app
|
13
13
|
- `ui`: a stub React component library shared by both `web` and `docs` applications
|
14
14
|
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
|
15
15
|
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
|
@@ -44,7 +44,7 @@ pnpm run dev
|
|
44
44
|
|
45
45
|
### Remote Caching
|
46
46
|
|
47
|
-
Turborepo can use a technique known as [Remote Caching](https://
|
47
|
+
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.
|
48
48
|
|
49
49
|
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:
|
50
50
|
|
@@ -65,9 +65,9 @@ pnpm dlx turbo link
|
|
65
65
|
|
66
66
|
Learn more about the power of Turborepo:
|
67
67
|
|
68
|
-
- [Pipelines](https://
|
69
|
-
- [Caching](https://
|
70
|
-
- [Remote Caching](https://
|
71
|
-
- [
|
72
|
-
- [Configuration Options](https://
|
73
|
-
- [CLI Usage](https://
|
68
|
+
- [Pipelines](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
|
69
|
+
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
|
70
|
+
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
|
71
|
+
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
|
72
|
+
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
|
73
|
+
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
|
package/templates/yarn/README.md
CHANGED
@@ -8,8 +8,8 @@ This turborepo uses [Yarn](https://classic.yarnpkg.com/) as a package manager. I
|
|
8
8
|
|
9
9
|
### Apps and Packages
|
10
10
|
|
11
|
-
- `docs`: a [Next.js](https://nextjs.org) app
|
12
|
-
- `web`: another [Next.js](https://nextjs.org) app
|
11
|
+
- `docs`: a [Next.js](https://nextjs.org/) app
|
12
|
+
- `web`: another [Next.js](https://nextjs.org/) app
|
13
13
|
- `ui`: a stub React component library shared by both `web` and `docs` applications
|
14
14
|
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
|
15
15
|
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
|
@@ -44,7 +44,7 @@ yarn run dev
|
|
44
44
|
|
45
45
|
### Remote Caching
|
46
46
|
|
47
|
-
Turborepo can use a technique known as [Remote Caching](https://
|
47
|
+
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.
|
48
48
|
|
49
49
|
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:
|
50
50
|
|
@@ -65,9 +65,9 @@ npx turbo link
|
|
65
65
|
|
66
66
|
Learn more about the power of Turborepo:
|
67
67
|
|
68
|
-
- [Pipelines](https://
|
69
|
-
- [Caching](https://
|
70
|
-
- [Remote Caching](https://
|
71
|
-
- [
|
72
|
-
- [Configuration Options](https://
|
73
|
-
- [CLI Usage](https://
|
68
|
+
- [Pipelines](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
|
69
|
+
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
|
70
|
+
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
|
71
|
+
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
|
72
|
+
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
|
73
|
+
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
|