svelora 3.0.0 → 3.0.1
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.
|
@@ -11,7 +11,7 @@ export type DocsGroup = {
|
|
|
11
11
|
};
|
|
12
12
|
export declare const docsMeta: {
|
|
13
13
|
readonly name: "Svelora";
|
|
14
|
-
readonly version:
|
|
14
|
+
readonly version: `v${string}`;
|
|
15
15
|
readonly npmCommand: "npm install svelora";
|
|
16
16
|
readonly githubHref: "https://github.com/asphum/svelora";
|
|
17
17
|
};
|
package/dist/docs/navigation.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import packageJson from '../../../package.json' with { type: 'json' };
|
|
1
2
|
export const docsMeta = {
|
|
2
3
|
name: 'Svelora',
|
|
3
|
-
version:
|
|
4
|
+
version: `v${packageJson.version}`,
|
|
4
5
|
npmCommand: 'npm install svelora',
|
|
5
6
|
githubHref: 'https://github.com/asphum/svelora'
|
|
6
7
|
};
|
package/dist/theme.css
CHANGED