We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f5d27b commit 8b04e14Copy full SHA for 8b04e14
src/scripts/builders/reference.ts
@@ -71,6 +71,7 @@ const getModulePath = (doc: ReferenceClassDefinition | ReferenceClassItem) => {
71
if ("class" in doc && doc.class) {
72
docClass = doc.class;
73
} else {
74
+ if (!doc.module) console.log(doc)
75
docClass = doc.module.startsWith("p5.") ? doc.module : "p5";
76
}
77
src/scripts/parsers/reference.ts
@@ -27,7 +27,7 @@ export const parseLibraryReference =
27
await cloneLibraryRepo(
28
localSoundPath,
29
'https://github.com/processing/p5.sound.js.git',
30
- 'main',
+ 'moduleref', // 'main',
31
{ shouldFixAbsolutePathInPreprocessor: false }
32
);
33
await saveYuidocOutput('p5.sound.js', 'data-sound');
0 commit comments