|
1 | | -Cleaned 0/110 |
2 | | -Parsed 4 source files |
3 | | -Compiled 5 modules |
| 1 | +Cleaned 1/115 |
| 2 | +Parsed 0 source files |
| 3 | +Compiled 1 modules |
4 | 4 |
|
5 | | - [1;33mWarning number 3[0m |
6 | | - [36m/packages/dep02/src/Array.res[0m:[2m6:16-33[0m |
7 | | - |
8 | | - 4 [2m│[0m let at = get |
9 | | - 5 [2m│[0m |
10 | | - [1;33m6[0m [2m│[0m let includes = [1;33mJs.Array2.includes[0m |
11 | | - 7 [2m│[0m |
12 | | - 8 [2m│[0m let head = t => t->get(0) |
13 | | - |
14 | | - deprecated: Js.Array2.includes |
15 | | - Use `Array.includes` instead. |
16 | | - |
17 | | - |
18 | | - [1;33mWarning number 3[0m |
19 | | - [36m/packages/dep02/src/Array.res[0m:[2m24:12-25[0m |
20 | | - |
21 | | - 22 [2m│[0m let flatMap = (t, fn) => t->map(fn)->concatMany |
22 | | - 23 [2m│[0m |
23 | | - [1;33m24[0m [2m│[0m let mapi = [1;33mJs.Array2.mapi[0m |
24 | | - 25 [2m│[0m |
25 | | - 26 [2m│[0m let flatten = t => t->flatMap(x => x) |
26 | | - |
27 | | - deprecated: Js.Array2.mapi |
28 | | - Use `Array.mapWithIndex` instead. |
29 | | - |
30 | | - |
31 | | - [1;33mWarning number 3[0m |
32 | | - [36m/packages/dep02/src/Array.res[0m:[2m32:14-29[0m |
33 | | - |
34 | | - 30 [2m│[0m let findIndex = (t, fn) => Js.Array.findIndex(fn, t) |
35 | | - 31 [2m│[0m |
36 | | - [1;33m32[0m [2m│[0m let filter = [1;33mJs.Array2.filter[0m |
37 | | - 33 [2m│[0m |
38 | | - 34 [2m│[0m let reject = (t, fn) => t->filter(el => !fn(el)) |
39 | | - |
40 | | - deprecated: Js.Array2.filter |
41 | | - Use `Array.filter` instead. |
42 | | - |
43 | | - |
44 | | - [1;33mWarning number 3[0m |
45 | | - [36m/packages/dep02/src/Array.res[0m:[2m48:18-35[0m |
46 | | - |
47 | | - 46 [2m│[0m |
48 | | - 47 [2m│[0m module String = { |
49 | | - [1;33m48[0m [2m│[0m let joinWith = [1;33mJs.Array2.joinWith[0m |
50 | | - 49 [2m│[0m let join = joinWith(_, "") |
51 | | - 50 [2m│[0m } |
52 | | - |
53 | | - deprecated: Js.Array2.joinWith |
54 | | - Use `Array.joinUnsafe` instead. |
55 | | - |
56 | | - |
57 | | - [1;33mWarning number 3[0m |
58 | | - [36m/packages/new-namespace/src/Other_module.res[0m:[2m1:17-22[0m |
59 | | - |
60 | | - [1;33m1[0m [2m│[0m let bla = () => [1;33mJs.log[0m("bla") |
61 | | - 2 [2m│[0m |
| 5 | +The field 'bs-dependencies' found in the package config of '@testrepo/deprecated-config' is deprecated and will be removed in a future version. |
| 6 | +Use 'dependencies' instead. |
62 | 7 |
|
63 | | - deprecated: Js.log |
64 | | - Use `Console.log` instead. |
| 8 | +The field 'bs-dev-dependencies' found in the package config of '@testrepo/deprecated-config' is deprecated and will be removed in a future version. |
| 9 | +Use 'dev-dependencies' instead. |
65 | 10 |
|
| 11 | +The field 'bsc-flags' found in the package config of '@testrepo/deprecated-config' is deprecated and will be removed in a future version. |
| 12 | +Use 'compiler-flags' instead. |
66 | 13 |
|
67 | | - [1;33mWarning number 3[0m |
68 | | - [36m/packages/dep01/src/Dep01.res[0m:[2m2:9-14[0m |
| 14 | + [1;31mWe've found a bug for you![0m |
| 15 | + [36m/packages/dep01/src/Dep01.res[0m:[2m3:9-17[0m |
69 | 16 |
|
70 | 17 | 1 [2m│[0m let log = () => { |
71 | | - [1;33m2[0m [2m│[0m [1;33mJs.log[0m("02") |
72 | | - 3 [2m│[0m Dep02.log() |
| 18 | + 2 [2m│[0m Js.log("02") |
| 19 | + [1;31m3[0m [2m│[0m [1;31mDep02.log[0m() |
73 | 20 | 4 [2m│[0m } |
74 | | - |
75 | | - deprecated: Js.log |
76 | | - Use `Console.log` instead. |
77 | | - |
78 | | - |
79 | | - [1;33mWarning number 3[0m |
80 | | - [36m/packages/main/src/Main.res[0m:[2m1:1-6[0m |
81 | | - |
82 | | - [1;33m1[0m [2m│[0m [1;33mJs.log[0m("01") |
83 | | - 2 [2m│[0m Dep01.log() |
84 | | - 3 [2m│[0m |
85 | | - |
86 | | - deprecated: Js.log |
87 | | - Use `Console.log` instead. |
88 | | - |
89 | | - |
90 | | - [1;33mWarning number 3[0m |
91 | | - [36m/packages/main/src/Main.res[0m:[2m4:1-6[0m |
92 | | - |
93 | | - 2 [2m│[0m Dep01.log() |
94 | | - 3 [2m│[0m |
95 | | - [1;33m4[0m [2m│[0m [1;33mJs.log[0m(InternalDep.value) |
96 | 21 | 5 [2m│[0m |
97 | | - 6 [2m│[0m module Array = Belt.Array |
98 | | - |
99 | | - deprecated: Js.log |
100 | | - Use `Console.log` instead. |
101 | | - |
102 | 22 |
|
| 23 | + [1;33mThe module or file Dep02 can't be found.[0m |
| 24 | + - If it's a third-party dependency: |
| 25 | + - Did you add it to the "dependencies" or "dev-dependencies" in rescript.json? |
| 26 | + - Did you include the file's directory to the "sources" in rescript.json? |
| 27 | + |
103 | 28 |
|
104 | | -The field 'bs-dependencies' found in the package config of '@testrepo/deprecated-config' is deprecated and will be removed in a future version. |
105 | | -Use 'dependencies' instead. |
106 | | - |
107 | | -The field 'bs-dev-dependencies' found in the package config of '@testrepo/deprecated-config' is deprecated and will be removed in a future version. |
108 | | -Use 'dev-dependencies' instead. |
109 | 29 |
|
110 | | -The field 'bsc-flags' found in the package config of '@testrepo/deprecated-config' is deprecated and will be removed in a future version. |
111 | | -Use 'compiler-flags' instead. |
| 30 | +Incremental build failed. Error: [2K Failed to Compile. See Errors Above |
|
0 commit comments