@gmickel/gno 1.3.1 → 1.4.1

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.
@@ -154,9 +154,8 @@ export async function startServer(
154
154
  const shutdownController = new AbortController();
155
155
 
156
156
  // Graceful shutdown handler
157
- const shutdown = async () => {
157
+ const shutdown = () => {
158
158
  console.log("\nShutting down...");
159
- await runtime.dispose();
160
159
  shutdownController.abort();
161
160
  };
162
161
 
@@ -663,5 +662,6 @@ export async function startServer(
663
662
  });
664
663
 
665
664
  await server.stop(true);
665
+ await runtime.dispose();
666
666
  return { success: true };
667
667
  }
@@ -0,0 +1,4 @@
1
+ declare module "*.wasm" {
2
+ const path: string;
3
+ export default path;
4
+ }