Releases: SpringRoll/Automated-QA
Releases · SpringRoll/Automated-QA
lock-eslint-version
This is a special release that allows Automated QA to function on projects running Node versions under 14. Please use the standard release unless you are implementing this on an old game.
2.2.0
2.1.1
- Bumped dependencies recommended by dependabot
2.1.0
- bumped nvmrc to 18.19.1
- Added node 18 support
2.0.0
- bumped nvmrc to 16.17.1
- Added node 16 support
- Removed node Node <12 support
1.3.0
- Audio Bitrate check
- Added new comment syntax rules to eslint rules
1.2.1
1.2.0
-Add loudness check for audio assets
-update CHANGELOG to account for previous releases
1.1.0
Adding node require support. Now, you can
const { assetScanner, fileLinter, accessibilityChecker } = require('springroll-automated-qa');
Promise.all([
assetScanner.run('deploy/'),
fileLinter.run('src/'),
accessibilityChecker.run('deploy/'),
]);
rather than relying only on the CLI tools.