We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51b61b0 commit ca95e3cCopy full SHA for ca95e3c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@moonlight-mod/create-extension",
3
- "version": "1.0.6",
+ "version": "1.0.7",
4
"license": "MIT",
5
"repository": {
6
"type": "git",
template.js
@@ -55,7 +55,7 @@ declare module "@moonlight-mod/wp/${extId}_someLibrary" {
55
`;
56
files["env.d.ts"] = str;
57
} else {
58
- 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));
59
}
60
61
const extSpecific = [
0 commit comments