astro-blog-kit 0.2.0 → 0.2.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/bin/cli.js +3 -1
- package/cli.ts +3 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -53,10 +53,12 @@ async function main() {
|
|
|
53
53
|
}),
|
|
54
54
|
defaultLayout: () => p.select({
|
|
55
55
|
message: "Default layout",
|
|
56
|
+
// DESPUÉS
|
|
56
57
|
options: [
|
|
57
58
|
{ value: "magazine", label: "Magazine \u2014 featured post + grid" },
|
|
58
59
|
{ value: "grid", label: "Grid \u2014 3 column card grid" },
|
|
59
|
-
{ value: "
|
|
60
|
+
{ value: "featured", label: "Featured \u2014 large hero + grid below" },
|
|
61
|
+
{ value: "cards", label: "Cards \u2014 image background + text overlay" }
|
|
60
62
|
]
|
|
61
63
|
}),
|
|
62
64
|
locale: () => p.text({
|
package/cli.ts
CHANGED
|
@@ -80,10 +80,12 @@ async function main() {
|
|
|
80
80
|
defaultLayout: () =>
|
|
81
81
|
p.select({
|
|
82
82
|
message: "Default layout",
|
|
83
|
+
// DESPUÉS
|
|
83
84
|
options: [
|
|
84
85
|
{ value: "magazine", label: "Magazine — featured post + grid" },
|
|
85
86
|
{ value: "grid", label: "Grid — 3 column card grid" },
|
|
86
|
-
{ value: "
|
|
87
|
+
{ value: "featured", label: "Featured — large hero + grid below" },
|
|
88
|
+
{ value: "cards", label: "Cards — image background + text overlay" },
|
|
87
89
|
],
|
|
88
90
|
}),
|
|
89
91
|
|
package/package.json
CHANGED