Skip to content

Commit

Permalink
docs(computer-core): add boolean-algebra
Browse files Browse the repository at this point in the history
  • Loading branch information
Sun-ZhenXing committed Dec 10, 2023
1 parent 585c948 commit a996a83
Show file tree
Hide file tree
Showing 13 changed files with 1,541 additions and 1,171 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 部署文档
name: Deploy Docs

on:
push:
Expand All @@ -14,27 +14,27 @@ jobs:
with:
fetch-depth: 0

- name: 安装 pnpm
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true

- name: 设置 Node.js
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm

- name: 构建文档
- name: Build Docs
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
pnpm run docs:build
> src/.vuepress/dist/.nojekyll
> docs/.vuepress/dist/.nojekyll
- name: 部署文档
- name: Deploy Docs
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: src/.vuepress/dist
folder: docs/.vuepress/dist
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder
FROM node:20.9.0-bookworm as builder
FROM node:20.10.0-bookworm as builder

WORKDIR /app

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
},
"devDependencies": {
"@algolia/client-search": "^4.20.0",
"@vue/repl": "^2.7.0",
"@vuepress/client": "2.0.0-beta.68",
"@vuepress/plugin-docsearch": "2.0.0-beta.68",
"@vuepress/utils": "2.0.0-beta.68",
"@vue/repl": "^3.0.0",
"@vuepress/client": "2.0.0-rc.0",
"@vuepress/plugin-docsearch": "2.0.0-rc.0",
"@vuepress/utils": "2.0.0-rc.0",
"echarts": "^5.4.3",
"flowchart.ts": "^1.0.1",
"flowchart.ts": "^2.0.0",
"github-slugger": "^2.0.0",
"katex": "^0.16.9",
"mermaid": "^10.6.1",
"reveal.js": "^5.0.2",
"vue": "^3.3.8",
"vuepress": "2.0.0-beta.68",
"vuepress-theme-hope": "2.0.0-beta.251"
"vue": "^3.3.11",
"vuepress": "2.0.0-rc.0",
"vuepress-theme-hope": "2.0.0-rc.3"
}
}
Loading

0 comments on commit a996a83

Please sign in to comment.