-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
start changing the default scope from Core to Base in some places
- This is a proof of concept showing this can be done incrementally directory per directory.
- Loading branch information
Showing
10 changed files
with
38 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
(library | ||
(name bopkit) | ||
(public_name bopkit.bopkit) | ||
(flags -w +a-4-40-42-44-66 -warn-error +a -open Core) | ||
(libraries appendable-list bit_utils core error_log parsing_utils pp) | ||
(flags -w +a-4-40-42-44-66 -warn-error +a -open Base) | ||
(libraries appendable-list base bit_utils error_log parsing_utils pp) | ||
(preprocess | ||
(pps ppx_jane ppx_js_style -check-doc-comments))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
(library | ||
(name bopkit_test) | ||
(flags -w +a-4-40-41-42-44-66 -warn-error +a -open Core -open Bopkit) | ||
(libraries core bopkit pp) | ||
(flags | ||
-w | ||
+a-4-40-41-42-44-66 | ||
-warn-error | ||
+a | ||
-open | ||
Base | ||
-open | ||
Stdio | ||
-open | ||
Bopkit) | ||
(libraries base bopkit pp stdio) | ||
(inline_tests) | ||
(preprocess | ||
(pps ppx_jane ppx_js_style -check-doc-comments))) |