-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade ts to 3.8 to use export type syntax * update prettier to 2.4.2 to avoid conflict with the local version in rn * fix prettier conflict with nohoist * fix analytics jest test config by esModuleInterop * add ts3.7 backward compatibility by typesVersions field Co-authored-by: Sam Martinez <samlmar@amazon.com> Co-authored-by: Ashika <35131273+ashika01@users.noreply.github.com>
- Loading branch information
1 parent
fbe1f2e
commit d55d797
Showing
7 changed files
with
51 additions
and
56 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 was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
/* | ||
* Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with | ||
* the License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
* and limitations under the License. | ||
*/ | ||
|
||
/** | ||
* This exports from the types directory is a temporary workaround, since Amplify CLI currently | ||
* generates code that relies on this import path https://github.com/aws-amplify/amplify-cli/issues/3863 | ||
* This will be removed in future release when CLI and customers moves to recommeneded import styles. | ||
*/ | ||
export { | ||
graphqlOperation, | ||
GraphQLAuthError, | ||
GraphQLResult, | ||
GRAPHQL_AUTH_MODE, | ||
} from '@aws-amplify/api-graphql'; | ||
/* | ||
* Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with | ||
* the License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
* and limitations under the License. | ||
*/ | ||
|
||
/** | ||
* This exports from the types directory is a temporary workaround, since Amplify CLI currently | ||
* generates code that relies on this import path https://github.com/aws-amplify/amplify-cli/issues/3863 | ||
* This will be removed in future release when CLI and customers moves to recommeneded import styles. | ||
*/ | ||
export { | ||
graphqlOperation, | ||
GraphQLAuthError, | ||
GraphQLResult, | ||
GRAPHQL_AUTH_MODE, | ||
} from '@aws-amplify/api-graphql'; |