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.
package/generator/src/build.js
CHANGED
|
@@ -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.
|
|
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.",
|