elm-pages 3.0.0-beta.36 → 3.0.0-beta.37

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.
@@ -96,6 +96,9 @@ export async function run(options) {
96
96
  input: "elm-stuff/elm-pages/index.html",
97
97
  },
98
98
  },
99
+ optimizeDeps: {
100
+ include: [],
101
+ },
99
102
  },
100
103
  config.vite || {}
101
104
  );
@@ -1,3 +1,3 @@
1
1
  export const compatibilityKey = 15;
2
2
 
3
- export const packageVersion = "3.0.0-beta.36";
3
+ export const packageVersion = "3.0.0-beta.37";
@@ -173,6 +173,13 @@ export async function start(options) {
173
173
  configFile: false,
174
174
  root: process.cwd(),
175
175
  base: options.base,
176
+ /*
177
+ Using explicit optimizeDeps.include prevents the following Vite warning message:
178
+ (!) Could not auto-determine entry point from rollupOptions or html files and there are no explicit optimizeDeps.include patterns. Skipping dependency pre-bundling.
179
+ */
180
+ optimizeDeps: {
181
+ include: [],
182
+ },
176
183
  },
177
184
 
178
185
  config.vite
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elm-pages",
3
3
  "type": "module",
4
- "version": "3.0.0-beta.36",
4
+ "version": "3.0.0-beta.37",
5
5
  "homepage": "https://elm-pages.com",
6
6
  "moduleResolution": "node",
7
7
  "description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",