-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1211 from Microsoft/octogonz/ae-remove-logger
[api-extractor] Remove ILogger and instead expose console output as ExtractorMessage objects
- Loading branch information
Showing
18 changed files
with
469 additions
and
271 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,50 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
|
||
/** | ||
* Unique identifiers for console messages reported by API Extractor. | ||
* | ||
* @remarks | ||
* | ||
* These strings are possible values for the {@link ExtractorMessage.messageId} property | ||
* when the `ExtractorMessage.category` is {@link ExtractorMessageCategory.Console}. | ||
* | ||
* @public | ||
*/ | ||
export const enum ConsoleMessageId { | ||
/** | ||
* "'Found metadata in ___" | ||
*/ | ||
FoundTSDocMetadata = 'console-found-tsdoc-metadata', | ||
|
||
/** | ||
* "Writing: ___" | ||
*/ | ||
WritingDocModelFile = 'console-writing-doc-model-file', | ||
|
||
/** | ||
* "Writing package typings: ___" | ||
*/ | ||
WritingDtsRollup = 'console-writing-dts-rollup', | ||
|
||
/** | ||
* "You have changed the public API signature for this project. Please overwrite ___ with a | ||
* copy of ___ and then request an API review. See the Git repository README.md for more info." | ||
*/ | ||
ApiReportNotCopied = 'console-api-report-not-copied', | ||
|
||
/** | ||
* "You have changed the public API signature for this project. Updating ___" | ||
*/ | ||
ApiReportCopied = 'console-api-report-copied', | ||
|
||
/** | ||
* "The API signature is up to date: ___" | ||
*/ | ||
ApiReportUnchanged = 'console-api-report-unchanged', | ||
|
||
/** | ||
* "The API review file has not been set up. Do this by copying ___ to ___ and committing it." | ||
*/ | ||
ApiReportMissing = 'console-api-report-missing' | ||
} |
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
Oops, something went wrong.