@velonor/theme 1.0.0 → 1.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.
- package/package.json +2 -2
- package/src/components/Archive.vue +2 -2
- package/src/posts.data.js +2 -2
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
]
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
"version": "1.0.
|
|
11
|
+
"version": "1.0.1",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": "./src/index.ts",
|
|
14
14
|
"./genFeed": "./src/genFeed.mjs",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"feed": "^4.2.2",
|
|
46
|
-
"@velonor/engine": "^
|
|
46
|
+
"@velonor/engine": "^1.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@eslint/js": "^9.14.0",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
<template>
|
|
2
2
|
<ThemeLayout>
|
|
3
3
|
<div
|
|
4
4
|
class="flex w-full flex-col bg-opacity-90 backdrop-blur-md dark:shadow-none shadow-lg border-2 border-[var(--blog-border-c)] bg-[var(--vp-c-blog-bg)] rounded-2xl py-10 px-6 md:px-10 gap-8">
|
|
@@ -118,4 +118,4 @@ const formatMonthDay = (value: unknown) => {
|
|
|
118
118
|
return `${month}-${day}`;
|
|
119
119
|
};
|
|
120
120
|
</script>
|
|
121
|
-
|
|
121
|
+
|
package/src/posts.data.js
CHANGED