Skip to content

Commit

Permalink
Temporary patch for updating p5.sound.js version number
Browse files Browse the repository at this point in the history
  • Loading branch information
limzykenneth committed Nov 28, 2024
1 parent dc7f728 commit f02e903
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/p5-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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...");
Expand Down

0 comments on commit f02e903

Please sign in to comment.