1. 25 Apr, 2017 1 commit
  2. 22 Apr, 2017 1 commit
  3. 19 Apr, 2017 1 commit
  4. 14 Apr, 2017 1 commit
  5. 09 Apr, 2017 1 commit
  6. 21 Mar, 2017 1 commit
  7. 18 Mar, 2017 1 commit
  8. 08 Mar, 2017 1 commit
    • Leo Lamprecht's avatar
      Suggest `serve` for running in production (#1760) · 8c00af14
      Leo Lamprecht authored
      * Suggest `serve` for serving the `build` directory
      
      * How to handle it with Node in prod (or other platforms)
      
      * Pretty newline added
      
      * Adjusted default port of static server
      
      * Remove `open` command from output
      
      * Removed constant assignment
      
      * Better explanation for not using having to use a static server
      
      * Cute newline added
      
      * Style nits
      8c00af14
  9. 07 Mar, 2017 2 commits
    • Andres Suarez's avatar
      Add yarn steps for adding flow (#1756) · 837f5449
      Andres Suarez authored
      [skip ci]
      837f5449
    • Rory Hunter's avatar
      Whitelist files that can be embedded through url-loader (#1305) · 2ac1b38e
      Rory Hunter authored
      * Whitelist files that can be embedded through url-loader
      
      Change the current catch-all loader to use file-loader instead of
      url-loader, and exclude common image file extensons. Add another url-loader
      for images, configured identically to the original catch-all loader.
      
      Part of issue #1293.
      
      * Update tests to reflect change in loader config
      
      * Integration test fix
      
      * More CI fixes
      
      * Work around broken loader-utils behaviour in integration tests
      
      * Revise the documentation around file loading
      
      * Documentation tweaks
      
      * Docs tweak
      
      * Update test now that webpack/loader-utils has been updated
      
      * Update react-scripts to depend on babel-loader@7.0.0-alpha.2
      
      * Bump deps
      2ac1b38e
  10. 05 Mar, 2017 3 commits
  11. 02 Mar, 2017 1 commit
  12. 01 Mar, 2017 1 commit
  13. 27 Feb, 2017 1 commit
  14. 24 Feb, 2017 8 commits
  15. 22 Feb, 2017 1 commit
  16. 16 Feb, 2017 1 commit
  17. 15 Feb, 2017 2 commits
  18. 13 Feb, 2017 1 commit
    • Alessandro Burato's avatar
      update CSS preprocessor instructions (#1543) · ce0d6eeb
      Alessandro Burato authored
      * update CSS preprocessor instructions
      - Windows shell users should note that running two programs simultaneously is not supported.
      
      * fix the order of SASS build step
      - the suggested build step with integrated CSS preprocessing is wrong. The SASS preprocessor should run first, then the react-scripts build will pick the up-to-date final CSS
      
      * Add tweaks from PR discussion
      ce0d6eeb
  19. 12 Feb, 2017 6 commits
  20. 11 Feb, 2017 3 commits
  21. 10 Feb, 2017 2 commits
    • Joe Haddad's avatar
      readme: Add Advanced Configuration (#1515) · 7a02f9a4
      Joe Haddad authored
      * Add Advanced Configuration section
      
      * Reference package.json instead
      
      * Add HOST, HTTPS, and CI
      
      * Switch wording from Amazon to a CDN
      
      * Add test runner comment
      
      * Add top-level README link
      
      * Simplify wording
      
      * Link to relevant docs
      
      * Link to apps
      
      * Add .env link
      
      * Simpler links
      
      * Add a CI flag note
      7a02f9a4
    • Thibault Derousseaux's avatar
      Support relative asset paths for special case (#1489) · 8e127aaa
      Thibault Derousseaux authored
      * Fix paths in CSS files when homepage is set to "./"
      
      In the production build, ExtractTextPlugin is used to generate a separate CSS file instead of injecting style through JavaScript. This plugin does not work well by default with nested output structure. To fix it, we give it a relative publicPath pointing to the build folder.
      
      * Add section in README to explain how to make builds deployable anywhere
      
      * Apply review requested change
      
      * Apply review changes 2
      8e127aaa