elm-pages 3.0.14 → 3.0.16

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.
@@ -10,7 +10,7 @@
10
10
  "elm/core": "1.0.5",
11
11
  "elm/json": "1.1.3",
12
12
  "elm-community/result-extra": "2.4.0",
13
- "jfmengels/elm-review": "2.13.1",
13
+ "jfmengels/elm-review": "2.14.0",
14
14
  "stil4m/elm-syntax": "7.3.2"
15
15
  },
16
16
  "indirect": {
@@ -19,18 +19,18 @@
19
19
  "elm/parser": "1.1.0",
20
20
  "elm/project-metadata-utils": "1.0.2",
21
21
  "elm/random": "1.0.0",
22
+ "elm/regex": "1.0.0",
22
23
  "elm/time": "1.0.0",
23
24
  "elm/virtual-dom": "1.0.3",
24
- "elm-community/list-extra": "8.7.0",
25
- "elm-explorations/test": "2.1.1",
26
- "miniBill/elm-unicode": "1.0.3",
25
+ "elm-explorations/test": "2.2.0",
26
+ "miniBill/elm-unicode": "1.1.1",
27
27
  "rtfeldman/elm-hex": "1.0.0",
28
28
  "stil4m/structured-writer": "1.0.3"
29
29
  }
30
30
  },
31
31
  "test-dependencies": {
32
32
  "direct": {
33
- "elm-explorations/test": "2.1.1"
33
+ "elm-explorations/test": "2.2.0"
34
34
  },
35
35
  "indirect": {}
36
36
  }
@@ -11,10 +11,10 @@
11
11
  "elm/html": "1.0.0",
12
12
  "elm/json": "1.1.3",
13
13
  "elm/regex": "1.0.0",
14
- "jfmengels/elm-review": "2.13.1",
15
- "mdgriffith/elm-codegen": "4.1.1",
14
+ "jfmengels/elm-review": "2.14.0",
15
+ "mdgriffith/elm-codegen": "4.2.2",
16
16
  "stil4m/elm-syntax": "7.3.2",
17
- "the-sett/elm-syntax-dsl": "6.0.2"
17
+ "the-sett/elm-syntax-dsl": "6.0.3"
18
18
  },
19
19
  "indirect": {
20
20
  "Chadtech/elm-bool-extra": "2.4.2",
@@ -26,8 +26,8 @@
26
26
  "elm/virtual-dom": "1.0.3",
27
27
  "elm-community/basics-extra": "4.1.0",
28
28
  "elm-community/maybe-extra": "5.3.0",
29
- "elm-explorations/test": "2.1.2",
30
- "miniBill/elm-unicode": "1.1.0",
29
+ "elm-explorations/test": "2.2.0",
30
+ "miniBill/elm-unicode": "1.1.1",
31
31
  "rtfeldman/elm-hex": "1.0.0",
32
32
  "stil4m/structured-writer": "1.0.3",
33
33
  "the-sett/elm-pretty-printer": "3.1.0"
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "test-dependencies": {
37
37
  "direct": {
38
- "elm-explorations/test": "2.1.2"
38
+ "elm-explorations/test": "2.2.0"
39
39
  },
40
40
  "indirect": {}
41
41
  }
@@ -1,3 +1,3 @@
1
1
  export const compatibilityKey = 22;
2
2
 
3
- export const packageVersion = "3.0.14";
3
+ export const packageVersion = "3.0.16";
@@ -798,12 +798,17 @@ function runStream(req, portsFile, context) {
798
798
  const { command, args, allowNon0Status, output } = part;
799
799
  /** @type {'ignore' | 'inherit'} } */
800
800
  let letPrint = quiet ? "ignore" : "inherit";
801
- let stderrKind = kind === "none" ? letPrint : "pipe";
801
+ let stderrKind = kind === "none" && isLastProcess ? letPrint : "pipe";
802
802
  if (output === "Ignore") {
803
803
  stderrKind = "ignore";
804
804
  } else if (output === "Print") {
805
805
  stderrKind = letPrint;
806
806
  }
807
+
808
+ const stdoutKind =
809
+ (output === "InsteadOfStdout" || kind === "none") && isLastProcess
810
+ ? letPrint
811
+ : "pipe";
807
812
  /**
808
813
  * @type {import('node:child_process').ChildProcess}
809
814
  */
@@ -811,9 +816,7 @@ function runStream(req, portsFile, context) {
811
816
  stdio: [
812
817
  "pipe",
813
818
  // if we are capturing stderr instead of stdout, print out stdout with `inherit`
814
- output === "InsteadOfStdout" || kind === "none"
815
- ? letPrint
816
- : "pipe",
819
+ stdoutKind,
817
820
  stderrKind,
818
821
  ],
819
822
  cwd: cwd,
@@ -10,10 +10,10 @@
10
10
  "elm-codegen": "^0.5.3",
11
11
  "elm-optimize-level-2": "^0.3.5",
12
12
  "elm-pages": "^3.0.14",
13
- "elm-review": "^2.11.1",
13
+ "elm-review": "^2.12.0",
14
14
  "elm-tooling": "^1.15.1",
15
15
  "lamdera": "^0.19.1-1.2.1-1",
16
- "vite": "^5.2.10"
16
+ "vite": "^5.3.3"
17
17
  },
18
18
  "dependencies": {
19
19
  "@netlify/functions": "^2.4.1"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elm-pages",
3
3
  "type": "module",
4
- "version": "3.0.14",
4
+ "version": "3.0.16",
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.",
@@ -60,7 +60,7 @@
60
60
  "cypress": "^13.6.2",
61
61
  "elm-codegen": "^0.5.0",
62
62
  "elm-optimize-level-2": "^0.3.5",
63
- "elm-review": "^2.10.3",
63
+ "elm-review": "^2.12.0",
64
64
  "elm-test": "^0.19.1-revision12",
65
65
  "elm-tooling": "^1.15.0",
66
66
  "elm-verify-examples": "^5.3.0",