turbo 1.6.0 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -11
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,29 +1,47 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<
|
|
2
|
+
<a href="https://turbo.build/repo">
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/4060187/196936123-f6e1db90-784d-4174-b774-92502b718836.png">
|
|
5
|
+
<img src="https://user-images.githubusercontent.com/4060187/196936104-5797972c-ab10-4834-bd61-0d1e5f442c9c.png" height="128">
|
|
6
|
+
</picture>
|
|
7
|
+
<h1 align="center">Turborepo</h1>
|
|
8
|
+
</a>
|
|
3
9
|
</p>
|
|
4
10
|
|
|
5
11
|
<p align="center">
|
|
6
|
-
<a aria-label="npm version" href="https://www.npmjs.com/package/turbo">
|
|
7
|
-
<img alt="" src="https://badgen.net/npm/v/turbo">
|
|
8
|
-
</a>
|
|
9
12
|
<a aria-label="Vercel logo" href="https://vercel.com">
|
|
10
|
-
<img src="https://
|
|
13
|
+
<img src="https://img.shields.io/badge/MADE%20BY%20Vercel-000000.svg?style=for-the-badge&logo=Vercel&labelColor=000">
|
|
14
|
+
</a>
|
|
15
|
+
<a aria-label="NPM version" href="https://www.npmjs.com/package/turbo">
|
|
16
|
+
<img alt="" src="https://img.shields.io/npm/v/turbo.svg?style=for-the-badge&labelColor=000000">
|
|
17
|
+
</a>
|
|
18
|
+
<a aria-label="License" href="https://github.com/vercel/turbo/blob/main/LICENSE">
|
|
19
|
+
<img alt="" src="https://img.shields.io/npm/l/turbo.svg?style=for-the-badge&labelColor=000000&color=">
|
|
20
|
+
</a>
|
|
21
|
+
<a aria-label="Join the community on GitHub" href="https://github.com/vercel/turbo/discussions">
|
|
22
|
+
<img alt="" src="https://img.shields.io/badge/Join%20the%20community-blueviolet.svg?style=for-the-badge&logo=turborepo&labelColor=000000&logoWidth=20&logoColor=white">
|
|
11
23
|
</a>
|
|
12
24
|
</p>
|
|
13
25
|
|
|
14
|
-
|
|
26
|
+
## Getting Started
|
|
27
|
+
|
|
28
|
+
Visit https://turbo.build/repo/docs/getting-started to get started with Turborepo.
|
|
15
29
|
|
|
16
|
-
##
|
|
30
|
+
## Documentation
|
|
17
31
|
|
|
18
|
-
Visit https://
|
|
32
|
+
Visit https://turbo.build/repo/docs to view the full documentation.
|
|
19
33
|
|
|
20
34
|
## Community
|
|
21
35
|
|
|
22
|
-
The Turborepo community can be found on [GitHub Discussions](https://github.com/vercel/
|
|
36
|
+
The Turborepo community can be found on [GitHub Discussions](https://github.com/vercel/turbo/discussions), where you can ask questions, voice ideas, and share your projects.
|
|
23
37
|
|
|
24
|
-
To chat with other community members, you can join the [Turborepo Discord](https://
|
|
38
|
+
To chat with other community members, you can join the [Turborepo Discord](https://turbo.build/discord)
|
|
25
39
|
|
|
26
|
-
Our [Code of Conduct](https://github.com/vercel/
|
|
40
|
+
Our [Code of Conduct](https://github.com/vercel/turbo/blob/main/CODE_OF_CONDUCT.md) applies to all Turborepo community channels.
|
|
41
|
+
|
|
42
|
+
## Who is using Turbo?
|
|
43
|
+
|
|
44
|
+
Turbo is used by the world's leading companies. Check out the [Turbo Showcase](https://turbo.build/showcase) to learn more.
|
|
27
45
|
|
|
28
46
|
## Updates
|
|
29
47
|
|
|
@@ -32,3 +50,9 @@ Follow [@turborepo](https://twitter.com/turborepo) on Twitter and for project up
|
|
|
32
50
|
## Author
|
|
33
51
|
|
|
34
52
|
- Jared Palmer ([@jaredpalmer](https://twitter.com/jaredpalmer))
|
|
53
|
+
|
|
54
|
+
## Security
|
|
55
|
+
|
|
56
|
+
If you believe you have found a security vulnerability in Turbo, we encourage you to responsibly disclose this and not open a public issue. We will investigate all legitimate reports. Email `security@vercel.com` to disclose any security vulnerabilities.
|
|
57
|
+
|
|
58
|
+
https://vercel.com/security
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbo",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
|
|
5
|
-
"repository": "https://github.com/vercel/
|
|
6
|
-
"bugs": "https://github.com/vercel/
|
|
5
|
+
"repository": "https://github.com/vercel/turbo",
|
|
6
|
+
"bugs": "https://github.com/vercel/turbo/issues",
|
|
7
7
|
"homepage": "https://turborepo.org",
|
|
8
8
|
"license": "MPL-2.0",
|
|
9
9
|
"scripts": {
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"install.js"
|
|
20
20
|
],
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"turbo-darwin-64": "1.6.
|
|
23
|
-
"turbo-darwin-arm64": "1.6.
|
|
24
|
-
"turbo-linux-64": "1.6.
|
|
25
|
-
"turbo-linux-arm64": "1.6.
|
|
26
|
-
"turbo-windows-64": "1.6.
|
|
27
|
-
"turbo-windows-arm64": "1.6.
|
|
22
|
+
"turbo-darwin-64": "1.6.2",
|
|
23
|
+
"turbo-darwin-arm64": "1.6.2",
|
|
24
|
+
"turbo-linux-64": "1.6.2",
|
|
25
|
+
"turbo-linux-arm64": "1.6.2",
|
|
26
|
+
"turbo-windows-64": "1.6.2",
|
|
27
|
+
"turbo-windows-arm64": "1.6.2"
|
|
28
28
|
}
|
|
29
29
|
}
|