This repository was archived by the owner on Oct 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +1256
-1197
lines changed
Expand file tree Collapse file tree 6 files changed +1256
-1197
lines changed Load Diff This file was deleted.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ checksumBehavior: update
22
33nodeLinker : node-modules
44
5- yarnPath : .yarn/releases/yarn-4.2.2.cjs
5+ npmAuthToken : " ${NODE_AUTH_TOKEN-fallback} "
66
7- npmAuthToken : ${NODE_AUTH_TOKEN-fallback}
7+ yarnPath : .yarn/releases/yarn-4.9.2.cjs
Original file line number Diff line number Diff line change 11{
22 "name" : " choco-astro" ,
3- "version" : " 0.3.2 " ,
4- "packageManager" : " yarn@4.2 .2" ,
3+ "version" : " 0.4.0 " ,
4+ "packageManager" : " yarn@4.9 .2" ,
55 "type" : " module" ,
66 "description" : " A global set of dependencies to be used on Chocolatey Software Astro projects." ,
77 "repository" : {
2020 "dependencies" : {
2121 "@astrojs/check" : " 0.9.4" ,
2222 "@astrojs/mdx" : " 4.3.0" ,
23- "@astrojs/node" : " 9.2.2 " ,
23+ "@astrojs/node" : " 9.3.0 " ,
2424 "@astrojs/rss" : " 4.0.12" ,
2525 "@astrojs/sitemap" : " 3.4.1" ,
2626 "@types/markdown-it" : " ^14" ,
2727 "@types/sanitize-html" : " ^2" ,
28- "astro" : " 5.9.2 " ,
28+ "astro" : " 5.11.0 " ,
2929 "feed" : " ^5.1.0" ,
3030 "gray-matter" : " ^4.0.3" ,
3131 "markdown-it" : " ^14.1.0" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ type CalloutTitle = Callout['title'];
1313type CalloutType = Callout [' type' ];
1414
1515interface Props {
16- content: Callout
16+ content? : Callout
1717 title: CalloutTitle
1818 type: CalloutType
1919}
@@ -28,7 +28,7 @@ if (title) {
2828 title = ' ' ;
2929}
3030
31- type = type ? type : content .type ;
31+ type = type ? type : ( content && content .type ? content . type : ' none ' ) ;
3232let icon = ' ' ;
3333
3434switch (type ) {
You can’t perform that action at this time.
0 commit comments