Skip to content

Commit 59af0d6

Browse files
authored
Merge branch 'main' into emit-license
2 parents b075fb7 + 075caa0 commit 59af0d6

File tree

91 files changed

+1218
-783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1218
-783
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
8282

8383
- name: Set node version to ${{ matrix.node_version }}
84-
uses: actions/setup-node@v5
84+
uses: actions/setup-node@v6
8585
with:
8686
node-version: ${{ matrix.node_version }}
8787
cache: "pnpm"
@@ -154,7 +154,7 @@ jobs:
154154
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
155155

156156
- name: Set node version to 22
157-
uses: actions/setup-node@v5
157+
uses: actions/setup-node@v6
158158
with:
159159
node-version: 22
160160
cache: "pnpm"

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
2121

2222
- name: Set node version to 22
23-
uses: actions/setup-node@v5
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: 22
2626
cache: "pnpm"

.github/workflows/preview-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
3030

3131
- name: Set node version to 22
32-
uses: actions/setup-node@v5
32+
uses: actions/setup-node@v6
3333
with:
3434
node-version: 22
3535
registry-url: https://registry.npmjs.org/

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
2525

2626
- name: Set node version to 22
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: 22
3030
registry-url: https://registry.npmjs.org/

docs/config/dep-optimization-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Unless noted, the options in this section are only applied to the dependency opt
1010

1111
By default, Vite will crawl all your `.html` files to detect dependencies that need to be pre-bundled (ignoring `node_modules`, `build.outDir`, `__tests__` and `coverage`). If `build.rollupOptions.input` is specified, Vite will crawl those entry points instead.
1212

13-
If neither of these fit your needs, you can specify custom entries using this option - the value should be a [`tinyglobby` pattern](https://github.com/SuperchupuDev/tinyglobby) or array of patterns that are relative from Vite project root. This will overwrite default entries inference. Only `node_modules` and `build.outDir` folders will be ignored by default when `optimizeDeps.entries` is explicitly defined. If other folders need to be ignored, you can use an ignore pattern as part of the entries list, marked with an initial `!`. `node_modules` will not be ignored for patterns that explicitly include the string `node_modules`.
13+
If neither of these fit your needs, you can specify custom entries using this option - the value should be a [`tinyglobby` pattern](https://superchupu.dev/tinyglobby/comparison) or array of patterns that are relative from Vite project root. This will overwrite default entries inference. Only `node_modules` and `build.outDir` folders will be ignored by default when `optimizeDeps.entries` is explicitly defined. If other folders need to be ignored, you can use an ignore pattern as part of the entries list, marked with an initial `!`. `node_modules` will not be ignored for patterns that explicitly include the string `node_modules`.
1414

1515
## optimizeDeps.exclude <NonInheritBadge />
1616

docs/config/server-options.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ Set to `true` to exit if port is already in use, instead of automatically trying
9292

9393
Enable TLS + HTTP/2. The value is an [options object](https://nodejs.org/api/https.html#https_https_createserver_options_requestlistener) passed to `https.createServer()`.
9494

95-
Note that this downgrades to TLS only when the [`server.proxy` option](#server-proxy) is also used.
96-
9795
A valid certificate is needed. For a basic setup, you can add [@vitejs/plugin-basic-ssl](https://github.com/vitejs/vite-plugin-basic-ssl) to the project plugins, which will automatically create and cache a self-signed certificate. But we recommend creating your own certificates.
9896

9997
## server.open
@@ -233,7 +231,7 @@ The error that appears in the Browser when the fallback happens can be ignored.
233231

234232
Warm up files to transform and cache the results in advance. This improves the initial page load during server starts and prevents transform waterfalls.
235233

236-
`clientFiles` are files that are used in the client only, while `ssrFiles` are files that are used in SSR only. They accept an array of file paths or [`tinyglobby`](https://github.com/SuperchupuDev/tinyglobby) patterns relative to the `root`.
234+
`clientFiles` are files that are used in the client only, while `ssrFiles` are files that are used in SSR only. They accept an array of file paths or [`tinyglobby` patterns](https://superchupu.dev/tinyglobby/comparison) relative to the `root`.
237235

238236
Make sure to only add files that are frequently used to not overload the Vite dev server on startup.
239237

docs/guide/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ Note that:
619619

620620
- This is a Vite-only feature and is not a web or ES standard.
621621
- The glob patterns are treated like import specifiers: they must be either relative (start with `./`) or absolute (start with `/`, resolved relative to project root) or an alias path (see [`resolve.alias` option](/config/shared-options.md#resolve-alias)).
622-
- The glob matching is done via [`tinyglobby`](https://github.com/SuperchupuDev/tinyglobby).
622+
- The glob matching is done via [`tinyglobby`](https://github.com/SuperchupuDev/tinyglobby) - check out its documentation for [supported glob patterns](https://superchupu.dev/tinyglobby/comparison).
623623
- You should also be aware that all the arguments in the `import.meta.glob` must be **passed as literals**. You can NOT use variables or expressions in them.
624624

625625
## Dynamic Import

docs/guide/static-deploy-github-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Checkout
3636
uses: actions/checkout@v5
3737
- name: Set up Node
38-
uses: actions/setup-node@v5
38+
uses: actions/setup-node@v6
3939
with:
4040
node-version: lts/*
4141
cache: 'npm'

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"gsap": "^3.13.0",
1616
"markdown-it-image-size": "^15.0.1",
1717
"vitepress": "^2.0.0-alpha.12",
18-
"vitepress-plugin-group-icons": "^1.6.3",
18+
"vitepress-plugin-group-icons": "^1.6.4",
1919
"vitepress-plugin-llms": "^1.8.0",
2020
"vue": "^3.5.22",
2121
"vue-tsc": "^3.1.1"

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export default defineConfig(
3939
parserOptions: {
4040
sourceType: 'module',
4141
ecmaVersion: 2022,
42+
isolatedDeclarations: true,
4243
project: shouldTypeCheck
4344
? [
4445
'./packages/*/tsconfig.json',

0 commit comments

Comments
 (0)