In lots of places paths are created by using '/' slashes.
// src/local/fs-helper.js:21
this._baseDir = path.parse(this._sourceLocation).base + '/';
path.sep and path.join should be used instead.
It doesn't cause any major issues right now, but something to consider in a future refactoring
In lots of places paths are created by using
'/'slashes.path.sepandpath.joinshould be used instead.It doesn't cause any major issues right now, but something to consider in a future refactoring