Обновление реакции-скриптов ломает это - PullRequest
0 голосов
/ 11 декабря 2018

Следующий код хорошо работает с react-scripts@1.1.4

/* file auth.js */
class AuthService {
  ...
}

// export a singleton
export default slug => {
  if (!this._authService) this._authService = new AuthService(slug)
  return this._authService
}

Я только что обновился до react-scripts@2.1.1, и я получаю this как undefined.

Интересно, как обновление react-scripts может изменить понятие this

...