File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ plugins {
28
28
29
29
allprojects {
30
30
group = " software.amazon.smithy.typescript"
31
- version = " 0.34.0 "
31
+ version = " 0.34.1 "
32
32
}
33
33
34
34
// The root project doesn't produce a JAR.
Original file line number Diff line number Diff line change @@ -635,7 +635,8 @@ public static RequiredMemberMode fromString(String s) {
635
635
636
636
public enum PackageManager {
637
637
YARN ("yarn" ),
638
- NPM ("npm" );
638
+ NPM ("npm" ),
639
+ PNPM ("pnpm" );
639
640
640
641
private final String command ;
641
642
@@ -654,6 +655,9 @@ public static PackageManager fromString(String s) {
654
655
if ("npm" .equals (s )) {
655
656
return NPM ;
656
657
}
658
+ if ("pnpm" .equals (s )) {
659
+ return PNPM ;
660
+ }
657
661
throw new CodegenException (String .format ("Unsupported package manager: %s" , s ));
658
662
}
659
663
}
You can’t perform that action at this time.
0 commit comments