-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathconfig.js
More file actions
executable file
·316 lines (310 loc) · 8.43 KB
/
config.js
File metadata and controls
executable file
·316 lines (310 loc) · 8.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import path from 'node:path';
import { defineUserConfig } from '@vuepress/cli';
import { feedPlugin } from '@vuepress/plugin-feed';
import { viteBundler } from '@vuepress/bundler-vite';
import { shikiPlugin } from '@vuepress/plugin-shiki';
import { defaultTheme } from '@vuepress/theme-default';
import { sitemapPlugin } from '@vuepress/plugin-sitemap';
import { docsearchPlugin } from '@vuepress/plugin-docsearch';
import {
navbarDe,
navbarEn,
navbarEs,
navbarFr,
navbarJa,
navbarPtBR,
navbarRU,
navbarZhCN,
navbarKo,
sidebarDe,
sidebarEn,
sidebarFr,
sidebarEs,
sidebarJa,
sidebarPtBR,
sidebarRU,
sidebarZhCN,
sidebarKo,
} from './configs/index.js';
const compareDate = (dateA, dateB) => {
if (!dateA || !(dateA instanceof Date)) return 1;
if (!dateB || !(dateB instanceof Date)) return -1;
return dateB.getTime() - dateA.getTime();
};
// default env from the deploy GitHub action
// e.g. ciUser = nushell and ciRepo = nushell.github.io
// both default to undefined if the env is undefined
const [ciUser, ciRepo] = process.env.GITHUB_REPOSITORY?.split('/') ?? [];
export default defineUserConfig({
// set the base URL to ciRepo dir if it's a fork
// keep the default root if not
base: ciRepo && ciUser !== 'nushell' ? `/${ciRepo}/` : '/',
bundler: viteBundler(),
locales: {
'/': {
lang: 'en-US',
title: 'Nushell',
description: 'A new type of shell.',
},
'/zh-CN/': {
lang: 'zh-CN',
title: 'Nushell',
description: '一种新型的Shell',
},
'/de/': {
lang: 'de-DE',
title: 'Nushell',
description: 'Eine neue Art von Shell.',
},
'/fr/': {
lang: 'fr-FR',
title: 'Nushell',
description: 'Un nouveau type de shell.',
},
'/es/': {
lang: 'es-ES',
title: 'Nushell',
description: 'Un nuevo tipo de shell.',
},
'/ja/': {
lang: 'ja-JP',
title: 'Nushell',
description: '新しいタイプのシェル',
},
'/pt-BR/': {
lang: 'pt-BR',
title: 'Nushell',
description: 'Um novo tipo de shell.',
},
'/ru/': {
lang: 'ru-RU',
title: 'Nushell',
description: 'Новый тип оболочки.',
},
'/ko/': {
lang: 'ko-KR',
title: 'Nushell',
description: '새로운 유형의 셸',
},
},
head: [
[
'link',
{
rel: 'preload',
href: '/fonts/FiraCode-Regular.woff2',
as: 'font',
type: 'font/woff2',
crossorigin: 'anonymous',
},
],
['meta', { name: 'theme-color', content: '#3eaf7c' }],
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
[
'meta',
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black' },
],
['link', { rel: 'icon', href: '/icon.png' }],
[
'link',
{
rel: 'search',
type: 'application/opensearchdescription+xml',
title: 'Nushell Docs', // NOTE: must match ShortName
href: '/opensearch.xml',
},
],
],
markdown: {
importCode: {
handleImportPath: (str) =>
str.replace(/^@snippets/, path.resolve(__dirname, '../snippets')),
},
highlighter: 'shiki',
},
// without this, we attempt to prefetch the whole site 😬
shouldPrefetch: false,
colorMode: 'auto',
theme: defaultTheme({
markdown: {
highlighter: 'shiki',
},
repo: 'nushell/nushell',
repoLabel: 'GitHub',
editLinks: true,
docsRepo: 'nushell/nushell.github.io',
docsBranch: 'main',
lastUpdated: false,
locales: {
'/': {
selectText: 'Languages',
selectLanguageName: 'English',
editLinkText: 'Edit this page on GitHub',
navbar: navbarEn,
sidebar: sidebarEn,
},
'/de/': {
selectText: 'Sprachen',
selectLanguageName: 'Deutsch',
editLinkText: 'Diese Seite auf GitHub bearbeiten',
navbar: navbarDe,
sidebar: sidebarDe,
},
'/es/': {
selectText: 'Idiomas',
selectLanguageName: 'Español',
editLinkText: 'Edita esta página en GitHub',
navbar: navbarEs,
sidebar: sidebarEs,
},
'/fr/': {
selectText: 'Langues',
selectLanguageName: 'Français',
editLinkText: 'Modifier la page sur GitHub',
navbar: navbarFr,
sidebar: sidebarFr,
},
'/ja/': {
selectText: '言語',
selectLanguageName: '日本語',
editLinkText: 'GitHubでこのページを編集する',
navbar: navbarJa,
sidebar: sidebarJa,
},
'/pt-BR/': {
selectText: 'Línguas',
selectLanguageName: 'Português do Brasil',
editLinkText: 'Edite esta página no GitHub',
navbar: navbarPtBR,
sidebar: sidebarPtBR,
},
'/ru/': {
selectText: 'Языки',
selectLanguageName: 'Русский язык',
editLinkText: 'Отредактируйте эту страницу на GitHub',
navbar: navbarRU,
sidebar: sidebarRU,
},
'/zh-CN/': {
selectText: '语言',
selectLanguageName: '中文',
editLinkText: '在GitHub上编辑此页面',
navbar: navbarZhCN,
sidebar: sidebarZhCN,
},
'/ko/': {
selectText: '언어',
selectLanguageName: '한국어',
editLinkText: 'GitHub에서 수정하기',
navbar: navbarKo,
sidebar: sidebarKo,
},
},
themePlugins: {
prismjs: false,
// copyCode plugin configuration (already included in defaultTheme)
copyCode: {
locales: {
'/': {
copy: 'Copy Codes from code block',
},
},
},
},
}),
plugins: [
// Note: gitPlugin, backToTopPlugin, mediumZoomPlugin, and copyCodePlugin
// are already included in defaultTheme, so we don't need to add them here
shikiPlugin({
themes: {
light: 'dark-plus',
dark: 'dark-plus',
onedarkpro: 'one-dark-pro', // pre-load one-dark-pro for ansi code blocks
},
lineNumbers: 10,
collapsedLines: false,
transformers: [
// use one-dark-pro theme for ansi code blocks
{
preprocess(code, options) {
if (options.lang == 'ansi') {
this.options.defaultColor = 'onedarkpro';
// this doesn't work at the top-level for some reason
this.options.colorReplacements = {
// make one-dark-pro background color the same as dark-plus
'#282c34': '#1e1e1e',
// HACK: change color of comments, since nu-highlight can't highlight them
'#abb2bf': '#80858f',
};
}
return code;
},
},
],
langs: [
'csv',
'nushell',
'rust',
'bash',
'shell',
'sh',
'csv',
'ansi',
'toml',
'json',
'javascript',
'python',
'cpp',
'powershell',
],
}),
docsearchPlugin({
appId: 'GHCTOYCW6T',
indexName: 'nushell',
apiKey: 'dd6a8f770a42efaed5befa429d167232',
}),
feedPlugin({
rss: true,
json: true,
atom: true,
count: 30,
hostname: 'https://www.nushell.sh',
filter: ({ frontmatter, filePathRelative }) => {
return (
frontmatter.feed === true || filePathRelative?.indexOf('blog/') >= 0
);
},
sorter: (a, b) => {
const pathDateA = new Date(
a.path.replace('/blog/', '').substring(0, 10),
);
const pathDateB = new Date(
b.path.replace('/blog/', '').substring(0, 10),
);
const effectiveDateA =
pathDateA != 'Invalid Date'
? pathDateA
: a.frontmatter.date
? new Date(a.frontmatter.date)
: new Date(a.data.git?.createdTime);
// Determine the effective date for item B
const effectiveDateB =
pathDateB != 'Invalid Date'
? pathDateB
: b.frontmatter.date
? new Date(b.frontmatter.date)
: new Date(b.data.git?.createdTime);
return compareDate(effectiveDateA, effectiveDateB);
},
}),
sitemapPlugin({
hostname: 'https://www.nushell.sh/',
}),
],
onPrepared: async (app) => {
await app.writeTemp(
'pages.js',
`export default ${JSON.stringify(app.pages.map(({ data }) => data))}`,
);
},
});