diff --git a/src/scripts/p5-version.ts b/src/scripts/p5-version.ts index d094454bfb..cef1eaa805 100644 --- a/src/scripts/p5-version.ts +++ b/src/scripts/p5-version.ts @@ -8,7 +8,8 @@ const clonedRepoPath = path.join(repoRootPath, "in", "p5.js"); const outputFile = path.join(repoRootPath, "src", "globals", "p5-version.ts"); const outputString = (version: string) => - `export const p5Version = "${version}" as const;\n`; + `export const p5Version = "${version}" as const; +export const p5SoundVersion = "0.1.0" as const;\n`; const run = async () => { console.log("Reading latest p5 version to update config...");