Skip to content

Commit d2fe845

Browse files
authored
Updated docs a bit. (#432)
* Updated docs a bit. * Removed test workflow.
1 parent 3e41b15 commit d2fe845

File tree

7 files changed

+3786
-3192
lines changed

7 files changed

+3786
-3192
lines changed

docs/.vuepress/config.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,23 @@ export default defineUserConfig({
3131

3232
pure: true,
3333

34+
markdown: {
35+
tabs: true,
36+
mermaid: true
37+
},
38+
3439
plugins: {
3540
readingTime: false,
3641
copyCode: {
3742
showInMobile: true,
3843
},
3944

40-
mdEnhance: {
41-
tabs: true,
42-
mermaid: true,
43-
},
44-
4545
sitemap: {
4646
changefreq: "daily",
4747
sitemapFilename: "sitemap.xml",
4848
},
49-
searchPro: {
50-
indexContent: true,
51-
autoSuggestions: false,
49+
search: {
50+
maxSuggestions: 10,
5251
}
5352
},
5453
})

docs/.vuepress/styles/config.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
$code-dark-theme: dracula;
22
$code-light-theme: one-light;
3+
$theme-color: #960018;

docs/.vuepress/styles/index.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
}
1010
}
1111

12+
.vp-hero-title {
13+
font-size: 3rem;
14+
}
15+
1216
.vp-actions {
1317
align-items: flex-end;
1418
}

docs/.vuepress/styles/palette.scss

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@ head:
2121
- - meta
2222
- name: "yandex-verification"
2323
content: "9b105f7c58cbc920"
24-
features:
25-
- title: Production ready
26-
details: Taskiq has proven that it can run in heavy production systems with high load.
27-
- title: Fully asynchronous
28-
details: Taskiq can run both sync and async functions. You don't have to worry about it.
29-
- title: Easily extensible
30-
details: Taskiq has a lot of replaceable components. It's super easy to implement
31-
your own broker or middleware.
32-
- title: Strongly typed
33-
details: Taskiq provides correct autocompletion for most of its functionality.
34-
footer: MIT Licensed | Copyright© 2022-2023
24+
highlights:
25+
- features:
26+
- title: Production ready
27+
details: Taskiq has proven that it can run in heavy production systems with high load.
28+
- title: Fully asynchronous
29+
details: Taskiq can run both sync and async functions. You don't have to worry about it.
30+
- title: Easily extensible
31+
details: Taskiq has a lot of replaceable components. It's super easy to implement
32+
your own broker or middleware.
33+
- title: Strongly typed
34+
details: Taskiq provides correct autocompletion for most of its functionality.
35+
36+
copyright: false
37+
footer: MIT Licensed | Copyright© 2022-present
3538
---
3639

3740
## What is taskiq in a nutshell

package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@
1111
},
1212
"packageManager": "[email protected]",
1313
"devDependencies": {
14-
"@vuepress/bundler-vite": "2.0.0-rc.9",
15-
"mermaid": "^10.8.0",
16-
"sass-loader": "^14.1.0",
17-
"vue": "^3.4.15",
18-
"vuepress": "2.0.0-rc.9",
19-
"vuepress-plugin-search-pro": "2.0.0-rc.36",
20-
"vuepress-theme-hope": "2.0.0-rc.36"
14+
"@vuepress/bundler-vite": "2.0.0-rc.20",
15+
"@vuepress/plugin-search": "2.0.0-rc.87",
16+
"markdown-it": "14.1.0",
17+
"mermaid": "11.5.0",
18+
"sass-embedded": "^1.86.0",
19+
"sass-loader": "16.0.5",
20+
"vue": "3.5.13",
21+
"vuepress": "2.0.0-rc.20",
22+
"vuepress-theme-hope": "2.0.0-rc.75"
2123
}
2224
}

0 commit comments

Comments
 (0)