astro-accelerator-utils 0.3.45 → 0.3.47

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.
@@ -131,6 +131,10 @@ export function isListable (p) {
131
131
  return false;
132
132
  }
133
133
 
134
+ if (p.frontmatter.listable != null && p.frontmatter.listable == false) {
135
+ return false;
136
+ }
137
+
134
138
  if (p.frontmatter.draft == true) {
135
139
  return false;
136
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-accelerator-utils",
3
- "version": "0.3.45",
3
+ "version": "0.3.47",
4
4
  "description": "Astro utilities for Astro Accelerator.",
5
5
  "main": "index.mjs",
6
6
  "type": "module",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "homepage": "https://astro.stevefenton.co.uk/",
35
35
  "devDependencies": {
36
- "@types/node": "^22.15.32",
36
+ "@types/node": "^22.15.34",
37
37
  "jest": "^29.7.0",
38
38
  "jest-spec": "^0.0.6",
39
39
  "rehype-stringify": "^10.0.1",