Skip to content

Commit

Permalink
1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Jan 25, 2025
1 parent 51b61b0 commit ca95e3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonlight-mod/create-extension",
"version": "1.0.6",
"version": "1.0.7",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion template.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ declare module "@moonlight-mod/wp/${extId}_someLibrary" {
`;
files["env.d.ts"] = str;
} else {
files["env.d.ts"] = await read("env.d.ts").then((r) => r.replace("sampleExtension", extId));
files["env.d.ts"] = await read("env.d.ts").then((r) => r.replaceAll("sampleExtension", extId));
}

const extSpecific = [
Expand Down

0 comments on commit ca95e3c

Please sign in to comment.