houdini-adapter-static 1.3.0 → 1.4.0

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.
Files changed (2) hide show
  1. package/build/index.js +2 -1
  2. package/package.json +2 -2
package/build/index.js CHANGED
@@ -41,7 +41,8 @@ adapter.pre = async ({ config, outDir, conventions }) => {
41
41
  },
42
42
  lib: {
43
43
  entry: {
44
- shell: conventions.router_index_path(config),
44
+ // the shell could be defined as tsx or jsx so just strip the extension
45
+ shell: conventions.router_index_path(config).replace('.jsx', ''),
45
46
  },
46
47
  formats: ['es'],
47
48
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-adapter-static",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "The adapter for deploying your Houdini application as a single-page application without a server component",
5
5
  "keywords": [
6
6
  "houdini",
@@ -27,7 +27,7 @@
27
27
  "react": "19.0.0-rc-eb259b5d3b-20240605",
28
28
  "react-dom": "19.0.0-rc-eb259b5d3b-20240605",
29
29
  "vite": "^4.1.4",
30
- "houdini": "^1.4.0"
30
+ "houdini": "^1.4.1"
31
31
  },
32
32
  "files": [
33
33
  "build"