-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/no-null-postman-header-value
- Loading branch information
Showing
6 changed files
with
23 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
import Environment from '../../src/environments/node/Environment' | ||
|
||
import SwaggerLoader from '../../src/loaders/swagger/Loader' | ||
import RAMLLoader from '../../src/loaders/raml/Loader' | ||
import PostmanV2Loader from '../../src/loaders/postman/v2.0/Loader' | ||
import RAMLV1Loader from '../../src/loaders/raml/Loader' | ||
import PostmanCollectionV2Loader from '../../src/loaders/postman/v2.0/Loader' | ||
|
||
import SwaggerV2Parser from '../../src/parsers/swagger/v2.0/Parser' | ||
import RAMLV1Parser from '../../src/parsers/raml/v1.0/Parser' | ||
import PostmanV2Parser from '../../src/loaders/postman/v2.0/Parser' | ||
import PostmanCollectionV2Parser from '../../src/parsers/postman/v2.0/Parser' | ||
|
||
import SwaggerV2Serializer from '../../src/serializers/swagger/v2.0/Serializer' | ||
import RAMLV1Serializer from '../../src/serializers/raml/v1.0/Serializer' | ||
import PostmanV2Serializer from '../../src/serializers/postman/v2.0/Serializer' | ||
import PostmanCollectionV2Serializer from '../../src/serializers/postman/v2.0/Serializer' | ||
import InternalSerializer from '../../src/serializers/internal/Serializer' | ||
|
||
export const loaders = [ | ||
SwaggerLoader, | ||
RAMLLoader, | ||
PostmanV2Loader | ||
PostmanCollectionV2Loader | ||
] | ||
|
||
export const parsers = [ | ||
SwaggerV2Parser, | ||
RAMLV1Parser, | ||
PostmanV2Parser | ||
PostmanCollectionV2Parser | ||
] | ||
|
||
export const serializers = [ | ||
SwaggerV2Serializer, | ||
RAMLV1Serializer, | ||
InternalSerializer, | ||
PostmanV2Serializer | ||
PostmanCollectionV2Serializer | ||
] | ||
|
||
export const environment = Environment |
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