-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Expose CORE_PLUGIN_PREFIX as a constant
- Loading branch information
1 parent
aaa0b01
commit da3ba50
Showing
4 changed files
with
28 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* DO NOT USE THIS IN YOUR OWN PLUGINS | ||
* | ||
* The prefix for ContractCase core plugin names. Plugin names with | ||
* this prefix are treated as always loaded, log less debug information, | ||
* and any errors in loading are treated as core crashes rather than user | ||
* configuration errors. | ||
* | ||
* Other than the way logs and load failures are treated, there's no special | ||
* treatment given to core plugins, | ||
*/ | ||
export const CORE_PLUGIN_PREFIX = '_CaseCore:' as const; |
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