elm-pages 3.0.0-beta.23 → 3.0.0-beta.24

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.
@@ -1,3 +1,3 @@
1
1
  export const compatibilityKey = 8;
2
2
 
3
- export const packageVersion = "3.0.0-beta.23";
3
+ export const packageVersion = "3.0.0-beta.24";
@@ -265,6 +265,11 @@ export async function start(options) {
265
265
  watcher.on("all", async function (eventName, pathThatChanged) {
266
266
  if (pathThatChanged === "elm.json") {
267
267
  watchElmSourceDirs(false);
268
+ } else if (
269
+ pathThatChanged.startsWith("app/Route") &&
270
+ !pathThatChanged.endsWith(".elm")
271
+ ) {
272
+ // this happens when a folder is created in app/Route. Ignore this case.
268
273
  } else if (pathThatChanged.endsWith(".elm")) {
269
274
  invalidatePool();
270
275
  if (elmMakeRunning) {
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.23",
4
+ "version": "3.0.0-beta.24",
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.",
@@ -34,18 +34,18 @@
34
34
  "devcert": "^1.2.2",
35
35
  "elm-doc-preview": "^5.0.5",
36
36
  "elm-hot": "^1.1.6",
37
- "esbuild": "^0.17.5",
37
+ "esbuild": "^0.17.8",
38
38
  "fs-extra": "^11.1.0",
39
39
  "globby": "^13.1.3",
40
40
  "gray-matter": "^4.0.3",
41
41
  "jsesc": "^3.0.2",
42
42
  "kleur": "^4.1.5",
43
- "make-fetch-happen": "^11.0.2",
43
+ "make-fetch-happen": "^11.0.3",
44
44
  "memfs": "^3.4.7",
45
45
  "micromatch": "^4.0.5",
46
46
  "serve-static": "^1.15.0",
47
- "terser": "^5.16.1",
48
- "vite": "^4.0.4",
47
+ "terser": "^5.16.3",
48
+ "vite": "^4.1.1",
49
49
  "which": "^3.0.0"
50
50
  },
51
51
  "devDependencies": {
@@ -55,16 +55,16 @@
55
55
  "@types/micromatch": "^4.0.2",
56
56
  "@types/node": "^18.11.9",
57
57
  "@types/serve-static": "^1.15.0",
58
- "cypress": "^12.4.0",
58
+ "cypress": "^12.5.1",
59
59
  "elm-codegen": "^0.2.0",
60
60
  "elm-optimize-level-2": "^0.3.5",
61
61
  "elm-review": "^2.8.2",
62
62
  "elm-test": "^0.19.1-revision11",
63
- "elm-tooling": "^1.11.0",
63
+ "elm-tooling": "^1.12.0",
64
64
  "elm-verify-examples": "^5.2.0",
65
65
  "elmi-to-json": "^1.2.0",
66
66
  "mocha": "^10.2.0",
67
- "typescript": "^4.9.3"
67
+ "typescript": "^4.9.5"
68
68
  },
69
69
  "files": [
70
70
  "generator/src/",