提交 a9936166 编写于 作者: 沉默王二's avatar 沉默王二 💬

增加配置文件

上级 78eaf104
image: swr.cn-north-4.myhuaweicloud.com/codechina/klakegg_hugo:0.75.1-ext-ubuntu
#before_script:
# - apk add --update --no-cache git
variables:
GIT_SUBMODULE_STRATEGY: recursive
pages:
script:
- hugo
artifacts:
paths:
- public
only:
- main
* text=auto
*.js linguist-language=java
*.css linguist-language=java
*.html linguist-language=java
\ No newline at end of file
node_modules
.cache
.temp
package-lock.json
yarn.lock
package.json
.DS_Store
dump.rdb
docs/.vuepress/.cache/
docs/.vuepress/.temp/
docs/.vuepress/dist/
import { docsearchPlugin } from "@vuepress/plugin-docsearch";
import { commentPlugin } from "vuepress-plugin-comment2";
import { pwaPlugin } from "vuepress-plugin-pwa2";
import { defineUserConfig } from "vuepress";
import theme from "./theme";
export default defineUserConfig({
base: "/",
dest: "./dist",
// 如果你正在使用本插件,我们推荐在你的 VuePress 配置文件中设置
shouldPrefetch: false,
// 自动 description
autoDescription: true,
// 精选图标 https://vuepress-theme-hope.github.io/v2/zh/guide/interface/icon.html#%E4%BD%BF%E7%94%A8
iconAssets: "iconfont",
head: [
[
"script",{},
`
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?5230ac143650bf5eb3c14f3fb9b1d3ec";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
`
],
[
"link",
{
rel: "stylesheet",
href: "//at.alicdn.com/t/font_3180624_7cy10l7jqqh.css",
},
],
],
locales: {
"/": {
lang: "zh-CN",
title: "Java 程序员进阶之路",
description: "一份通俗易懂、风趣幽默的Java学习指南,内容涵盖Java基础、Java并发编程、Java虚拟机、Java企业级开发、Java面试等核心知识点。学Java,就认准Java程序员进阶之路",
},
},
plugins: [
// Progressive Web app,即渐进式网络应用程序,
// 允许网站通过支持该特性的浏览器将网站作为 App 安装在对应平台上。
pwaPlugin({
// favicon.ico一般用于作为缩略的网站标志,它显示位于浏览器的地址栏或者在标签上,用于显示网站的logo,
favicon: "/favicon.ico",
// 如果你的站点体积不大,且配图大多为关键性说明,希望可以在离线模式下显示,建议将此项设置为 true
cachePic: true,
apple: {
icon: "/assets/icon/apple-icon-152.png",
statusBarColor: "black",
},
msTile: {
image: "/assets/icon/ms-icon-144.png",
color: "#ffffff",
},
manifest: {
icons: [
{
src: "/assets/icon/chrome-mask-512.png",
sizes: "512x512",
purpose: "maskable",
type: "image/png",
},
{
src: "/assets/icon/chrome-mask-192.png",
sizes: "192x192",
purpose: "maskable",
type: "image/png",
},
{
src: "/assets/icon/chrome-512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "/assets/icon/chrome-192.png",
sizes: "192x192",
type: "image/png",
},
],
},
}),
commentPlugin({
provider: "Giscus",
repo :"itwanger/tobebetterjavaer-giscus",
repoId:"R_kgDOHBJssg",
category:"Announcements",
categoryId:"DIC_kwDOHBJsss4COJOx",
}),
docsearchPlugin({
appId: "O566AMFNJH",
apiKey: "d9aebea8bd1a4f1e01201464bbab255f",
indexName: "tobebetterjavaer",
locales: {
"/": {
placeholder: "搜索文档",
translations: {
button: {
buttonText: "搜索文档",
buttonAriaLabel: "搜索文档",
},
modal: {
searchBox: {
resetButtonTitle: "清除查询条件",
resetButtonAriaLabel: "清除查询条件",
cancelButtonText: "取消",
cancelButtonAriaLabel: "取消",
},
startScreen: {
recentSearchesTitle: "搜索历史",
noRecentSearchesText: "没有搜索历史",
saveRecentSearchButtonTitle: "保存至搜索历史",
removeRecentSearchButtonTitle: "从搜索历史中移除",
favoriteSearchesTitle: "收藏",
removeFavoriteSearchButtonTitle: "从收藏中移除",
},
errorScreen: {
titleText: "无法获取结果",
helpText: "你可能需要检查你的网络连接",
},
footer: {
selectText: "选择",
navigateText: "切换",
closeText: "关闭",
searchByText: "搜索提供者",
},
noResultsScreen: {
noResultsText: "无法找到相关结果",
suggestedQueryText: "你可以尝试查询",
},
},
},
},
},
}),
],
theme,
});
import { navbar } from "vuepress-theme-hope";
export default navbar([
{
text: "博客",
icon: "gaishu",
link: "/blog.md"
},
{
text: "进阶之路",
icon: "lujing",
link: "/home.md"
},
{
text: "知识星球",
icon: "Artboard",
link: "/zhishixingqiu/"
},
{
text: "学习路线",
icon: "luxian",
link: "/xuexiluxian/"
},
{
text: "珍藏资源",
icon: "youzhi",
children: [
{
text: "电子书下载",
icon: "java",
link: "/download/java.md"
},
{
text: "面渣逆袭",
icon: "zhunbei",
link: "/sidebar/sanfene/nixi.md"
},
{
text: "优质文章",
icon: "youzhi",
link: "/nice-article/readme.md"
},
{
text: "网络日志",
icon: "rizhi",
link: "/download/history.md"
},
{
text: "破解合集",
icon: "zhongyaotishi",
link: "/nice-article/itmind/"
},
],
},
{
text: "B站视频",
icon: "bzhan",
link: "https://space.bilibili.com/513340480"
},
]);
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="248.000000pt" height="248.000000pt" viewBox="0 0 248.000000 248.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,248.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M1180 2381 c12 -8 5 -11 -31 -11 -52 0 -128 -35 -144 -66 -5 -11 -31
-40 -57 -64 -56 -55 -70 -99 -71 -225 0 -84 36 -292 55 -310 9 -9 16 37 23
150 4 50 11 105 17 124 10 33 53 80 73 81 5 0 18 11 30 25 22 27 36 30 203 41
71 5 125 3 173 -6 63 -12 74 -18 109 -57 46 -53 58 -99 59 -221 1 -99 9 -133
28 -110 14 17 65 257 57 269 -3 5 2 31 11 58 16 49 13 76 -10 85 -7 2 -16 23
-20 45 -4 23 -14 42 -23 46 -27 11 -95 27 -119 27 -13 0 -23 6 -23 14 0 7 -20
27 -44 44 -50 33 -65 38 -45 13 13 -15 12 -15 -8 -3 -12 8 -20 17 -17 21 8 13
-32 22 -116 25 -47 1 -94 6 -105 9 -16 6 -17 5 -5 -4z m75 -91 c13 -5 -3 -8
-50 -8 -40 -1 -97 -10 -135 -21 -74 -23 -90 -21 -28 4 78 31 172 42 213 25z
m10 -40 c4 -6 -11 -7 -42 -3 -63 8 -67 13 -10 13 25 0 49 -4 52 -10z m-95 -49
c0 -5 -14 -14 -30 -21 -33 -14 -75 -58 -85 -91 -5 -14 -10 -18 -17 -11 -16 16
41 94 82 114 39 20 50 22 50 9z m470 -11 c11 -7 3 -10 -30 -9 -34 0 -40 2 -25
9 27 12 37 12 55 0z"/>
<path d="M1091 1858 c-42 -22 -37 -37 9 -27 23 5 45 7 49 5 9 -6 37 11 30 18
-13 13 -66 15 -88 4z"/>
<path d="M1385 1850 c-12 -20 7 -30 61 -30 55 0 69 11 35 30 -25 13 -88 13
-96 0z"/>
<path d="M1103 1793 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z"/>
<path d="M1458 1793 c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z"/>
<path d="M1190 1780 c14 -4 32 -8 40 -9 13 -1 13 0 0 9 -8 5 -26 9 -40 9 l-25
-1 25 -8z"/>
<path d="M1295 1771 c-3 -5 -1 -12 5 -16 5 -3 10 1 10 9 0 18 -6 21 -15 7z"/>
<path d="M1414 1750 c-37 -14 -36 -27 2 -34 22 -5 41 -3 50 5 10 8 14 8 14 0
0 -6 9 -11 20 -11 28 0 25 25 -5 38 -30 14 -51 14 -81 2z"/>
<path d="M1063 1743 c-21 -8 -14 -25 7 -18 12 4 20 2 20 -4 0 -7 18 -10 45 -9
48 3 52 7 33 26 -12 12 -81 15 -105 5z"/>
<path d="M1240 1727 c0 -7 -9 -29 -19 -50 -20 -40 -12 -51 11 -14 20 30 31 77
18 77 -5 0 -10 -6 -10 -13z"/>
<path d="M1314 1714 c9 -39 39 -78 62 -83 15 -2 13 1 -8 18 -14 12 -29 35 -33
51 -4 16 -11 33 -17 36 -7 5 -9 -2 -4 -22z"/>
<path d="M1453 1623 c15 -2 39 -2 55 0 15 2 2 4 -28 4 -30 0 -43 -2 -27 -4z"/>
<path d="M1228 1543 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M1289 1425 c-3 -2 -20 -6 -39 -8 -19 -2 -47 -10 -63 -18 -25 -14 -18
-15 93 -14 66 0 120 3 120 6 0 17 -98 48 -111 34z"/>
<path d="M1258 1183 c12 -2 32 -2 45 0 12 2 2 4 -23 4 -25 0 -35 -2 -22 -4z"/>
<path d="M1349 1143 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z"/>
<path d="M1416 1083 c3 -27 7 -60 9 -75 3 -16 2 -28 -1 -28 -16 0 -63 32 -87
60 -27 30 -28 32 -12 58 16 26 15 26 -11 -3 -15 -16 -32 -30 -39 -31 -16 -2
-55 -36 -55 -48 0 -5 8 -15 18 -22 9 -7 12 -14 5 -14 -6 0 -9 -9 -6 -20 7 -27
-17 -151 -28 -144 -5 3 -9 -2 -9 -11 0 -9 5 -13 10 -10 16 10 11 -7 -6 -19
-12 -9 -18 -42 -24 -141 -5 -72 -9 -135 -10 -141 0 -16 -111 -97 -135 -98 -11
-1 -41 16 -67 37 -42 35 -47 44 -58 103 -7 35 -16 62 -20 59 -4 -3 -11 6 -14
20 -8 31 -28 24 -43 -16 -8 -19 -8 -40 -2 -61 6 -23 5 -34 -4 -40 -9 -6 -9
-10 1 -20 18 -18 15 -26 -19 -44 -23 -11 -34 -13 -42 -5 -6 6 -22 11 -37 10
-15 0 -19 -3 -10 -6 25 -9 50 -35 50 -53 0 -20 -45 -82 -53 -74 -3 4 -68 3
-145 -1 l-139 -7 -19 -37 c-10 -20 -25 -42 -31 -49 -7 -7 -13 -19 -14 -25 -2
-55 -12 -113 -20 -128 -6 -13 -6 -25 3 -39 12 -19 23 -20 293 -20 l280 0 -30
20 c-16 11 -25 20 -20 20 6 0 21 -9 35 -20 23 -18 43 -20 308 -20 261 0 286 2
310 19 15 10 47 30 72 45 l45 27 -48 -46 -49 -45 281 0 280 0 6 33 c3 17 5 61
3 97 l-3 65 -67 34 c-54 27 -68 39 -68 57 0 23 35 64 54 64 5 0 7 3 4 6 -14
13 -86 -36 -98 -67 -12 -28 -15 -30 -21 -13 -4 10 -8 13 -8 6 -1 -11 -13 -12
-118 -3 -20 2 16 39 65 68 59 35 44 43 -17 9 l-49 -26 -32 37 -31 38 25 -48
c17 -33 23 -57 20 -76 -5 -21 0 -34 17 -50 12 -11 30 -22 38 -22 9 -1 -13 -5
-49 -9 -35 -4 -66 -12 -68 -19 -6 -18 -32 -13 -32 7 0 10 -5 23 -11 29 -21 21
-23 163 -3 263 l18 95 18 -45 c30 -73 43 -95 56 -94 7 1 38 2 70 4 l57 2 -72
12 c-40 7 -75 15 -78 18 -10 10 7 38 24 38 11 0 12 3 4 8 -13 8 -28 67 -41
161 -8 53 -6 72 10 114 21 55 18 74 -5 30 -24 -44 -33 -5 -13 54 21 61 20 71
-2 42 -11 -15 -23 -59 -31 -114 -7 -49 -19 -137 -26 -193 -8 -57 -19 -120 -25
-140 -14 -50 -63 -101 -103 -108 -17 -3 -37 -7 -43 -9 -8 -2 -2 -31 17 -85 32
-89 30 -94 -33 -88 -29 3 -36 9 -56 51 -16 34 -21 58 -17 78 l7 29 39 -41 c21
-22 39 -46 39 -51 0 -6 2 -9 5 -6 7 7 -33 136 -54 173 -40 70 -57 212 -41 338
7 56 5 77 -11 122 -32 92 -22 132 26 101 13 -9 27 -16 31 -16 3 0 4 26 2 57
l-3 58 43 1 c111 4 111 4 27 29 -44 13 -83 24 -87 25 -4 0 -5 -21 -2 -47z
m-511 -628 c25 -59 22 -123 -10 -195 -16 -36 -34 -69 -40 -75 -18 -15 22 -51
75 -66 25 -8 61 -22 80 -32 l35 -18 -35 5 c-40 7 -372 127 -366 133 2 3 20 0
38 -5 31 -8 39 -6 79 24 29 22 44 41 45 56 1 14 13 44 27 69 14 24 31 65 38
92 6 26 13 47 16 47 2 0 11 -16 18 -35z m243 -281 c-4 -3 -12 5 -18 18 -12 22
-12 22 6 6 10 -10 15 -20 12 -24z"/>
<path d="M410 376 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z"/>
<path d="M326 17 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="718.000000pt" height="722.000000pt" viewBox="0 0 718.000000 722.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,722.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M3390 5675 l0 -275 -22 -4 c-13 -3 -50 -10 -83 -17 -33 -6 -97 -24
-143 -39 l-82 -28 -39 66 c-21 37 -87 150 -146 252 -59 102 -110 189 -115 193
-5 6 -357 -187 -377 -207 -2 -2 64 -121 147 -264 82 -144 150 -263 150 -266 0
-3 -38 -42 -85 -87 -47 -45 -102 -103 -122 -130 -20 -27 -40 -49 -44 -49 -4 0
-108 71 -231 158 -123 87 -228 161 -235 165 -11 7 -50 -43 -196 -253 l-66 -96
250 -174 c137 -96 249 -177 249 -181 0 -3 -13 -35 -29 -70 -51 -115 -103 -261
-137 -393 -18 -72 -32 -131 -31 -132 2 -2 322 -58 393 -69 l41 -6 7 41 c17
105 125 395 194 520 195 354 438 555 757 627 87 19 325 22 410 4 145 -30 296
-96 399 -173 84 -63 201 -185 266 -276 137 -193 223 -391 316 -730 3 -9 14
-11 36 -8 143 24 394 69 396 71 2 2 -13 64 -32 139 -35 134 -90 287 -141 400
-16 34 -24 61 -18 65 5 3 118 82 251 175 l241 169 -18 26 c-170 243 -215 308
-225 318 -9 10 -62 -23 -249 -153 l-238 -167 -16 24 c-9 13 -66 74 -126 136
l-109 111 142 249 c79 136 147 254 153 261 6 8 6 16 1 21 -29 27 -367 212
-374 205 -5 -5 -57 -92 -116 -194 -58 -102 -124 -215 -145 -251 l-39 -67 -62
23 c-35 13 -109 33 -165 46 l-103 23 0 273 0 273 -220 0 -220 0 0 -275z"/>
<path d="M3520 4730 c-223 -35 -417 -215 -469 -434 -17 -70 -15 -204 4 -278
46 -179 195 -338 372 -400 57 -19 87 -23 188 -22 102 0 130 4 185 25 179 68
317 220 365 399 19 72 19 207 -1 284 -50 196 -205 357 -394 410 -72 20 -181
27 -250 16z m160 -447 c89 -62 89 -172 0 -231 -86 -58 -210 13 -210 120 0 34
31 86 65 108 38 25 111 26 145 3z"/>
<path d="M1982 2948 c3 -31 6 -33 51 -40 65 -9 94 -30 107 -78 17 -64 8 -1414
-9 -1462 -48 -129 -159 -155 -219 -51 -15 25 -41 61 -59 80 -81 85 -194 -9
-138 -116 40 -78 136 -116 280 -109 176 7 269 84 322 265 15 51 18 139 22 728
5 518 9 675 19 692 15 27 62 53 96 53 42 0 56 10 56 41 l0 29 -266 0 -265 0 3
-32z"/>
<path d="M2900 2571 c-140 -16 -217 -61 -241 -139 -11 -37 -10 -48 4 -77 13
-26 24 -35 52 -41 58 -11 82 7 119 89 18 40 41 79 50 86 23 19 106 26 149 12
46 -15 93 -69 107 -121 6 -22 10 -68 8 -101 l-3 -60 -157 -68 c-188 -82 -255
-121 -313 -182 -103 -110 -80 -267 50 -337 48 -26 197 -23 257 5 61 28 112 69
145 116 32 45 43 47 43 5 0 -50 36 -114 74 -132 68 -32 183 -12 238 41 30 29
33 40 18 63 -7 12 -12 12 -28 -4 -14 -12 -33 -16 -63 -14 -40 3 -46 7 -64 43
-18 36 -20 68 -25 350 -5 295 -6 312 -27 352 -40 75 -111 108 -250 116 -43 3
-107 2 -143 -2z m248 -543 c-5 -129 -22 -180 -83 -247 -100 -110 -275 -70
-275 63 0 91 66 162 223 241 61 30 117 55 125 55 12 0 13 -20 10 -112z"/>
<path d="M4898 2569 c-90 -9 -164 -39 -203 -80 -22 -22 -29 -41 -33 -82 -4
-49 -2 -56 23 -75 15 -12 38 -22 51 -22 49 0 72 21 105 97 36 84 61 103 131
103 67 0 128 -36 156 -90 19 -37 22 -58 20 -123 l-3 -78 -160 -71 c-257 -113
-334 -173 -361 -280 -25 -97 12 -184 100 -231 57 -30 199 -30 266 0 52 24 129
89 149 127 18 34 31 33 31 -1 1 -36 31 -103 59 -128 35 -30 134 -33 200 -5 64
28 95 63 79 90 -10 16 -14 17 -34 3 -36 -23 -93 -13 -118 20 -20 27 -21 44
-26 340 -5 267 -8 318 -23 352 -37 82 -92 118 -211 134 -85 12 -86 12 -198 0z
m252 -527 c0 -111 -15 -175 -56 -233 -85 -123 -258 -122 -295 1 -32 105 76
223 281 307 30 12 58 23 63 23 4 0 7 -44 7 -98z"/>
<path d="M3490 2531 c0 -25 5 -30 43 -39 45 -12 75 -38 100 -87 8 -16 63 -149
122 -295 59 -146 129 -317 154 -380 l48 -115 54 -3 54 -2 44 102 c65 150 255
594 282 657 28 66 59 105 99 121 24 10 30 19 30 41 l0 29 -175 0 -175 0 0 -29
c0 -26 4 -29 42 -35 58 -9 68 -21 68 -76 0 -64 -21 -125 -128 -379 -89 -209
-99 -229 -105 -220 -4 5 -150 405 -184 502 -25 76 -30 139 -10 155 6 5 31 13
55 17 38 6 42 9 42 36 l0 29 -230 0 -230 0 0 -29z"/>
</g>
</svg>
此差异已折叠。
$code-light-theme: "one-light";
$code-dark-theme: "one-dark";
\ No newline at end of file
// colors
$theme-color: #5b86ff;
$sidebar-mobile-width: 16rem;
$sidebar-width: 22rem;
\ No newline at end of file
import { hopeTheme } from "vuepress-theme-hope";
import navbar from "./navbar";
import { sidebarConfig } from "./sidebar";
export default hopeTheme({
hostname: "https://tobebetterjavaer.com",
encrypt: {
config: {
// 这只会加密 config/page.html
"/nice-article/itmind/xshellazpjbjcxshellpxffxbxt.html": ["1110", "5210"],
"/nice-article/itmind/ideapjazjczxjhmzcmyjjhcxgxz.html": ["1110", "5210"],
},
},
author: {
name: "沉默王二",
url: "/about-the-author/",
},
encryptLocales: {
/**
* Encrypt title
*/
title: "初次访问,人机识别活动下筋骨",
placeholder: "微信搜‘沉默王二’回复‘密码’获取口令",
/**
* Passwrod error hint
*/
errorHint: "哈哈,别调戏人家啦,按规则来嘛",
},
iconPrefix: "iconfont icon-",
logo: "http://cdn.tobebetterjavaer.com/tobebetterjavaer/images/logo-02.png",
repo: "https://github.com/itwanger/toBeBetterJavaer",
docsDir: "docs",
// 以前的默认仓库分支
docsBranch: "master",
// 纯净模式
// pure: true,
darkmode: "switch",
// navbar
navbar: navbar,
// sidebar
sidebar: sidebarConfig,
footer: '<a href="https://beian.miit.gov.cn/" target="_blank">豫ICP备2021038026号-1</a>'
+'<img src="https://cdn.tobebetterjavaer.com/tobebetterjavaer/images/beian.png" height="15px" width="15px" />'
+'<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=41030502000411">'
+'<span>豫公网安备 41030502000411号</span>'
+'</a>',
displayFooter: true,
pageInfo: ["Author", "Original", "Date", "Category", "Tag", "ReadingTime"],
// page meta
metaLocales: {
editLink: "在 GitHub 上编辑此页",
},
blog: {
intro: "/about-the-author/",
sidebarDisplay: "mobile",
// 博主头像
avatar: "/assets/icon/itwanger-282.png",
// 圆角
roundAvatar: true,
// 座右铭
description:"没有什么使我停留——除了目的,纵然岸旁有玫瑰、有绿荫、有宁静的港湾,我是不系之舟。",
medias: {
Zhihu: "https://www.zhihu.com/people/cmower",
Github: "https://github.com/itwanger",
Gitee: "https://gitee.com/itwanger",
},
},
plugins: {
// 启用博客功能
blog: true,
// 启用博客自动摘要
blog: {
autoExcerpt: true,
},
activeHeaderLinks: true,
mdEnhance: {
// 仅将此选项用于体验或测试。
align: true,
presentation: {
plugins: ["highlight", "math", "search", "notes", "zoom"],
},
},
},
});
{
"author": "budparr",
"bugs": {
"url": "https://github.com/theNewDynamic/gohugo-theme-ananke/issues"
},
"comments": {
"dependencies": {},
"devDependencies": {
"auto-changelog": "project",
"cssnano": "project",
"postcss-cli": "project",
"postcss-cssnext": "project",
"tachyons": "project"
}
},
"dependencies": {},
"description": "Theme Ananke",
"devDependencies": {
"auto-changelog": "^1.16.1",
"cssnano": "^3.10.0",
"postcss-cli": "^7.1.0",
"postcss-cssnext": "^2.10.0",
"tachyons": "^4.9.1"
},
"homepage": "https://github.com/theNewDynamic/gohugo-theme-ananke#readme",
"keywords": [
"hugo",
"gohugo"
],
"license": "MIT",
"main": "index.js",
"name": "gohugo-theme-ananke",
"repository": {
"type": "git",
"url": "git+https://github.com/theNewDynamic/gohugo-theme-ananke.git"
},
"scripts": {
"version": "auto-changelog -p --template keepachangelog --commit-limit 0 \u0026\u0026 git add CHANGELOG.md",
"deploy": " cd exampleSite; hugo;"
},
"version": "2.7.0"
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册