1. 01 Sep, 2016 5 commits
  2. 25 Aug, 2016 1 commit
  3. 12 Aug, 2016 1 commit
    • Andrey Popp's avatar
      Load favicon through html-loader. (#428) · 60178ac7
      Andrey Popp authored
      * Load favicon through html-loader.
      
      Fixes #291.
      
      * Add test for *.ico in e2e test suite
      
      * Configure html-loader to process <link href="...">
      
      * Address feedback on html-loader inclusion.
      
      * Place favicon.ico at the root of the build dir
      
      * Make comment style consistent between prod and dev webpack configs
      
      * Fix html-loader config in dev mode
      60178ac7
  4. 11 Aug, 2016 1 commit
  5. 08 Aug, 2016 4 commits
  6. 04 Aug, 2016 6 commits
  7. 02 Aug, 2016 2 commits
    • Ville Immonen's avatar
      Transform async functions with regenerator (#332) · 6ea7ec5a
      Ville Immonen authored
      * Transform async functions with regenerator
      
      Remove `transform-async-to-generator`, which to my understanding is meant
      to be used in environments that support generators natively.
      
      Because we're compiling generators to ES5 anyway, we can simply use
      `regenerator` to transform async functions too, which results in
      slightly simpler output and only uses the regenerator runtime instead
      regenerator runtime + _asyncToGenerator Babel helper.
      
      * Add babel-plugin-transform-regenerator
      
      * Use dependencies with an exact version
      6ea7ec5a
    • Dan Abramov's avatar
      Support async/await (#327) · fa38991b
      Dan Abramov authored
      * Make Babel config more verbose and simpler
      
      * Support async/await
      fa38991b
  8. 01 Aug, 2016 5 commits
  9. 29 Jul, 2016 1 commit
  10. 28 Jul, 2016 5 commits
  11. 27 Jul, 2016 7 commits
  12. 26 Jul, 2016 1 commit
  13. 25 Jul, 2016 1 commit
    • Ethan Cohen's avatar
      [dependency] - Add select eslint-plugin-jsx-a11y rules to lint config. (#175) · 90d49f83
      Ethan Cohen authored
      This project is a really good use case to apply some accessibility
      rules to the lint config. For beginners getting started with React, we
      can also teach/enforce basic accessibility rules in the web at author
      time.
      
      For now, I’ve just applied to the rules that are listed in
      `eslint-config-airbnb` because these are most real-world tested, and we
      can continue to add.
      
      Happy to help if there are any questions/issues/concerns about the
      plugin!
      90d49f83