Skip to content

Commit ca95e3c

Browse files
committed
1.0.7
1 parent 51b61b0 commit ca95e3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@moonlight-mod/create-extension",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"license": "MIT",
55
"repository": {
66
"type": "git",

template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ declare module "@moonlight-mod/wp/${extId}_someLibrary" {
5555
`;
5656
files["env.d.ts"] = str;
5757
} else {
58-
files["env.d.ts"] = await read("env.d.ts").then((r) => r.replace("sampleExtension", extId));
58+
files["env.d.ts"] = await read("env.d.ts").then((r) => r.replaceAll("sampleExtension", extId));
5959
}
6060

6161
const extSpecific = [

0 commit comments

Comments
 (0)