Skip to content

Commit

Permalink
Merge pull request #643 from limzykenneth/main
Browse files Browse the repository at this point in the history
Temporary patch for updating p5.sound.js version number
  • Loading branch information
limzykenneth authored Nov 28, 2024
2 parents dc7f728 + f02e903 commit e698b20
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 e698b20

Please sign in to comment.