From 2e600664f187a651b50298aa60b42d17b17a2830 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:47:39 +0000 Subject: [PATCH 1/2] chore(package.json): bump engines to node >= 16.0.0 --- .../software/amazon/smithy/typescript/codegen/base-package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json index 0f450af8ec3..c07ecdbd51a 100644 --- a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json +++ b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json @@ -26,7 +26,7 @@ "typescript": "~4.9.5" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" }, "typesVersions": { "<4.0": { From f906219b7d429efb13ac68d62a0b4589187fafd3 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:23:39 -0700 Subject: [PATCH 2/2] Update README with Node.js versions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2db81c5fedb..56485b8d75f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ For Client SDK code generation, the `typescript-client-codegen` plugin provides a framework for generating extensible TypeScript clients that can support multiple JavaScript platforms, including Node.js, Browser, and React-Native. See [the section on generating a client to see how to get started](#generating-a-client), or [the `typescript-client-codegen` documentation](#client-sdk-code-generation-typescript-client-codegen-plugin). -> Note: Node.js support includes versions >= 14, and is subject to change. +> Note: Node.js support includes versions >= 16, and is subject to change. For Server SDK code generation, the `typescript-server-codegen` plugin provides a framework for generating server scaffolding at a higher level of abstraction and with type safety. More documentation can be found at in [the `typescript-server-codegen` documentation](#server-sdk-code-generation-typescript-server-codegen-plugin), or [smithy.io](https://smithy.io/2.0/ts-ssdk/index.html).