@@ -12,22 +12,22 @@ let nodeVersion =
12
12
13
13
let ignoreRuntimeTests = [
14
14
(
15
- // Ignore some tests require Node.js v20+
15
+ // Ignore tests that require Node.js v20+
16
16
20 ,
17
- ["Stdlib.Array. toReversed" , "Stdlib.Array .toSorted" ],
17
+ ["Stdlib_Array. toReversed" , "Stdlib_Array .toSorted" ],
18
18
),
19
19
(
20
- // Ignore some tests require Node.js v22+
20
+ // Ignore tests that require Node.js v22+
21
21
22 ,
22
22
[
23
- "Stdlib.Promise .withResolvers" ,
24
- "Stdlib.Set .union" ,
25
- "Stdlib.Set .isSupersetOf" ,
26
- "Stdlib.Set .isSubsetOf" ,
27
- "Stdlib.Set .isDisjointFrom" ,
28
- "Stdlib.Set .intersection" ,
29
- "Stdlib.Set .symmetricDifference" ,
30
- "Stdlib.Set .difference" ,
23
+ "Stdlib_Promise .withResolvers" ,
24
+ "Stdlib_Set .union" ,
25
+ "Stdlib_Set .isSupersetOf" ,
26
+ "Stdlib_Set .isSubsetOf" ,
27
+ "Stdlib_Set .isDisjointFrom" ,
28
+ "Stdlib_Set .intersection" ,
29
+ "Stdlib_Set .symmetricDifference" ,
30
+ "Stdlib_Set .difference" ,
31
31
],
32
32
),
33
33
]
@@ -65,11 +65,7 @@ let extractExamples = async () => {
65
65
let docFiles = files -> Array .filter (f =>
66
66
switch f {
67
67
// Ignore Js modules and RescriptTools for now
68
- // Avoid Stdlib modules showing up as both "Stdlib_X" and "Stdlib.X"
69
- | f
70
- if f -> String .startsWith ("Js" ) ||
71
- f -> String .startsWith ("RescriptTools" ) ||
72
- f -> String .startsWith ("Stdlib_" ) => false
68
+ | f if f -> String .startsWith ("Js" ) || f -> String .startsWith ("RescriptTools" ) => false
73
69
| f if f -> String .endsWith (".resi" ) => true
74
70
| f if f -> String .endsWith (".res" ) && ! (files -> Array .includes (f ++ "i" )) => true
75
71
| _ => false
0 commit comments