From f02e9030e6daa5504113a5a1a98d7900f4992bbc Mon Sep 17 00:00:00 2001 From: limzykenneth Date: Thu, 28 Nov 2024 11:47:05 +0000 Subject: [PATCH] Temporary patch for updating p5.sound.js version number --- src/scripts/p5-version.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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...");