Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.2] - 2026-07-16

### Fixed

- Pin `typescript` to `~5.3.3` to keep it compatible with the bundled `@typescript-eslint/parser@5.x`. TypeScript 7.0 was being pulled in transitively on fresh installs, causing every lint run to crash with `TypeError: Failed to load parser '@typescript-eslint/parser' ... Cannot read properties of undefined (reading 'BarBarToken')`. This broke linting across all consuming projects with no code changes on their end.

## [2.2.1] - 2025-03-13

- Switch error count check in FileLinter.js to properly check for any error reports
Expand Down
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "springroll-automated-qa",
"version": "2.2.1",
"version": "2.2.2",
"description": "An automated QA tool for SpringRoll games",
"main": "src/index.js",
"bin": {
Expand Down Expand Up @@ -39,6 +39,7 @@
"music-metadata": "^7.9.1",
"shell-quote": "^1.7.4",
"springroll-container": "^1.1.3",
"typescript": "~5.3.3",
"webpack": "^5.75.0"
},
"devDependencies": {
Expand Down
Loading