The pipeline fails at the "Run Unit Test" step due to an error in fs.js, this is probably due to the node version not being compatible with gulp 3.
To fix it (locally) I've:
- updated package.json to pull gulp 4
@71 - "gulp": "^3.9.1",
@71 - "gulp": "^4.0.0",
@33 - gulp.task('lint', ['lint-js','lint-css']);
@33 + gulp.task('lint', gulp.parallel('lint-js','lint-css'));
@69 - gulp.task('dev-unit', ['dev-karma','dev-mocha']);
@69 + gulp.task('dev-unit', gulp.parallel('dev-karma','dev-mocha'));
Not sure how to contribute it to the project.