Skip to content

Gulp needs updating for linting to be successful #59

@azaceta

Description

@azaceta

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",
  • updated gulpfile.js:
@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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions