Skip to content

Commit 140e3ec

Browse files
authored
update
1 parent f04c65d commit 140e3ec

File tree

137 files changed

+27397
-1337
lines changed

Some content is hidden

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

137 files changed

+27397
-1337
lines changed

.github/workflows/deploy.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Sample workflow for building and deploying a VitePress site to GitHub Pages
2+
#
3+
name: Deploy VitePress site to Pages
4+
5+
on:
6+
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
7+
# using the `master` branch as the default branch.
8+
push:
9+
branches: [main]
10+
11+
# Allows you to run this workflow manually from the Actions tab
12+
workflow_dispatch:
13+
14+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15+
permissions:
16+
contents: read
17+
pages: write
18+
id-token: write
19+
20+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
22+
concurrency:
23+
group: pages
24+
cancel-in-progress: false
25+
26+
jobs:
27+
# Build job
28+
build:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v4
33+
with:
34+
fetch-depth: 0 # Not needed if lastUpdated is not enabled
35+
# - uses: pnpm/action-setup@v3 # Uncomment this if you're using pnpm
36+
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
37+
- name: Setup Node
38+
uses: actions/setup-node@v4
39+
with:
40+
node-version: 20
41+
cache: npm # or pnpm / yarn
42+
- name: Setup Pages
43+
uses: actions/configure-pages@v4
44+
- name: Install dependencies
45+
run: npm ci # or pnpm install / yarn install / bun install
46+
- name: Build with VitePress
47+
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
48+
- name: Upload artifact
49+
uses: actions/upload-pages-artifact@v3
50+
with:
51+
path: docs/.vitepress/dist
52+
53+
# Deployment job
54+
deploy:
55+
environment:
56+
name: github-pages
57+
url: ${{ steps.deployment.outputs.page_url }}
58+
needs: build
59+
runs-on: ubuntu-latest
60+
name: Deploy
61+
steps:
62+
- name: Deploy to GitHub Pages
63+
id: deployment
64+
uses: actions/deploy-pages@v4

CODE_OF_CONDUCT.md

-128
This file was deleted.

vite/.vitepress/cache/deps/_metadata.json renamed to docs/.vitepress/cache/deps/_metadata.json

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,29 @@
11
{
2-
"hash": "f095d9be",
3-
"configHash": "8c5ba4a4",
2+
"hash": "4d29e785",
3+
"configHash": "cb2ab984",
44
"lockfileHash": "373c3578",
5-
"browserHash": "01ce74e1",
5+
"browserHash": "8ff25310",
66
"optimized": {
77
"vue": {
88
"src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js",
99
"file": "vue.js",
10-
"fileHash": "b792a15a",
10+
"fileHash": "6ea443d2",
1111
"needsInterop": false
1212
},
1313
"vitepress > @vue/devtools-api": {
1414
"src": "../../../../node_modules/@vue/devtools-api/dist/index.js",
1515
"file": "vitepress___@vue_devtools-api.js",
16-
"fileHash": "cf528b2d",
16+
"fileHash": "e00d683f",
1717
"needsInterop": false
1818
},
1919
"vitepress > @vueuse/core": {
2020
"src": "../../../../node_modules/@vueuse/core/index.mjs",
2121
"file": "vitepress___@vueuse_core.js",
22-
"fileHash": "c3a3e438",
23-
"needsInterop": false
24-
},
25-
"@theme/index": {
26-
"src": "../../../../node_modules/vitepress/dist/client/theme-default/index.js",
27-
"file": "@theme_index.js",
28-
"fileHash": "ab8c22e4",
22+
"fileHash": "2223863c",
2923
"needsInterop": false
3024
}
3125
},
3226
"chunks": {
33-
"chunk-TULK623U": {
34-
"file": "chunk-TULK623U.js"
35-
},
3627
"chunk-CZX7GLWV": {
3728
"file": "chunk-CZX7GLWV.js"
3829
}

0 commit comments

Comments
 (0)