Skip to content

Releases: SpringRoll/Automated-QA

2.2.1

Choose a tag to compare

@902seanryan 902seanryan released this 13 Mar 13:16
3635fba
  • Switch error count check in FileLinter.js to properly check for any error reports

lock-eslint-version

Choose a tag to compare

@jeremymccurdy-redspace jeremymccurdy-redspace released this 05 Nov 14:03
406ba9a

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

Choose a tag to compare

@TensAndTwenties TensAndTwenties released this 16 Oct 17:20
9227bda
  • Changes to QA linter rules to error on loose equalities, instances of var, and for...of loops
  • Updates to use Node 20 as default
  • New MIT license text

2.1.1

Choose a tag to compare

@TensAndTwenties TensAndTwenties released this 03 May 18:36
8b456ac
  • Bumped dependencies recommended by dependabot

2.1.0

Choose a tag to compare

@selenaqian selenaqian released this 07 Mar 16:13
2f1a11e
  • bumped nvmrc to 18.19.1
  • Added node 18 support

2.0.0

Choose a tag to compare

@902seanryan 902seanryan released this 27 Feb 18:45
40a89d5
  • bumped nvmrc to 16.17.1
  • Added node 16 support
  • Removed node Node <12 support

1.3.0

Choose a tag to compare

@902seanryan 902seanryan released this 15 Feb 18:46
  • Audio Bitrate check
  • Added new comment syntax rules to eslint rules

1.2.1

Choose a tag to compare

@902seanryan 902seanryan released this 15 Sep 18:11
1fdf295
  • update scanAudio so that file names with spaces don't break the scan
  • update version of music-metadata to fix an error when scanning some files. explanation here

1.2.0

Choose a tag to compare

@902seanryan 902seanryan released this 01 Feb 20:32
1d545fd

-Add loudness check for audio assets
-update CHANGELOG to account for previous releases

1.1.0

Choose a tag to compare

@chipbell4 chipbell4 released this 10 Sep 20:07
c8fc655

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.