1. 11 Feb, 2017 10 commits
    • Joe Haddad's avatar
      Publish · 67e6cf5a
      Joe Haddad authored
       - babel-preset-react-app@2.1.0
       - create-react-app@1.0.4
       - eslint-config-react-app@0.5.1
       - react-dev-utils@0.5.0
       - react-scripts@0.9.0
      Unverified
      67e6cf5a
    • Joe Haddad's avatar
      Add CHANGELOG · 84be4dd0
      Joe Haddad authored
      84be4dd0
    • Joe Haddad's avatar
      Upgrade dependencies (#1522) · 15e0b984
      Joe Haddad authored
      * Upgrade dependencies
      
      * Re-add caret
      15e0b984
    • Anders D. Johnson's avatar
      fix: add yarn gitignores (#1507) · b0b0e6da
      Anders D. Johnson authored
      * fix: add yarn gitignores to template
      
      * fix: add yarn gitignores to root
      
      * fix: add wildcard to npm-debug.log ignore
      b0b0e6da
    • Dan Abramov's avatar
      Don't run CI on Node 0.10 (#1521) · 7556997f
      Dan Abramov authored
      7556997f
    • Joe Haddad's avatar
      Upgrade babel dependencies · 354fce06
      Joe Haddad authored
      Unverified
      354fce06
    • Dan Abramov's avatar
      Add an annoying nit · 52111413
      Dan Abramov authored
      52111413
    • Joe Haddad's avatar
      Add test cases for PUBLIC_URL and relative path (#1519) · b9d679ae
      Joe Haddad authored
      * Add test cases to evaluate increased CI time
      
      * Add positive test cases
      
      * Add negative cases
      
      * Test default behavior
      
      * Exit on failure
      
      * Fix test
      b9d679ae
    • Dan Abramov's avatar
      Bump lerna · ac39a46d
      Dan Abramov authored
      ac39a46d
    • Brandon Istenes's avatar
      Make build exit with error code when interrupted (#1496) · e19b0f63
      Brandon Istenes authored
      * Make build exit with error code when interrupted
      
      This addresses issue #1493.
      
      Current behavior is that `npm run build` exits code 0 without creating a bundle when interrupted. This change makes the build script catch catchable interruptions and exit with the appropriate error code.
      
      * Better error messages for kill signals
      
      * Don't catch SIGINT
      
      Ctrl+C should exit silently, and already produces a non-zero exit code when sent to the console while `npm run build` is running. Exit code 0 is produced if SIGINT is sent directly to the `node build.js` process, but this is unlikely to happen. A SIGINT handler in `build.js` will also be triggered by Ctrl+C in the console, potentially producing unnecessary noise.
      
      * Style fix
      
      * No changes needed to build.js
      
      Problem is coming from the parent process, `react-scripts`
      
      * Make react-scripts script handle signals
      
      * Clarify context
      e19b0f63
  2. 10 Feb, 2017 4 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
    • Joe Haddad's avatar
      Add `PUBLIC_URL` env variable for advanced use (#937) (#1504) · 613b584f
      Joe Haddad authored
      * Add `PUBLIC_URL` env variable for advanced use (#937)
      * Add support for `PUBLIC_URL` env variable
      * Remove unnecessary duplications
      * Simplify served path choice logic
      * Honor PUBLIC_URL in development
      * Add e2e tests
      
      Enables serving static assets from specified host.
      613b584f
    • Jih-Chi Lee's avatar
      Make all react app vars accessible in index.html (#1440) · 1d9159de
      Jih-Chi Lee authored
      * Make all vars accessiable in index.html
      
      * Fix wrong env provieded to DefinePlugin
      
      * Separate results from getClientEnvironment
      
      * The `string` should be object instead of string
      
      * Fix accessing wrong field
      
      * Changed variables naming to `raw` and `stringified`
      
      * Remove trailing commas
      1d9159de
  3. 09 Feb, 2017 4 commits
  4. 08 Feb, 2017 3 commits
  5. 04 Feb, 2017 2 commits
  6. 30 Jan, 2017 2 commits
  7. 27 Jan, 2017 1 commit
  8. 26 Jan, 2017 1 commit
  9. 24 Jan, 2017 3 commits
  10. 23 Jan, 2017 3 commits
    • Vasiliy Taranov's avatar
      Add causes of dev server not detecting changes (#1422) · 65bde543
      Vasiliy Taranov authored
      * Add causes of dev server not detecting changes
      
      Add causes of `npm start` not detecting changes to Troubleshooting chapter of User Guide
      
      * Reworded slightly
      
      * Update README.md
      65bde543
    • soo's avatar
      replace two space syntax with <br> tag (#1393) · adce3791
      soo authored
      for consistency :)
      adce3791
    • Fabrizio Castellarin's avatar
      Use a more sophisticated template for end-to-end testing. (#1187) · 9099570b
      Fabrizio Castellarin authored
      * Use a more sophisticated template for end-to-end testing.
      
      * Not publish integration tests to npm
      
      * Use "commander" for  cli argv handling
      
      * Handle different scripts version forms and exits without a name given
      
      * Prepare the commands for testing with a template
      
      * Fix dev "template" path
      
      * Add various features to test
      
      * Test various features separately
      
      * Test language features
      
      * Comment unused e2e.sh lines
      
      * Add "development" tests
      
      * Test environment variables
      
      * Test webpack plugins
      
      * Replace kitchensink README
      
      * Switch integration tests from jest to mocha
      
      * Use `fs-extra`
      
      * Use the correct folders
      
      * Do some cleanup
      
      * Print a better message for `--template`
      
      * Test `npm start` with and without https
      
      * Separate fast e2e testing from kitchensink testing
      
      * Hide `--internal-testing-template` (former `--template`) CLI option
      9099570b
  11. 12 Jan, 2017 2 commits
    • Daniel Schep's avatar
      Document Flow support (#1384) · 7cd03f9f
      Daniel Schep authored
      * Document Flow support
      
      Projects created by Create React App use the `babel-preset-react` which includes
      Flow babel plugins which introduces new syntax. This is important for users to know
      as it causes what used to be syntax errors to be silently suppressed because they're
      valid type annotations in Flow. For example if a user accidentally has `[foo: 'bar']`,
      Babel will silently convert it to `[foo]`.
      
      * Make it a bit clearer
      7cd03f9f
    • Robbie H's avatar
  12. 11 Jan, 2017 2 commits
  13. 09 Jan, 2017 3 commits