@paimaexample/explorer 0.3.99 → 0.3.101

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.
@@ -6,7 +6,7 @@
6
6
  <link rel="icon" type="image/svg+xml" href="/vite.svg" />
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
8
  <title>Paima Explorer</title>
9
- <script type="module" crossorigin src="/assets/index-BsTlg0al.js"></script>
9
+ <script type="module" crossorigin src="/assets/index-CenjZTIc.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="/assets/index-BP6oWY7z.css">
11
11
  </head>
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paimaexample/explorer",
3
- "version": "0.3.99",
3
+ "version": "0.3.101",
4
4
  "main": "client/dist/index.html",
5
5
  "bin": {
6
6
  "explorer": "cli.cjs"
package/server/main.ts CHANGED
@@ -15,7 +15,7 @@ app.use(routeStaticFilesFrom([
15
15
  // If this is the entry point, start the server
16
16
  if (import.meta.main) {
17
17
  console.log(
18
- `Server listening on port http://localhost:${ENV.PAIMA_EXPLORER_PORT}`,
18
+ `Server listening on port http://localhost:${ENV.EFFECTSTREAM_EXPLORER_PORT}`,
19
19
  );
20
- await app.listen({ port: ENV.PAIMA_EXPLORER_PORT });
20
+ await app.listen({ port: ENV.EFFECTSTREAM_EXPLORER_PORT });
21
21
  }