Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/blue-foxes-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"aws-sdk-js-codemod": patch
---

Disable DocumentClient deep import unsupported comments

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

27 changes: 0 additions & 27 deletions src/transforms/v2-to-v3/apis/addNotSupportedComments.ts

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/transforms/v2-to-v3/apis/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
export * from "./addEmptyObjectForUndefined";
export * from "./addNotSupportedClientComments";
export * from "./addNotSupportedComments";
export * from "./getClientIdentifiersRecord";
export * from "./getClientWaiterStates";
export * from "./getCommandName";
Expand Down
3 changes: 0 additions & 3 deletions src/transforms/v2-to-v3/transformer.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { API, FileInfo } from "jscodeshift";

import {
addNotSupportedComments,
addNotSupportedClientComments,
removePromiseCalls,
replaceWaiterApi,
Expand Down Expand Up @@ -49,8 +48,6 @@ const transformer = async (file: FileInfo, api: API) => {
return file.source;
}

addNotSupportedComments(j, source, importType);

const v2GlobalName = getGlobalNameFromModule(j, source);
const v2ClientNamesRecord = getClientNamesRecord(j, source, importType);

Expand Down