-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(reference): use API Extractor for TypeScript rollup (#4538)
Refs #4382
- Loading branch information
Showing
37 changed files
with
203 additions
and
25 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
packages/apidom-reference/config/api-extractor/api-extractor.json
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,4 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
"extends": "../../../../api-extractor.json" | ||
} |
This file was deleted.
Oops, something went wrong.
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
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class BundleError extends ApiDOMError {} | ||
|
||
export default BundleError; |
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class DereferenceError extends ApiDOMError {} | ||
|
||
export default DereferenceError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/EvaluationElementIdError.ts
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class EvaluationElementIdError extends ApiDOMError {} | ||
|
||
export default EvaluationElementIdError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/EvaluationJsonSchema$anchorError.ts
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,5 +1,8 @@ | ||
import JsonSchema$anchorError from './JsonSchema$anchorError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class EvaluationJsonSchema$anchorError extends JsonSchema$anchorError {} | ||
|
||
export default EvaluationJsonSchema$anchorError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/EvaluationJsonSchemaUriError.ts
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,5 +1,8 @@ | ||
import JsonSchemaUriError from './JsonSchemaUriError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class EvaluationJsonSchemaUriError extends JsonSchemaUriError {} | ||
|
||
export default EvaluationJsonSchemaUriError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/InvalidJsonSchema$anchorError.ts
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
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/JsonSchema$anchorError.ts
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class JsonSchema$anchorError extends ApiDOMError {} | ||
|
||
export default JsonSchema$anchorError; |
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class JsonSchemaUriError extends ApiDOMError {} | ||
|
||
export default JsonSchemaUriError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/MaximumBundleDepthError.ts
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,5 +1,8 @@ | ||
import BundleError from './BundleError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class MaximumBundleDepthError extends BundleError {} | ||
|
||
export default MaximumBundleDepthError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/MaximumDereferenceDepthError.ts
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,5 +1,8 @@ | ||
import DereferenceError from './DereferenceError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class MaximumDereferenceDepthError extends DereferenceError {} | ||
|
||
export default MaximumDereferenceDepthError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/MaximumResolveDepthError.ts
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,5 +1,8 @@ | ||
import ResolveError from './ResolveError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class MaximumResolveDepthError extends ResolveError {} | ||
|
||
export default MaximumResolveDepthError; |
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class ParseError extends ApiDOMError {} | ||
|
||
export default ParseError; |
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,5 +1,8 @@ | ||
import ParseError from './ParseError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class ParserError extends ParseError {} | ||
|
||
export default ParserError; |
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,5 +1,8 @@ | ||
import { ApiDOMError } from '@swagger-api/apidom-error'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class ResolveError extends ApiDOMError {} | ||
|
||
export default ResolveError; |
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,5 +1,8 @@ | ||
import ResolveError from './ResolveError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class ResolverError extends ResolveError {} | ||
|
||
export default ResolverError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/UnmatchedBundleStrategyError.ts
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,5 +1,8 @@ | ||
import BundleError from './BundleError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class UnmatchedBundleStrategyError extends BundleError {} | ||
|
||
export default UnmatchedBundleStrategyError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/UnmatchedDereferenceStrategyError.ts
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,5 +1,8 @@ | ||
import DereferenceError from './DereferenceError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class UnmatchedDereferenceStrategyError extends DereferenceError {} | ||
|
||
export default UnmatchedDereferenceStrategyError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/UnmatchedResolveStrategyError.ts
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,5 +1,8 @@ | ||
import ResolveError from './ResolveError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class UnmatchedResolveStrategyError extends ResolveError {} | ||
|
||
export default UnmatchedResolveStrategyError; |
3 changes: 3 additions & 0 deletions
3
packages/apidom-reference/src/errors/UnmatchedResolverError.ts
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,5 +1,8 @@ | ||
import ResolverError from './ResolverError.ts'; | ||
|
||
/** | ||
* @public | ||
*/ | ||
class UnmatchedResolverError extends ResolverError {} | ||
|
||
export default UnmatchedResolverError; |
Oops, something went wrong.