@astrojs/starlight 0.17.1 → 0.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/expressive-code.d.ts +37 -0
- package/expressive-code.mjs +21 -0
- package/integrations/expressive-code/index.ts +1 -2
- package/internal.ts +5 -0
- package/package.json +7 -4
- package/utils/localizedUrl.ts +17 -5
- package/integrations/expressive-code/exports.ts +0 -70
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @astrojs/starlight
|
|
2
2
|
|
|
3
|
+
## 0.17.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1442](https://github.com/withastro/starlight/pull/1442) [`1a642e4`](https://github.com/withastro/starlight/commit/1a642e4d74ee4c30e85bce37b41888b1eae0544a) Thanks [@delucis](https://github.com/delucis)! - Fixes URLs in language picker for sites with `build.format: 'file'`
|
|
8
|
+
|
|
9
|
+
- [#1440](https://github.com/withastro/starlight/pull/1440) [`2ea1e88`](https://github.com/withastro/starlight/commit/2ea1e883186660b48f0ea8c4da7fead5fb74e313) Thanks [@hippotastic](https://github.com/hippotastic)! - Adds JS support to the `@astrojs/starlight/expressive-code` export to allow importing from non-TS environments.
|
|
10
|
+
|
|
3
11
|
## 0.17.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file This file provides the types for Starlight's `@astrojs/starlight/expressive-code` export.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export * from 'astro-expressive-code';
|
|
6
|
+
|
|
7
|
+
import type { StarlightExpressiveCodeOptions } from './integrations/expressive-code';
|
|
8
|
+
|
|
9
|
+
export type { StarlightExpressiveCodeOptions };
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* A utility function that helps you define an Expressive Code configuration object. It is meant
|
|
13
|
+
* to be used inside the optional config file `ec.config.mjs` located in the root directory
|
|
14
|
+
* of your Starlight project, and its return value to be exported as the default export.
|
|
15
|
+
*
|
|
16
|
+
* Expressive Code will automatically detect this file and use the exported configuration object
|
|
17
|
+
* to override its own default settings.
|
|
18
|
+
*
|
|
19
|
+
* Using this function is recommended, but not required. It just passes through the given object,
|
|
20
|
+
* but it also provides type information for your editor's auto-completion and type checking.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* ```js
|
|
24
|
+
* // ec.config.mjs
|
|
25
|
+
* import { defineEcConfig } from '@astrojs/starlight/expressive-code'
|
|
26
|
+
*
|
|
27
|
+
* export default defineEcConfig({
|
|
28
|
+
* themes: ['starlight-dark', 'github-light'],
|
|
29
|
+
* styleOverrides: {
|
|
30
|
+
* borderRadius: '0.5rem',
|
|
31
|
+
* },
|
|
32
|
+
* })
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
export function defineEcConfig(
|
|
36
|
+
config: StarlightExpressiveCodeOptions
|
|
37
|
+
): StarlightExpressiveCodeOptions;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file This file is exported by Starlight as `@astrojs/starlight/expressive-code`.
|
|
3
|
+
*
|
|
4
|
+
* It is required by the `<Code>` component to access the same configuration preprocessor
|
|
5
|
+
* function as the one used by the integration.
|
|
6
|
+
*
|
|
7
|
+
* It also provides access to all of the Expressive Code classes and functions without having
|
|
8
|
+
* to install `astro-expressive-code` as an additional dependency into a user's project
|
|
9
|
+
* (and thereby risiking version conflicts).
|
|
10
|
+
*
|
|
11
|
+
* Note: This file is intentionally not a TypeScript module to allow access to all exported
|
|
12
|
+
* functionality even if TypeScript is not available, e.g. from the `ec.config.mjs` file
|
|
13
|
+
* that does not get processed by Vite.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
export * from 'astro-expressive-code';
|
|
17
|
+
|
|
18
|
+
// @ts-ignore - Types are provided by the separate `expressive-code.d.ts` file
|
|
19
|
+
export function defineEcConfig(config) {
|
|
20
|
+
return config;
|
|
21
|
+
}
|
|
@@ -179,8 +179,7 @@ export const starlightExpressiveCode = ({
|
|
|
179
179
|
}),
|
|
180
180
|
preprocessComponentConfig: `
|
|
181
181
|
import starlightConfig from 'virtual:starlight/user-config'
|
|
182
|
-
import { useTranslations } from '@astrojs/starlight/internal'
|
|
183
|
-
import { getStarlightEcConfigPreprocessor } from '@astrojs/starlight/expressive-code'
|
|
182
|
+
import { useTranslations, getStarlightEcConfigPreprocessor } from '@astrojs/starlight/internal'
|
|
184
183
|
|
|
185
184
|
export default getStarlightEcConfigPreprocessor({ starlightConfig, useTranslations })
|
|
186
185
|
`,
|
package/internal.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/starlight",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.2",
|
|
4
4
|
"description": "Build beautiful, high-performance documentation websites with Astro",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"docs",
|
|
@@ -154,7 +154,10 @@
|
|
|
154
154
|
"./props": "./props.ts",
|
|
155
155
|
"./schema": "./schema.ts",
|
|
156
156
|
"./types": "./types.ts",
|
|
157
|
-
"./expressive-code":
|
|
157
|
+
"./expressive-code": {
|
|
158
|
+
"types": "./expressive-code.d.ts",
|
|
159
|
+
"default": "./expressive-code.mjs"
|
|
160
|
+
},
|
|
158
161
|
"./index.astro": "./index.astro",
|
|
159
162
|
"./404.astro": "./404.astro",
|
|
160
163
|
"./style/markdown.css": "./style/markdown.css"
|
|
@@ -165,9 +168,9 @@
|
|
|
165
168
|
"devDependencies": {
|
|
166
169
|
"@astrojs/markdown-remark": "^4.0.1",
|
|
167
170
|
"@types/node": "^18.16.19",
|
|
168
|
-
"@vitest/coverage-v8": "^
|
|
171
|
+
"@vitest/coverage-v8": "^1.2.2",
|
|
169
172
|
"astro": "^4.2.1",
|
|
170
|
-
"vitest": "^
|
|
173
|
+
"vitest": "^1.2.2"
|
|
171
174
|
},
|
|
172
175
|
"dependencies": {
|
|
173
176
|
"@astrojs/mdx": "^2.0.4",
|
package/utils/localizedUrl.ts
CHANGED
|
@@ -17,14 +17,26 @@ export function localizedUrl(url: URL, locale: string | undefined): URL {
|
|
|
17
17
|
// Temporarily remove base to simplify
|
|
18
18
|
if (hasBase) url.pathname = url.pathname.replace(base, '');
|
|
19
19
|
const [_leadingSlash, baseSegment] = url.pathname.split('/');
|
|
20
|
-
|
|
20
|
+
// Strip .html extension to handle file output builds where URL might be e.g. `/en.html`
|
|
21
|
+
const htmlExt = '.html';
|
|
22
|
+
const isRootHtml = baseSegment?.endsWith(htmlExt);
|
|
23
|
+
const baseSlug = isRootHtml ? baseSegment?.slice(0, -1 * htmlExt.length) : baseSegment;
|
|
24
|
+
if (baseSlug && baseSlug in config.locales) {
|
|
21
25
|
// We’re in a localized route, substitute the new locale (or strip for root lang).
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
if (locale) {
|
|
27
|
+
url.pathname = url.pathname.replace(baseSlug, locale);
|
|
28
|
+
} else if (isRootHtml) {
|
|
29
|
+
url.pathname = '/index.html';
|
|
30
|
+
} else {
|
|
31
|
+
url.pathname = url.pathname.replace('/' + baseSlug, '');
|
|
32
|
+
}
|
|
25
33
|
} else if (locale) {
|
|
26
34
|
// We’re in the root language. Inject the new locale if we have one.
|
|
27
|
-
|
|
35
|
+
if (baseSegment === 'index.html') {
|
|
36
|
+
url.pathname = '/' + locale + '.html';
|
|
37
|
+
} else {
|
|
38
|
+
url.pathname = '/' + locale + url.pathname;
|
|
39
|
+
}
|
|
28
40
|
}
|
|
29
41
|
// Restore base
|
|
30
42
|
if (hasBase) url.pathname = base + url.pathname;
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file This file is exported by Starlight as `@astrojs/starlight/expressive-code`
|
|
3
|
-
* and can be used in your site's configuration to customize Expressive Code.
|
|
4
|
-
*
|
|
5
|
-
* It provides access to all of the Expressive Code classes and functions without having
|
|
6
|
-
* to install `astro-expressive-code` as an additional dependency into your project
|
|
7
|
-
* (and thereby risiking version conflicts).
|
|
8
|
-
*
|
|
9
|
-
* For example, you can use this to load custom themes from a JSONC file (JSON with comments)
|
|
10
|
-
* that would otherwise be difficult to import, and pass them to the `themes` option:
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```js
|
|
14
|
-
* // astro.config.mjs
|
|
15
|
-
* import fs from 'node:fs';
|
|
16
|
-
* import { defineConfig } from 'astro/config';
|
|
17
|
-
* import starlight from '@astrojs/starlight';
|
|
18
|
-
* import { ExpressiveCodeTheme } from '@astrojs/starlight/expressive-code';
|
|
19
|
-
*
|
|
20
|
-
* const jsoncString = fs.readFileSync(new URL(`./my-theme.jsonc`, import.meta.url), 'utf-8');
|
|
21
|
-
* const myTheme = ExpressiveCodeTheme.fromJSONString(jsoncString);
|
|
22
|
-
*
|
|
23
|
-
* export default defineConfig({
|
|
24
|
-
* integrations: [
|
|
25
|
-
* starlight({
|
|
26
|
-
* title: 'My Starlight site',
|
|
27
|
-
* expressiveCode: {
|
|
28
|
-
* themes: [myTheme],
|
|
29
|
-
* },
|
|
30
|
-
* }),
|
|
31
|
-
* ],
|
|
32
|
-
* });
|
|
33
|
-
* ```
|
|
34
|
-
*/
|
|
35
|
-
|
|
36
|
-
export * from 'astro-expressive-code';
|
|
37
|
-
|
|
38
|
-
import type { StarlightExpressiveCodeOptions } from './index';
|
|
39
|
-
|
|
40
|
-
export type { StarlightExpressiveCodeOptions };
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* A utility function that helps you define an Expressive Code configuration object. It is meant
|
|
44
|
-
* to be used inside the optional config file `ec.config.mjs` located in the root directory
|
|
45
|
-
* of your Starlight project, and its return value to be exported as the default export.
|
|
46
|
-
*
|
|
47
|
-
* Expressive Code will automatically detect this file and use the exported configuration object
|
|
48
|
-
* to override its own default settings.
|
|
49
|
-
*
|
|
50
|
-
* Using this function is recommended, but not required. It just passes through the given object,
|
|
51
|
-
* but it also provides type information for your editor's auto-completion and type checking.
|
|
52
|
-
*
|
|
53
|
-
* @example
|
|
54
|
-
* ```js
|
|
55
|
-
* // ec.config.mjs
|
|
56
|
-
* import { defineEcConfig } from '@astrojs/starlight/expressive-code'
|
|
57
|
-
*
|
|
58
|
-
* export default defineEcConfig({
|
|
59
|
-
* themes: ['starlight-dark', 'github-light'],
|
|
60
|
-
* styleOverrides: {
|
|
61
|
-
* borderRadius: '0.5rem',
|
|
62
|
-
* },
|
|
63
|
-
* })
|
|
64
|
-
* ```
|
|
65
|
-
*/
|
|
66
|
-
export function defineEcConfig(config: StarlightExpressiveCodeOptions) {
|
|
67
|
-
return config;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export { getStarlightEcConfigPreprocessor } from './index';
|