You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While this would be correct in the case of the english alphabet, for special characters from all over the world it might produce unexpected an unexpected behaviour. The fix is using localeCompare.
// Display available tasks (for shell completion, etc).
_tasks = Object.keys(grunt.task._tasks).sort((a, b) => a.localeCompare(b));