Skip to content

Releases: SpringRoll/Automated-QA

2.2.1

13 Mar 13:16
3635fba

Choose a tag to compare

  • Switch error count check in FileLinter.js to properly check for any error reports

lock-eslint-version

05 Nov 14:03
406ba9a

Choose a tag to compare

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

16 Oct 17:20
9227bda

Choose a tag to compare

  • 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

03 May 18:36
8b456ac

Choose a tag to compare

  • Bumped dependencies recommended by dependabot

2.1.0

07 Mar 16:13
2f1a11e

Choose a tag to compare

  • bumped nvmrc to 18.19.1
  • Added node 18 support

2.0.0

27 Feb 18:45
40a89d5

Choose a tag to compare

  • bumped nvmrc to 16.17.1
  • Added node 16 support
  • Removed node Node <12 support

1.3.0

15 Feb 18:46

Choose a tag to compare

  • Audio Bitrate check
  • Added new comment syntax rules to eslint rules

1.2.1

15 Sep 18:11
1fdf295

Choose a tag to compare

  • 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

01 Feb 20:32
1d545fd

Choose a tag to compare

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

1.1.0

10 Sep 20:07
c8fc655

Choose a tag to compare

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.