We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 282c5fc commit 25c8c45Copy full SHA for 25c8c45
scripts/ninja.js
@@ -1026,14 +1026,16 @@ ${ninjaQuickBuidList([
1026
(x) =>
1027
x.startsWith("js") &&
1028
(x.endsWith(".ml") || x.endsWith(".mli")) &&
1029
- !x.includes(".cppo")
+ !x.includes(".cppo") &&
1030
+ !x.includes("#")
1031
);
1032
var othersFiles = othersDirFiles.filter(
1033
1034
!x.startsWith("js") &&
1035
x !== "belt.ml" &&
1036
x !== "node.ml" &&
1037
1038
+ !x.includes("#") &&
1039
!x.includes(".cppo") // we have node ..
1040
1041
var jsTargets = collectTarget(jsPrefixSourceFiles);
0 commit comments