[WIP] Update dependencies and build system #4203
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Addresses #4201
Changes:
As per the related issue, I've begun updating the dependencies and refactoring the build system. This is a work in progress, I just want to share it here and if at any reasonable breakpoint the work should be merged before everything is done then just let me know I'll merge this in before continuing.
So far two big changes are included:
grunt-saucelabs
dependency has been removed and the related steps removed as well. As far as I know saucelabs isn't being used (CI isn't running the steps) and the package is full of security vulnerabilities.grunt-release-it
has been replaced withrelease-it
directly. The grunt plugin wasn't being maintained for several years now and it's only a thin wrapper aroundrelease-it
. The version ofrelease-it
grunt-release-it
was using is very out of date with the current version so a bit of refactoring of the config is required but the front facing interface remain the same, ie the release step remain the samegrunt release-p5:[increment]
.Very happy to say that right now
npm audit
only gives the following:(all from
grunt-contrib-yuidoc
😞 )Edit 1
3.
grunt karma
now works. A dependency was missing. However, the benchmarking part will be refactor out of this repo into its own repo, hopefully with a CI running and reporting the benchmarking numbers.Will continue on this...
PR Checklist
npm run lint
passes