starlight-theme-nova 0.7.2 → 0.7.4
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/package.json +11 -11
- package/src/index.ts +3 -2
- package/src/virtual-internal.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starlight-theme-nova",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.4",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "ocavue <ocavue@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"src"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@shikijs/transformers": "^3.
|
|
30
|
-
"@shikijs/twoslash": "^3.
|
|
31
|
-
"@shikijs/types": "^3.
|
|
29
|
+
"@shikijs/transformers": "^3.5.0",
|
|
30
|
+
"@shikijs/twoslash": "^3.5.0",
|
|
31
|
+
"@shikijs/types": "^3.5.0",
|
|
32
32
|
"@types/hast": "^3.0.4",
|
|
33
33
|
"astro-theme-toggle": "^0.6.0",
|
|
34
34
|
"hast-util-is-element": "^3.0.0",
|
|
35
35
|
"rehype": "^13.0.2",
|
|
36
|
-
"shiki-twoslash-renderer": "0.0.
|
|
36
|
+
"shiki-twoslash-renderer": "0.0.4"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@astrojs/starlight": "*"
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@astrojs/starlight": "^0.34.
|
|
47
|
+
"@astrojs/starlight": "^0.34.3",
|
|
48
48
|
"@iconify-json/bxl": "^1.2.2",
|
|
49
49
|
"@iconify-json/logos": "^1.2.4",
|
|
50
|
-
"@iconify-json/lucide": "^1.2.
|
|
51
|
-
"@iconify-json/tabler": "^1.2.
|
|
50
|
+
"@iconify-json/lucide": "^1.2.46",
|
|
51
|
+
"@iconify-json/tabler": "^1.2.19",
|
|
52
52
|
"@ocavue/tsconfig": "^0.3.7",
|
|
53
53
|
"@types/node": "^20.17.30",
|
|
54
|
-
"@unocss/cli": "^66.
|
|
55
|
-
"astro": "^5.
|
|
54
|
+
"@unocss/cli": "^66.1.0",
|
|
55
|
+
"astro": "^5.8.2",
|
|
56
56
|
"typescript": "^5.8.3",
|
|
57
|
-
"unocss": "^66.
|
|
57
|
+
"unocss": "^66.1.0",
|
|
58
58
|
"unocss-preset-animations": "^1.2.1"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
package/src/index.ts
CHANGED
|
@@ -35,9 +35,10 @@ export default function starlightThemeNova(
|
|
|
35
35
|
setup({ config, updateConfig, addIntegration, astroConfig }) {
|
|
36
36
|
const newConfig = {
|
|
37
37
|
customCss: [
|
|
38
|
-
// Including any user CSS *after* our own.
|
|
39
|
-
'starlight-theme-nova/styles.css',
|
|
40
38
|
...(config.customCss || []),
|
|
39
|
+
// Including nova styles *after* any user CSS, so that @layer nova
|
|
40
|
+
// can have a higher precedence.
|
|
41
|
+
'starlight-theme-nova/styles.css',
|
|
41
42
|
],
|
|
42
43
|
components: {
|
|
43
44
|
// Including any user components *after* our own.
|