Skip to content

Commit 8b04e14

Browse files
committed
Test with updated branch
1 parent 8f5d27b commit 8b04e14

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/scripts/builders/reference.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ const getModulePath = (doc: ReferenceClassDefinition | ReferenceClassItem) => {
7171
if ("class" in doc && doc.class) {
7272
docClass = doc.class;
7373
} else {
74+
if (!doc.module) console.log(doc)
7475
docClass = doc.module.startsWith("p5.") ? doc.module : "p5";
7576
}
7677

src/scripts/parsers/reference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const parseLibraryReference =
2727
await cloneLibraryRepo(
2828
localSoundPath,
2929
'https://github.com/processing/p5.sound.js.git',
30-
'main',
30+
'moduleref', // 'main',
3131
{ shouldFixAbsolutePathInPreprocessor: false }
3232
);
3333
await saveYuidocOutput('p5.sound.js', 'data-sound');

0 commit comments

Comments
 (0)