Skip to content

Commit

Permalink
Feature/typescript 5.1 (#616)
Browse files Browse the repository at this point in the history
* support TypeScript 5.1

* update CHANGELOG

* TypeScript 5.1 supports Node.js 14

* fix workflows

* fix workflows 2
  • Loading branch information
shimataro committed Jun 4, 2023
1 parent a84dcad commit 6d31f31
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/examples-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,15 @@ jobs:
- "18.0.0"
typescript:
- "5.0"
- "5.1"
exclude:
# TypeScript>=5.1 uses "Nullish coalescing operator" internally, that is supported as of Node.js v14; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing
- typescript: "5.1"
nodejs: "8.3.0"
- typescript: "5.1"
nodejs: "10.0.0"
- typescript: "5.1"
nodejs: "12.0.0"
fail-fast: false
uses: "./.github/workflows/reusable-typescript.yml"
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/examples-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,15 @@ jobs:
- "18.0.0"
typescript:
- "5.0"
- "5.1"
exclude:
# TypeScript>=5.1 uses "Nullish coalescing operator" internally, that is supported as of Node.js v14; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing
- typescript: "5.1"
nodejs: "8.3.0"
- typescript: "5.1"
nodejs: "10.0.0"
- typescript: "5.1"
nodejs: "12.0.0"
fail-fast: false
uses: "./.github/workflows/reusable-typescript.yml"
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/examples-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,15 @@ jobs:
- "18.0.0"
typescript:
- "5.0"
- "5.1"
exclude:
# TypeScript>=5.1 uses "Nullish coalescing operator" internally, that is supported as of Node.js v14; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing
- typescript: "5.1"
nodejs: "8.3.0"
- typescript: "5.1"
nodejs: "10.0.0"
- typescript: "5.1"
nodejs: "12.0.0"
fail-fast: false
uses: "./.github/workflows/reusable-typescript.yml"
with:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Others

* support TypeScript 5
* support TypeScript 5.0-5.1
* support Bun 0.1.11, 0.2.0, 0.4.0, 0.5.0
* support Deno 1.29, 1.30, 1.31, 1.32
* drop CI on macOS Catalina 10.15, and Ubuntu 18.04
Expand Down

0 comments on commit 6d31f31

Please sign in to comment.