@grove-dev/starlight 0.1.14 → 0.2.13

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.
Files changed (2) hide show
  1. package/core/plugin.ts +2 -2
  2. package/package.json +1 -1
package/core/plugin.ts CHANGED
@@ -22,7 +22,7 @@ const parseConfig = (userConfig?: LucodeStarlightUserConfig): LucodeStarlightCon
22
22
 
23
23
  const plugin = (userConfig?: LucodeStarlightUserConfig): StarlightPlugin =>
24
24
  ({
25
- name: 'lucode-starlight',
25
+ name: '@grove-dev/starlight',
26
26
  hooks: {
27
27
  'config:setup': ({ config, logger, updateConfig, addIntegration }) => {
28
28
  updateConfig({
@@ -37,7 +37,7 @@ const plugin = (userConfig?: LucodeStarlightUserConfig): StarlightPlugin =>
37
37
  });
38
38
 
39
39
  addIntegration({
40
- name: 'lucode-starlight-integration',
40
+ name: '@grove-dev/starlight/integration',
41
41
  hooks: {
42
42
  'astro:config:setup': ({ updateConfig }) => {
43
43
  updateConfig({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grove-dev/starlight",
3
- "version": "0.1.14",
3
+ "version": "0.2.13",
4
4
  "type": "module",
5
5
  "description": "Grove's theme for Starlight (the Astro native documentation site generator)",
6
6
  "author": "grove-dev",