Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3197d63
Update some dependencies and corresponding test updates
limzykenneth Dec 25, 2025
5cf37be
Re-enable webgpu test
limzykenneth Dec 26, 2025
cbb465a
Removed not needed all contributors dependency
limzykenneth Dec 26, 2025
9a814e7
Use type module
limzykenneth Dec 26, 2025
178b568
Use ES6 import in visual report script
limzykenneth Dec 25, 2025
76d90e1
Update CI node version
limzykenneth Dec 25, 2025
02c97ed
Include ES version to tsc call
limzykenneth Dec 28, 2025
d9fa706
Include DOM types in tsc check
limzykenneth Dec 28, 2025
35a8e66
Provide factory function to file-saver mock
limzykenneth Dec 28, 2025
6320af2
Try waiting longer for test to clear
limzykenneth Dec 28, 2025
a2ca6ad
Remove HTML tags from reference examples in two modules
limzykenneth Dec 30, 2025
12a5ee0
Remove HTML tags from text module reference examples
limzykenneth Dec 30, 2025
0af140e
Remove HTML tags from the rest of the modules reference examples
limzykenneth Dec 30, 2025
5c5184a
Merge branch 'dev-2.0' into dependencies-update
limzykenneth Jan 16, 2026
726a4b9
Update test font file path
limzykenneth Jan 17, 2026
7079586
Remove file-saver dependency
limzykenneth Jan 17, 2026
b212b28
Merge branch 'dev-2.0' into dependencies-update
limzykenneth Jan 30, 2026
3fce918
Merge branch 'dev-2.0' into dependencies-update
limzykenneth Jan 30, 2026
52c0dfc
Fix test file path
limzykenneth Feb 1, 2026
9646e8e
Fix another test file path
limzykenneth Feb 1, 2026
6ab7ddf
Merge branch 'dev-2.0' into dependencies-update
limzykenneth Feb 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v1
with:
node-version: 20.x
node-version: 22.x
- name: Get node modules
run: npm ci
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 22.x

- name: Verify Chrome (Ubuntu)
if: matrix.os == 'ubuntu-latest' && matrix.browser == 'chrome'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-workflow-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
- name: Get semver info
id: semver
uses: akshens/semver-tag@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
- name: Get semver info
id: semver
uses: akshens/semver-tag@v4
Expand Down
Loading
Loading