File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import llmsTxt from './llms-txt/index.mjs';
14
14
import metadata from './metadata/index.mjs' ;
15
15
16
16
export const publicGenerators = {
17
- metadata : metadata ,
18
17
'json-simple' : jsonSimple ,
19
18
'legacy-html' : legacyHtml ,
20
19
'legacy-html-all' : legacyHtmlAll ,
@@ -27,9 +26,14 @@ export const publicGenerators = {
27
26
'llms-txt' : llmsTxt ,
28
27
} ;
29
28
29
+ // These are a bit special: we don't want them to run unless needed,
30
+ // and we also don't want them publicly accessible via the CLI.
31
+ const internalGenerators = {
32
+ metadata,
33
+ 'ast-js' : astJs ,
34
+ } ;
35
+
30
36
export const allGenerators = {
31
37
...publicGenerators ,
32
- // This one is a little special since we don't want it to run unless we need
33
- // it and we also don't want it to be publicly accessible through the CLI.
34
- 'ast-js' : astJs ,
38
+ ...internalGenerators ,
35
39
} ;
You can’t perform that action at this time.
0 commit comments