Skip to content

Commit

Permalink
refactor: remove unsupported dotnet, dotnet core runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Aug 31, 2022
1 parent 013cc6f commit b967b37
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config/supportedRuntimes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html

// .NET CORE
export const supportedDotnetcore = new Set([
// 'dotnet6',
// 'dotnetcore3.1',
])
// export const supportedDotnetcore = new Set([
// 'dotnet6',
// 'dotnetcore3.1',
// ])

// GO
export const supportedGo = new Set(['go1.x'])
Expand Down Expand Up @@ -37,7 +37,7 @@ export const supportedRuby = new Set(['ruby2.7'])
// deprecated runtimes
// https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html
export const supportedRuntimes = new Set([
...supportedDotnetcore,
// ...supportedDotnetcore,
...supportedGo,
...supportedJava,
...supportedNodejs,
Expand Down

0 comments on commit b967b37

Please sign in to comment.