Skip to content

Commit

Permalink
Merge pull request #74 from hylickipiotr/ts-5-4
Browse files Browse the repository at this point in the history
feat: Add support for TypeScript 5.4
  • Loading branch information
LukaszNowakPL authored Jun 17, 2024
2 parents 99a69af + 81b64b1 commit 51d1a6d
Show file tree
Hide file tree
Showing 6 changed files with 1,949 additions and 2,324 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 20
- run: npm ci
- run: npm run build
- run: npm test
- name: Archive build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-14.x
name: build-20.x
path: lib

release:
Expand All @@ -32,18 +32,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-14.x
name: build-20.x
path: lib
- name: Release
run: npm publish
Expand Down
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx pretty-quick --staged
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ If you're limited to historical versions of TypeScript, you should install a cor
| 0.11.0 | 4.9 |
| 0.12.0 | 5.0 |
| 0.13.0 | 5.1 |
| 0.14.0 - x | \>=5.2 |
| 0.14.0 | 5.2 - 5.3 |
| 0.15.0 | \>=5.4 |


## Configuration

Expand Down
5 changes: 0 additions & 5 deletions husky.config.js

This file was deleted.

Loading

0 comments on commit 51d1a6d

Please sign in to comment.