这是indexloc提供的服务,不要输入任何密码
Skip to content
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
2 changes: 1 addition & 1 deletion docs/site/app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ code {
:host,
.dark .invert-theme,
.dark-theme .invert-theme {
/* Seperate HSL values from opacity, so opacity can be dynamic for TailwindCSS */
/* Separate HSL values from opacity, so opacity can be dynamic for TailwindCSS */
/* Gray */
--ds-gray-100-value: 0, 0%, 95%;
--ds-gray-200-value: 0, 0%, 92%;
Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/blog/turbo-1-8-0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ In workspace directories, you can now add a `turbo.json` to:
- add tasks specific to that workspace
- override configuration for tasks

This will enable teams to scale ownership of the projects in their monorepos by moving away from global configuration to fine-grain contol over tasks in workspaces.
This will enable teams to scale ownership of the projects in their monorepos by moving away from global configuration to fine-grain control over tasks in workspaces.

For example, imagine your monorepo has a Next.js app and a SvelteKit app, and you want to use Turborepo to cache outputs of the `build` task. The Next.js `build` script creates a `.next` directory, whereas SvelteKit creates a `.svelte-kit` directory. Instead of adding both build directories in your root `outputs`, you can define the `outputs` key in the workspace instead:

Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/blog/turbo-2-4.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Upgrade today by running `npx @turbo/codemod migrate` or get started with `npx c

## Boundaries <ExperimentalBadge>Experimental</ExperimentalBadge>

Turborepo is built on top of package manager Workspaces, leaning on ecosystem conventions as a part of determining your repository's task caching. However, this requires that all developers in the respository know and adhere to those conventions.
Turborepo is built on top of package manager Workspaces, leaning on ecosystem conventions as a part of determining your repository's task caching. However, this requires that all developers in the repository know and adhere to those conventions.

We're introducing Boundaries, an experimental feature to catch places in the repository where these best practices aren't being followed. This makes caching safer, and ensures your repository is prepared to use future Turborepo features safely.

Expand Down
2 changes: 1 addition & 1 deletion examples/with-angular/packages/eslint-config/angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const project = resolve(process.cwd(), 'tsconfig.app.json');

/**
* This is a custom ESLint configuration for use with
* Angular applcations
* Angular applications
*/

/** @type {import("eslint").Linter.Config} */
Expand Down
Loading