Skip to content

Commit bce84d8

Browse files
authored
fix(codegen): run aws protocols after smithy protocols (#7058)
1 parent 775c711 commit bce84d8

File tree

1 file changed

+7
-0
lines changed
  • codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen

1 file changed

+7
-0
lines changed

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddProtocols.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@
2727
@SmithyInternalApi
2828
public class AddProtocols implements TypeScriptIntegration {
2929

30+
@Override
31+
public List<String> runAfter() {
32+
return List.of(
33+
software.amazon.smithy.typescript.codegen.protocols.AddProtocols.class.getCanonicalName()
34+
);
35+
}
36+
3037
/**
3138
* This order differs from the base protocol selection specification
3239
* in that for JavaScript runtimes, JSON-based protocols have higher default priority than CBOR-based.

0 commit comments

Comments
 (0)