Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 98e15f6

Browse files
committed
feat: migrate to vuepress2
1 parent 04e6db4 commit 98e15f6

File tree

85 files changed

+6598
-12744
lines changed

Some content is hidden

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

85 files changed

+6598
-12744
lines changed

.github/dependabot.yml

-16
This file was deleted.
+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base"
5-
]
3+
"extends": ["config:base"]
64
}

.github/workflows/deploy-github.yml

+15-36
Original file line numberDiff line numberDiff line change
@@ -12,53 +12,32 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v3
1414
with:
15-
persist-credentials: false
1615
fetch-depth: 0
1716

18-
- uses: actions/[email protected]
19-
id: node-modules
17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v2
2019
with:
21-
path: node_modules/
22-
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}
23-
restore-keys: |
24-
${{ runner.os }}-node-modules-
20+
version: 7
21+
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: 18
26+
cache: pnpm
2527

2628
- name: Install Deps
27-
if: steps.node-modules.outputs.cache-hit != 'true'
28-
run: yarn install --frozen-lockfile
29+
run: pnpm install --frozen-lockfile
2930

3031
- name: Generate Markdown
31-
run: yarn run md:generate
32+
run: pnpm md:generate
3233

3334
- name: Build Website
34-
run: yarn run build:super
35+
env:
36+
NODE_OPTIONS: --max_old_space_size=4096
37+
run: pnpm build
3538

3639
- name: Deploy
37-
uses: JamesIves/github-pages-deploy-action@v4.4.1
40+
uses: JamesIves/github-pages-deploy-action@v4
3841
with:
3942
branch: gh-pages
4043
folder: dist
41-
42-
deploy-server:
43-
runs-on: ubuntu-latest
44-
needs: deploy-gh-pages
45-
steps:
46-
- name: Checkout
47-
uses: actions/checkout@v3
48-
with:
49-
ref: gh-pages
50-
fetch-depth: 0
51-
52-
- name: Configuration environment
53-
run: |
54-
mkdir -p ~/.ssh/
55-
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
56-
chmod 600 ~/.ssh/id_rsa
57-
ssh-keyscan leetcode.innenu.com >> ~/.ssh/known_hosts
58-
git config --global user.name 'Mr.Hope'
59-
git config --global user.email '[email protected]'
60-
61-
- name: Deploy
62-
run: |
63-
git push -f [email protected]:/www/wwwroot/leetcode gh-pages
64-
ssh [email protected] "cd /www/wwwroot/leetcode && git reset --hard HEAD"

.github/workflows/test-build.yml

+23-21
Original file line numberDiff line numberDiff line change
@@ -11,46 +11,48 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v3
14+
15+
- name: Install pnpm
16+
uses: pnpm/action-setup@v2
1417
with:
15-
persist-credentials: false
18+
version: 7
1619

17-
- uses: actions/[email protected]
18-
id: node-modules
20+
- name: Setup Node.js
21+
uses: actions/setup-node@v3
1922
with:
20-
path: node_modules/
21-
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}
22-
restore-keys: |
23-
${{ runner.os }}-node-modules-
23+
node-version: 18
24+
cache: pnpm
2425

2526
- name: Install Deps
26-
if: steps.node-modules.outputs.cache-hit != 'true'
27-
run: yarn install --frozen-lockfile
27+
run: pnpm install --frozen-lockfile
2828

2929
- name: Generate Markdown
30-
run: yarn run md:generate
30+
run: pnpm md:generate
3131

3232
- name: Build Website
33-
run: yarn run build:super
33+
env:
34+
NODE_OPTIONS: --max_old_space_size=4096
35+
run: pnpm build
3436

3537
linter-test:
3638
runs-on: ubuntu-latest
3739
steps:
3840
- name: Checkout
3941
uses: actions/checkout@v3
42+
43+
- name: Install pnpm
44+
uses: pnpm/action-setup@v2
4045
with:
41-
persist-credentials: false
46+
version: 7
4247

43-
- uses: actions/[email protected]
44-
id: node-modules
48+
- name: Setup Node.js
49+
uses: actions/setup-node@v3
4550
with:
46-
path: node_modules/
47-
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }}
48-
restore-keys: |
49-
${{ runner.os }}-node-modules-
51+
node-version: 18
52+
cache: pnpm
5053

5154
- name: Install Deps
52-
if: steps.node-modules.outputs.cache-hit != 'true'
53-
run: yarn install --frozen-lockfile
55+
run: pnpm install --frozen-lockfile
5456

5557
- name: Linter test
56-
run: yarn run lint
58+
run: pnpm lint

.gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ target/
66

77
.project
88

9-
leetcode/.vuepress/sidebar.js
9+
**/.vuepress/.cache/**
10+
**/.vuepress/.temp/**
11+
12+
leetcode/.vuepress/sidebar.ts
1013
leetcode/**/*.md
11-
!leetcode/*/readme.md
1214
!leetcode/*/README.md
13-
script/*.js

.prettierignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
dist/
22
node_modules/
33

4-
leetcode/.vuepress/sidebar.js
4+
5+
**/.vuepress/.cache/**
6+
**/.vuepress/.temp/**
7+
8+
leetcode/.vuepress/sidebar.ts
59
leetcode/**/*.md
6-
!leetcode/*/readme.md
710
!leetcode/*/README.md

readme.md README.md

leetcode/.vuepress/config.js

-87
This file was deleted.

leetcode/.vuepress/config.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { defineUserConfig } from "vuepress";
2+
import theme from "./theme.js";
3+
4+
export default defineUserConfig({
5+
title: "LeetCode",
6+
description: "LeetCode 练习",
7+
8+
dest: "./dist",
9+
10+
locales: {
11+
"/": {
12+
lang: "zh-CN",
13+
},
14+
},
15+
16+
theme,
17+
18+
shouldPrefetch: false,
19+
});

leetcode/.vuepress/styles/index.scss

Whitespace-only changes.

leetcode/.vuepress/styles/index.styl

-1
This file was deleted.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
$theme-color: #ffa116;

leetcode/.vuepress/styles/palette.styl

-4
This file was deleted.

leetcode/.vuepress/theme.ts

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
import { hopeTheme } from "vuepress-theme-hope";
2+
import sidebar from "./sidebar.js";
3+
4+
export default hopeTheme({
5+
logo: "/logo.png",
6+
7+
hostname: "https://leetcode.innenu.com",
8+
author: "LeetCode",
9+
10+
repo: "https://github.com/Hope-Studio/leetcode",
11+
docsDir: "leetcode",
12+
13+
iconAssets: "//at.alicdn.com/t/font_2188267_tbivkbjo7xr.css",
14+
15+
navbar: [
16+
{ text: "主页", link: "/", icon: "home" },
17+
{
18+
text: "LeetCode 主页",
19+
icon: "leetcode",
20+
children: [
21+
{ text: "Mister-Hope", link: "https://leetcode.com/Mister-Hope/" },
22+
{ text: "Virgil", link: "https://leetcode-cn.com/u/virgil-7/" },
23+
{ text: "sqm", link: "https://leetcode-cn.com/u/mOAG9JqwNm/" },
24+
{ text: "lizncu", link: "https://leetcode-cn.com/u/lizncu/" },
25+
],
26+
},
27+
],
28+
29+
sidebar,
30+
31+
pageInfo: ["Author", "PageView", "Category", "Tag"],
32+
editLink: false,
33+
lastUpdated: false,
34+
35+
copyright: "Copyright © 2017-present Hope Studio",
36+
displayFooter: true,
37+
38+
plugins: {
39+
mdEnhance: {
40+
katex: true,
41+
sup: true,
42+
sub: true,
43+
},
44+
45+
pwa: {
46+
manifest: {
47+
icons: [
48+
{
49+
src: "/assets/icon/chrome-192.png",
50+
sizes: "192x192",
51+
type: "image/png",
52+
},
53+
{
54+
src: "/assets/icon/chrome-512.png",
55+
sizes: "512x512",
56+
type: "image/png",
57+
},
58+
{
59+
src: "/assets/icon/chrome-mask-192.png",
60+
sizes: "192x192",
61+
purpose: "maskable",
62+
type: "image/png",
63+
},
64+
{
65+
src: "/assets/icon/chrome-mask-512.png",
66+
sizes: "512x512",
67+
purpose: "maskable",
68+
type: "image/png",
69+
},
70+
],
71+
},
72+
},
73+
},
74+
});

leetcode/122-best-time-to-buy-and-sell-stock-ii/readme.md leetcode/122-best-time-to-buy-and-sell-stock-ii/README.md

+1-1

0 commit comments

Comments
 (0)