这是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
14 changes: 14 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,17 @@ jobs:
run: cd docs/link-checker && pnpm run check-links
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

check-spelling:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: ./.github/actions/setup-node

- name: Install Global Turbo
uses: ./.github/actions/install-global-turbo

- name: Run link checker
run: turbo run check-spelling
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ CI/CD pipelines are a perfect place to use `--affected`. With `--affected`, Turb

In the context of a PR, this means that Turborepo can determine which packages have changed between the PR's base branch and the PR's head branch. This allows you to run tasks only for the packages that are affected by the changes in the PR.

While `GITHUB_BASE_REF` works well in `pull_request` and `pull_request_target` events, it is not available during regular push events. In those cases, we use `GITHUB_EVENT_PATH` to determine the base branch to compare your commit to. In force pushes and pushing branch with no additionals commits, we compare to the parent of the first commit on the branch.
While `GITHUB_BASE_REF` works well in `pull_request` and `pull_request_target` events, it is not available during regular push events. In those cases, we use `GITHUB_EVENT_PATH` to determine the base branch to compare your commit to. In force pushes and pushing branch with no additional commits, we compare to the parent of the first commit on the branch.

### Using `turbo-ignore`

Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/docs/support-policy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Stable builds of Turborepo follow semantic versioning (semver) and are thoroughl

Turborepo also offers specific APIs that may be released in an earlier phase of development. This is to allow early adopters to give valuable feedback and help the core team gain confidence in APIs ahead of their stable release. APIs that are available pre-stable will be marked as such in the documentation and within `turbo` itself whenever possible.

Not every API will be released in every phase. We use our best judgement to determine the phase for an API based on our confidence for the feature, weighing factors like the feature's complexity, possible use cases, and feedback from early users of the API.
Not every API will be released in every phase. We use our best judgment to determine the phase for an API based on our confidence for the feature, weighing factors like the feature's complexity, possible use cases, and feedback from early users of the API.

The Turborepo core team would like to thank any users who do use features early and express our appreciation for any feedback you provide.

Expand Down
2 changes: 1 addition & 1 deletion docs/site/content/openapi/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: OpenAPI specification
description: OpenAPI specfication for self-hosted Remote Cache servers.
description: OpenAPI specification for self-hosted Remote Cache servers.
---

This page is a stub so that the sidebar shows this title at the top of the sidebar.
Expand Down
40 changes: 40 additions & 0 deletions docs/site/dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,43 @@ const
repo's
globbing
discoverability
Nx
Nx's
Vitest's
shadcn
v8
v9
Configs
v9's
v1
v2
keybind
Keybind
composable
monorepo-friendly
TUI
misconfiguration
Turbopack
Changeset's
scaffolder
Nx-specific
Nx.
repos
GraphQL
GraphiQL
Preflight
Config
eslint-plugin-turbo.
denylist
querystring
Passthrough
eslint
eslint-plugin-turbo
amongst
namespaces
json
misconfigured
keybinds
ORM's
pre-stable
semver
2 changes: 1 addition & 1 deletion docs/site/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"env": []
},
"check-spelling": {
"inputs": ["$TURBO_DEFAULTS$", "**/*.mdx"]
"inputs": ["$TURBO_DEFAULTS$", "**/*.mdx", "dictionary.txt"]
},
"write-private-files": {
"cache": false,
Expand Down
Loading