@dcl-regenesislabs/opendcl 0.1.3 → 0.1.4-22336933467.commit-433e85a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extensions/dcl-init.ts +1 -1
- package/package.json +2 -2
package/extensions/dcl-init.ts
CHANGED
|
@@ -43,7 +43,7 @@ const extension: ExtensionFactory = (pi) => {
|
|
|
43
43
|
parameters: Type.Object({}),
|
|
44
44
|
async execute(_id, _params, _signal, _onUpdate, ctx) {
|
|
45
45
|
const result = await initScene(ctx.cwd, pi);
|
|
46
|
-
if (!result.isError) await ctx.reload();
|
|
46
|
+
if (!result.isError && 'reload' in ctx) await (ctx as any).reload();
|
|
47
47
|
return { content: [{ type: "text" as const, text: result.message }], details: undefined };
|
|
48
48
|
},
|
|
49
49
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl-regenesislabs/opendcl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4-22336933467.commit-433e85a",
|
|
4
4
|
"description": "AI coding assistant for Decentraland SDK7 scene development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"prompts/",
|
|
67
67
|
"context/"
|
|
68
68
|
],
|
|
69
|
-
"commit": "
|
|
69
|
+
"commit": "433e85a4a81ef15a1ddc65d784a52abf65e51038"
|
|
70
70
|
}
|