Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Merge upstream changes from create-react-app 0.9.x #84

Merged
merged 211 commits into from May 16, 2017

Commits on Dec 13, 2016

  1. Heroku Deployment: Adds a note on how to resolve "File/Module Not Fou…

    …nd Errors" (facebook#1260)
    
    * Adds note on how to resolve file or directory not found errors for heroku deployments
    
    * Style tweaks
    msuzoagu authored and gaearon committed Dec 13, 2016
    Copy the full SHA
    7a8edf0 View commit details
    Browse the repository at this point in the history
  2. Remove interactive shell check when opening browser on start (faceboo…

    …k#1264)
    
    Browser launch can still be suppressed using BROWSER=none
    CaryLandholt authored and gaearon committed Dec 13, 2016
    Copy the full SHA
    94c912d View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2016

  1. Copy the full SHA
    7408e36 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2016

  1. facebookgh-1269: Enabling nested folder paths for project name (faceb…

    …ook#1270)
    
    * facebookgh-1269: Enabling nested folder paths for project name
    
    * facebookgh-1269: Added "fs-extra" and removed "path-exists"
    
    * facebookgh-1269: Added e2e test cases to verify nested folder names
    dinukadesilva authored and fson committed Dec 18, 2016
    Copy the full SHA
    5fa34dd View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    21b0044 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2016

  1. Copy the full SHA
    7d66ba1 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2016

  1. Copy the full SHA
    ac6a4c8 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2016

  1. Fixes duplicate "is" typo (facebook#1306)

    jmagrippis authored and fson committed Dec 30, 2016
    Copy the full SHA
    e45b087 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    a90e2b2 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    4d7b754 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2017

  1. Copy the full SHA
    2548027 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2017

  1. Use yarnpkg alias to run Yarn (facebook#1365)

    There’s a common tool included in Hadoop that also has a `yarn` command,
    which created issues for users who had Hadoop installed:
    * facebook#1257
    * facebook#1363
    
    Yarn also installs the command under `yarnpkg` alias (added in
    yarnpkg/yarn@cefa9a3)
    so we can use `yarnpkg` instead of `yarn` to make it more reliable.
    
    This has no effect on users who don't have Hadoop installed, but those
    who have won't see errors from falsely detecting Hadoop Yarn as Yarn
    the package manager, and they can now also install Yarn to make use of
    our Yarn support without the Hadoop Yarn interfering.
    fson committed Jan 9, 2017
    Copy the full SHA
    1b645e2 View commit details
    Browse the repository at this point in the history
  2. Use yarnpkg alias to run Yarn (facebook#1365)

    There’s a common tool included in Hadoop that also has a `yarn` command,
    which created issues for users who had Hadoop installed:
    * facebook#1257
    * facebook#1363
    
    Yarn also installs the command under `yarnpkg` alias (added in
    yarnpkg/yarn@cefa9a3)
    so we can use `yarnpkg` instead of `yarn` to make it more reliable.
    
    This has no effect on users who don't have Hadoop installed, but those
    who have won't see errors from falsely detecting Hadoop Yarn as Yarn
    the package manager, and they can now also install Yarn to make use of
    our Yarn support without the Hadoop Yarn interfering.
    fson committed Jan 9, 2017
    Copy the full SHA
    24abc5e View commit details
    Browse the repository at this point in the history
  3. Update changelog for 0.8.5

    fson committed Jan 9, 2017
    Copy the full SHA
    ad86746 View commit details
    Browse the repository at this point in the history
  4. Publish

     - create-react-app@1.0.3
     - react-scripts@0.8.5
    fson committed Jan 9, 2017
    Copy the full SHA
    a5b8389 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    11cc5ae View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2017

  1. Copy the full SHA
    d29fb00 View commit details
    Browse the repository at this point in the history
  2. Change console.log for errors and warnings (facebook#1375)

    Array.forEach is passed the following parameters:
    
    currentValue
        The current element being processed in the array.
    index
        The index of the current element being processed in the array.
    array
    - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
    
    console.log takes multiple arguments. We only want to print the first one, the actually message.
    jimmyhmiller authored and gaearon committed Jan 11, 2017
    Copy the full SHA
    3f6937c View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2017

  1. Copy the full SHA
    17bb8d4 View commit details
    Browse the repository at this point in the history
  2. Document Flow support (facebook#1384)

    * 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
    dschep authored and gaearon committed Jan 12, 2017
    Copy the full SHA
    7cd03f9 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2017

  1. Use a more sophisticated template for end-to-end testing. (facebook#1187

    )
    
    * 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
    EnoahNetzach authored and gaearon committed Jan 23, 2017
    Copy the full SHA
    9099570 View commit details
    Browse the repository at this point in the history
  2. replace two space syntax with <br> tag (facebook#1393)

    for consistency :)
    carlsagan21 authored and gaearon committed Jan 23, 2017
    Copy the full SHA
    adce379 View commit details
    Browse the repository at this point in the history
  3. Add causes of dev server not detecting changes (facebook#1422)

    * 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
    jetpackpony authored and gaearon committed Jan 23, 2017
    Copy the full SHA
    65bde54 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2017

  1. Added links to tutorials for integrating cra with an api backend (fac…

    …ebook#1437)
    
    * Added Rails link to User Guide
    
    * docs: unify sections for rails and node backend integration
    
    * docs: fix faulty link and indentation
    alexdriaguine authored and gaearon committed Jan 24, 2017
    Copy the full SHA
    3bb31cc View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    dbb7ffe View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    da321b2 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2017

  1. Readme: Removes experimental from Jest snapshot (facebook#1453)

    Per final comment in facebook#372
    
    `Snapshot rendering should actually be pretty stable / useable after React 15.4.1.
    See this post for more info.`
    frehner authored and gaearon committed Jan 26, 2017
    Copy the full SHA
    dd788b6 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2017

  1. eject: Additionally remove react-scripts from dependencies (faceboo…

    …k#1458)
    
    ATM if react-scripts is (erroneously) declared in `dependencies` instead of `devDependencies` or isn't declared at all, the `eject` script will fail half-way. This change makes it more robust, react-scripts will be removed from either, if present.
    creynders authored and gaearon committed Jan 27, 2017
    Copy the full SHA
    bc2fc80 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2017

  1. E2e jsdom fix (facebook#1470)

    * E2E: run tests when react is ready
    
    * Entangle e2e with callbacks
    
    * Remove unused e2e lines
    EnoahNetzach authored and gaearon committed Jan 30, 2017
    Copy the full SHA
    1d586aa View commit details
    Browse the repository at this point in the history
  2. - import expect and expect flow (facebook#1463)

    - code style
    tuchk4 authored and gaearon committed Jan 30, 2017
    Copy the full SHA
    8964dd6 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2017

  1. Reflect websocket proxy support on README (facebook#1013) (facebook#1483

    )
    
    * Reflect websocket proxy support on README
    
    * Add 'the'
    frontsideair authored and gaearon committed Feb 4, 2017
    Copy the full SHA
    6424232 View commit details
    Browse the repository at this point in the history
  2. Edit User Guide: Add ESLint config for VS Code users (facebook#1482)

    * Add ESLint config for VS Code users
    
    * Update VSC ESLint note to a better solution 
    
    Update VSC ESLint note to a better solution as discussed in Pull Request
    vulong23 authored and gaearon committed Feb 4, 2017
    Copy the full SHA
    65e6340 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2017

  1. Copy the full SHA
    adab23f View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    9e0e18f View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    0ac0d11 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2017

  1. Change "OS X" references to "macOS" (facebook#1511)

    Updated README.md to refer to the current rebranding.
    RodrigoHahn authored and gaearon committed Feb 9, 2017
    Copy the full SHA
    c811a31 View commit details
    Browse the repository at this point in the history
  2. corrected minor typo (facebook#1514)

    Chandan Rai authored and gaearon committed Feb 9, 2017
    Copy the full SHA
    de6e059 View commit details
    Browse the repository at this point in the history
  3. clarifying the use of custom environment variables (facebook#1513)

    * clarifying the use of custom environment variables
    
    * Tweak
    calweb authored and gaearon committed Feb 9, 2017
    Copy the full SHA
    160d8d1 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    b999405 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2017

  1. Make all react app vars accessible in index.html (facebook#1440)

    * 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
    jihchi authored and Timer committed Feb 10, 2017
    Copy the full SHA
    1d9159d View commit details
    Browse the repository at this point in the history
  2. Add PUBLIC_URL env variable for advanced use (facebook#937) (facebo…

    …ok#1504)
    
    * Add `PUBLIC_URL` env variable for advanced use (facebook#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.
    Timer committed Feb 10, 2017
    Copy the full SHA
    613b584 View commit details
    Browse the repository at this point in the history
  3. Support relative asset paths for special case (facebook#1489)

    * 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
    tibdex authored and Timer committed Feb 10, 2017
    Copy the full SHA
    8e127aa View commit details
    Browse the repository at this point in the history
  4. readme: Add Advanced Configuration (facebook#1515)

    * 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
    Timer committed Feb 10, 2017
    Copy the full SHA
    7a02f9a View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2017

  1. Make build exit with error code when interrupted (facebook#1496)

    * Make build exit with error code when interrupted
    
    This addresses issue facebook#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
    brandones authored and gaearon committed Feb 11, 2017
    Copy the full SHA
    e19b0f6 View commit details
    Browse the repository at this point in the history
  2. Bump lerna

    gaearon committed Feb 11, 2017
    Copy the full SHA
    ac39a46 View commit details
    Browse the repository at this point in the history
  3. Add test cases for PUBLIC_URL and relative path (facebook#1519)

    * Add test cases to evaluate increased CI time
    
    * Add positive test cases
    
    * Add negative cases
    
    * Test default behavior
    
    * Exit on failure
    
    * Fix test
    Timer authored and gaearon committed Feb 11, 2017
    Copy the full SHA
    b9d679a View commit details
    Browse the repository at this point in the history
  4. Add an annoying nit

    gaearon committed Feb 11, 2017
    Copy the full SHA
    5211141 View commit details
    Browse the repository at this point in the history
  5. Upgrade babel dependencies

    Timer committed Feb 11, 2017
    Copy the full SHA
    354fce0 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    7556997 View commit details
    Browse the repository at this point in the history
  7. fix: add yarn gitignores (facebook#1507)

    * fix: add yarn gitignores to template
    
    * fix: add yarn gitignores to root
    
    * fix: add wildcard to npm-debug.log ignore
    AndersDJohnson authored and gaearon committed Feb 11, 2017
    Copy the full SHA
    b0b0e6d View commit details
    Browse the repository at this point in the history
  8. Upgrade dependencies (facebook#1522)

    * Upgrade dependencies
    
    * Re-add caret
    Timer committed Feb 11, 2017
    Copy the full SHA
    15e0b98 View commit details
    Browse the repository at this point in the history
  9. Add CHANGELOG

    Timer committed Feb 11, 2017
    Copy the full SHA
    84be4dd View commit details
    Browse the repository at this point in the history
  10. Publish

     - 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
    Timer committed Feb 11, 2017
    Copy the full SHA
    67e6cf5 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    dc4e8bb View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    9f12763 View commit details
    Browse the repository at this point in the history
  13. Massage 0.9.0 changelog

    gaearon committed Feb 11, 2017
    Copy the full SHA
    c8644e2 View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    0e74539 View commit details
    Browse the repository at this point in the history
  15. Tweak indentation

    gaearon committed Feb 11, 2017
    Copy the full SHA
    7ea799d View commit details
    Browse the repository at this point in the history
  16. Markdown whitespace fixes

    gaearon committed Feb 11, 2017
    Copy the full SHA
    0bcb284 View commit details
    Browse the repository at this point in the history
  17. Some changelog formatting

    gaearon committed Feb 11, 2017
    Copy the full SHA
    3e226b2 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2017

  1. Suggest jest-enzyme for simplifying test matchers (facebook#994)

    * Suggest jest-enzyme for simplifying test matchers
    
    * Update README.md
    
    * Update README.md
    blainekasten authored and Timer committed Feb 23, 2017
    Copy the full SHA
    12e8cea View commit details
    Browse the repository at this point in the history
  2. Add SASS support documentation facebook#1007 (facebook#1008)

    * Add SASS support documentation facebook#1007
    
    * Change SASS section title to more generic label
    
    * Fix link in Table of Contents
    
    * Chain build-css with watch-css script, fix typos
    
    * Update Sass and Less naming style
    
    * Fix wording, remove offensive words
    
    * Slightly rewite
    tsironis authored and Timer committed Feb 23, 2017
    Copy the full SHA
    645ba66 View commit details
    Browse the repository at this point in the history
  3. Link to new Sass doc

    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    27c99b5 View commit details
    Browse the repository at this point in the history
  4. Clarify Less/Sass support

    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    1b3403b View commit details
    Browse the repository at this point in the history
  5. Fix test -e with wildcard arguments. (facebook#1503)

    The `test` command fails with multiple arguments when given a unary operator such as '-e'. Add a function that can test one or more files by looping over all files.
    marcusrbrown authored and Timer committed Feb 23, 2017
    Copy the full SHA
    6a0edc4 View commit details
    Browse the repository at this point in the history
  6. Correctly Command in README.md (facebook#1275)

    * change npm to yarn command
    
    * Keep npm primary option
    lifez authored and Timer committed Feb 23, 2017
    Copy the full SHA
    7f35c79 View commit details
    Browse the repository at this point in the history
  7. reduxjs/redux#2004 List features beyond ES6 supported by create-react…

    …-app (facebook#1313)
    
    * reduxjs/redux#2004 List features beyond ES6 supported by create-react-app
    
    * Add more info
    jonathanconway authored and Timer committed Feb 23, 2017
    Copy the full SHA
    60902dc View commit details
    Browse the repository at this point in the history
  8. Add a link to supported features

    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    c861f74 View commit details
    Browse the repository at this point in the history
  9. [documentation] how to disable autoprefix feature (facebook#1320)

    * added how to disable autoprefix feature in doc
    
    * Just link to the doc
    Roman Rubas authored and Timer committed Feb 23, 2017
    Copy the full SHA
    d53228d View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    ed47cc3 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    572d07b View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    963383a View commit details
    Browse the repository at this point in the history
  13. Tweak syntax doc (facebook#1539)

    * Tweak syntax doc
    
    * Shorter version
    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    1aefc2c View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    b279e3f View commit details
    Browse the repository at this point in the history
  15. update CSS preprocessor instructions (facebook#1543)

    * 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
    Alessandro Burato authored and Timer committed Feb 23, 2017
    Copy the full SHA
    677896a View commit details
    Browse the repository at this point in the history
  16. Revert "Don't run CI on Node 0.10" (facebook#1547)

    * Revert "Don't run CI on Node 0.10"
    
    * Install after checking node version
    
    * Don't use travis install
    Timer committed Feb 23, 2017
    Copy the full SHA
    01f66db View commit details
    Browse the repository at this point in the history
  17. Use Yarn latest in e2e (facebook#1534)

    * Use Yarn latest in e2e
    
    * Here too
    
    * And here plz
    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    cb95889 View commit details
    Browse the repository at this point in the history
  18. Copy the full SHA
    8c375ac View commit details
    Browse the repository at this point in the history
  19. Use https in link to Ignoring files at Github (facebook#1561)

    Darío Javier Cravero authored and Timer committed Feb 23, 2017
    Copy the full SHA
    41f9d20 View commit details
    Browse the repository at this point in the history
  20. add --recursive to sass watch script (facebook#1564)

    Alessandro Burato authored and Timer committed Feb 23, 2017
    Copy the full SHA
    6ae2d06 View commit details
    Browse the repository at this point in the history
  21. Mention Windows support explicitly

    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    8780078 View commit details
    Browse the repository at this point in the history
  22. Reorder

    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    d6781af View commit details
    Browse the repository at this point in the history
  23. Update README.md (facebook#1573)

    Update links to jest expect function.
    mkermani144 authored and Timer committed Feb 23, 2017
    Copy the full SHA
    c7d6a5d View commit details
    Browse the repository at this point in the history
  24. MacOS => macOS

    gaearon authored and Timer committed Feb 23, 2017
    Copy the full SHA
    af345f0 View commit details
    Browse the repository at this point in the history
  25. Switch from Neo to Neutrino (facebook#1576)

    * Switch from Neo to Neutrino
    
    * Edited format to be consistent
    eliperelman authored and Timer committed Feb 23, 2017
    Copy the full SHA
    20b85ba View commit details
    Browse the repository at this point in the history
  26. Copy the full SHA
    71be55b View commit details
    Browse the repository at this point in the history
  27. Copy the full SHA
    0a41334 View commit details
    Browse the repository at this point in the history
  28. Add note for using CHOKIDAR_USEPOLLING in virtual machines to enable …

    …HMR (facebook#1608)
    
    * Add note for using CHOKIDAR_USEPOLLING in virtual machines to enable HMR
    
    * Use br in react-scripts template README md
    
    * Use br in md for new line breaks
    
    * Update troubleshooting HMR to allow for VMs running Windows
    
    * Fix up the instructions
    AJamesPhillips authored and Timer committed Feb 23, 2017
    Copy the full SHA
    bf0c02e View commit details
    Browse the repository at this point in the history
  29. Copy the full SHA
    321f8b4 View commit details
    Browse the repository at this point in the history
  30. Install react, react-dom, and react-scripts at the same time (faceboo…

    …k#1253)
    
    * Install react and react-dom along with react-scripts
    
    - Install react, react-dom and react-script in a same time
    - Move react-scripts to devDependencies.
    
    * Check if react, react-dom has been already installed
    
    - To backward compatibility with old CRA’s cli
    - In case old CRA doesn’t install react, react-don along with
    react-scripts
    
    * Use packageName to find script dependency
    
    - use packageName to find dependency
    - fix pathExists.sync
    
    * Check dependencies.react in package.json instead of actual files
    
    * Process exit when dependencies not found
    
    - Show error and exit when dependencies not found.
    - Log install show custom package name
    
    * Remove template string
    
    * Install dependencies if template is preseted
    
    * Remove dangling comma
    
    Resolves facebook#1239
    n3tr authored and Timer committed Feb 23, 2017
    Copy the full SHA
    7c4c167 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2017

  1. add a comment about NODE_ENV value set to 'production' during build s…

    …tep (facebook#1625)
    
    * add a comment about NODE_ENV value set to 'production' during build step
    
    facebook#790 (comment)
    
    * Move words around
    mderazon authored and Timer committed Feb 24, 2017
    Copy the full SHA
    d4f3985 View commit details
    Browse the repository at this point in the history
  2. Update flow configuration documentation (facebook#1518)

    * Update flow configuration documentation
    
    The documentation was missing creating the .flowconfig file
    
    * Update flow configuration documentation
    
    Adding in suggested changes
    
    * Wording
    
    * Wording
    SBrown52 authored and Timer committed Feb 24, 2017
    Copy the full SHA
    fb94589 View commit details
    Browse the repository at this point in the history
  3. Add note about when to import bootstrap CSS. (facebook#1618)

    * Add note about when to import bootstrap CSS.
    
    * Tweak
    joewoodhouse authored and Timer committed Feb 24, 2017
    Copy the full SHA
    5ee655b View commit details
    Browse the repository at this point in the history
  4. Document Sass imports

    gaearon authored and Timer committed Feb 24, 2017
    Copy the full SHA
    16a5e55 View commit details
    Browse the repository at this point in the history
  5. Fix workflow if react-scripts package is linked via npm-link (faceboo…

    …k#1356)
    
    * add npm-link support
    
    * - remove extra veriable
    - simplify condition
    
    * update code after review:
    - remove utils/isReactScriptsLinked
    - add appPath and ownPath to paths.js (but only for "before eject" export case)
    
    * update code after review:
    - remove utils/isReactScriptsLinked
    - add appPath and ownPath to paths.js (but only for "before eject" export case)
    
    * update code after review:
    - remove utils/isReactScriptsLinked
    - add appPath and ownPath to paths.js (but only for "before eject" export case)
    - remove "if" block for fs.removeSync(ownPath) at ejec.tjs
    
    * change ownPath value
    tuchk4 authored and Timer committed Feb 24, 2017
    Copy the full SHA
    ce90532 View commit details
    Browse the repository at this point in the history
  6. Document debugging in the browser. (facebook#1540)

    * Document debugging in the browser.
    
    * Styling
    bondz authored and Timer committed Feb 24, 2017
    Copy the full SHA
    9e51852 View commit details
    Browse the repository at this point in the history
  7. Link to "Debugging in the Editor"

    gaearon authored and Timer committed Feb 24, 2017
    Copy the full SHA
    def004a View commit details
    Browse the repository at this point in the history
  8. Adding link to “Customizing” create-react-app (facebook#1121)

    Add documentation for customizing Bootstrap theme
    myappincome authored and Timer committed Feb 24, 2017
    Copy the full SHA
    0dcf973 View commit details
    Browse the repository at this point in the history
  9. Update index.js (facebook#1603)

    To avoid file conflict issue with IJ static web projects
    driquelme authored and Timer committed Feb 24, 2017
    Copy the full SHA
    8cf9155 View commit details
    Browse the repository at this point in the history
  10. Remove .bin files defined at react-scripts/package.json after eject (f…

    …acebook#1567)
    
    * remove bin files after eject defined at package.json
    
    * add swallowing try/catch
    tuchk4 authored and Timer committed Feb 24, 2017
    Copy the full SHA
    2177030 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    627e67d View commit details
    Browse the repository at this point in the history
  12. Added a how-to on react-snapshot (facebook#1577)

    * Added a how-to on react-snapshot
    
    Added a section with a short description and link to a tutorial on generating static html pages with react-snapshot, and also linked to it from the section on managing the page title.
    
    * Updated link title for react-snapshot overview
    
    * Explained pre-rendering in a more generic way
    
    * Added link to top level README.md, and removed specifics from overview
    
    * Updated html -> HTML
    
    * Updated quotes and apostrophes
    
    * html -> HTML
    
    * Fix link
    superhighfives authored and Timer committed Feb 24, 2017
    Copy the full SHA
    93f7aef View commit details
    Browse the repository at this point in the history
  13. NPM version check for tip (facebook#1193)

    * Implemented a version check of npm to give a soft tip during the install procedure
    and fixed gitignore
    
    * Moved NPM check to method, it is only executed when you use NPM and the version is < 3.
    
    * Minor formatting tweaks
    
    * Simplify the code
    
    * Remove unnecessary change
    rangle-mobinni authored and Timer committed Feb 24, 2017
    Copy the full SHA
    3b5434c View commit details
    Browse the repository at this point in the history
  14. Enable eslint caching in development (facebook#1578)

    * Enable eslint caching in development
    
    POC for facebook#740. Haven't found any problem, build times improved about 1s on my project and machine.
    
    * Bump eslint-loader to 1.6.3
    
    * move @remove-on-eject block to persist cache config on eject
    viankakrisna authored and Timer committed Feb 24, 2017
    Copy the full SHA
    bf11b14 View commit details
    Browse the repository at this point in the history
  15. Use real build path name in build output (facebook#1478)

    Use the configured appBuild value in paths.js instead of hard-coding it to 'build'.  This is helpful for the ejected case where the appBuild path is changed to another folder name.
    chyipin authored and Timer committed Feb 24, 2017
    Copy the full SHA
    fd248ec View commit details
    Browse the repository at this point in the history
  16. adding a note on how to resolve "Could not find a required file." dep… (

    facebook#1391)
    
    * adding a note on how to resolve "Could not find a required file." deployment errors because of deleted or ignored files
    
    * Tweak
    
    * Unrelated style nits
    sbritoig authored and Timer committed Feb 24, 2017
    Copy the full SHA
    78882d5 View commit details
    Browse the repository at this point in the history
  17. Copy the full SHA
    913679b View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2017

  1. Setting a dynamic port value for the pushstate-server URL text (faceb…

    …ook#1628)
    
    * Setting a dynamic port value for the pushstate-server URL text after a build is completed
    
    * Fixing merge conflict
    mattccrampton authored and Timer committed Feb 25, 2017
    Copy the full SHA
    1fe3e14 View commit details
    Browse the repository at this point in the history
  2. Fix up broken line

    gaearon authored and Timer committed Feb 25, 2017
    Copy the full SHA
    11851ee View commit details
    Browse the repository at this point in the history
  3. Gracefully handle initial installation error (facebook#1512)

    * Gracefully handle initial installation error
    
    * Print out message when problem occurs
    * Delete project folder on errors
    
    * Fix directory deleting message
    
    Resolves facebook#1505
    chitchu authored and Timer committed Feb 25, 2017
    Copy the full SHA
    36d86b9 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2017

  1. Add changelog for 0.9.1

    Timer committed Feb 26, 2017
    Copy the full SHA
    f160a81 View commit details
    Browse the repository at this point in the history
  2. Publish

     - babel-preset-react-app@2.1.1
     - create-react-app@1.1.0
     - eslint-config-react-app@0.5.2
     - react-dev-utils@0.5.1
     - react-scripts@0.9.1
    Timer committed Feb 26, 2017
    Copy the full SHA
    9e2624f View commit details
    Browse the repository at this point in the history
  3. Update changelog

    Timer committed Feb 26, 2017
    Copy the full SHA
    0ad2c72 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    eb34d80 View commit details
    Browse the repository at this point in the history
  5. Add 0.9.2 changelog

    gaearon committed Feb 26, 2017
    Copy the full SHA
    28d6f32 View commit details
    Browse the repository at this point in the history
  6. 0.9.2

    gaearon committed Feb 26, 2017
    Copy the full SHA
    0c2603f View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2017

  1. Add a note about known issue

    gaearon committed Feb 28, 2017
    Copy the full SHA
    6370c00 View commit details
    Browse the repository at this point in the history
  2. Merge changelogs

    gaearon committed Feb 28, 2017
    Copy the full SHA
    8fa04c2 View commit details
    Browse the repository at this point in the history
  3. Format differently

    gaearon committed Feb 28, 2017
    Copy the full SHA
    f0b1408 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    5a91a01 View commit details
    Browse the repository at this point in the history
  5. Fix e2e when used with cold cache (facebook#1667)

    Resolves facebook#1666
    Timer authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    a06c95b View commit details
    Browse the repository at this point in the history
  6. Fix e2e-simple (cont.)

    Timer authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    a1bc3a3 View commit details
    Browse the repository at this point in the history
  7. Add appveyor.yml (facebook#1648)

    * Add appveyor.yml
    
    * Execute mocha directly in e2e test
    
    * Replace e2e process substitution
    
    * Kill nohup node processes after e2e
    
    * Disable known failing Windows test
    
    * Only build master
    Timer authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    c5d8cfd View commit details
    Browse the repository at this point in the history
  8. fix react dependency versions during initial install (facebook#1669)

    * fix react dependency versions during initial install
    
    * add review remarks
    johann-sonntagbauer authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    649c346 View commit details
    Browse the repository at this point in the history
  9. Remove Windows 0.10 simple test

    Timer authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    39d0952 View commit details
    Browse the repository at this point in the history
  10. add project name validation (facebook#1662)

    * add project name validation
    
    * Tweak console output
    johann-sonntagbauer authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    a2c5be9 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    0b46850 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    5bce8c5 View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    8591902 View commit details
    Browse the repository at this point in the history
  14. Use offline cached version with yarn when it's possible (facebook#1423)

    * add --offline flag when we are using yarn and we are offline
    
    * Revert changes to init script
    
    We only run these commands for backward compat mode, in which we wouldn't receive the offline flag anyway
    
    * Don't pass isOnline to init script because it doesn't need it
    
    * Don't ping the Yarn registry if user doesn't have Yarn
    
    * Remove unused/wrong arguments
    
    * Move logs to error handler
    
    * Fix error handling
    
    * Report to the user that they're offline
    voxsim authored and gaearon committed Feb 28, 2017
    Copy the full SHA
    a319002 View commit details
    Browse the repository at this point in the history
  15. Copy the full SHA
    4446759 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    0d752f5 View commit details
    Browse the repository at this point in the history
  17. Publish

     - create-react-app@1.2.0
     - react-scripts@0.9.3
    gaearon committed Feb 28, 2017
    Copy the full SHA
    aaf1e81 View commit details
    Browse the repository at this point in the history
  18. Copy the full SHA
    9e8910f View commit details
    Browse the repository at this point in the history
  19. Publish

     - create-react-app@1.2.1
    Timer committed Feb 28, 2017
    Copy the full SHA
    36f3c55 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2017

  1. appveyor: Build all branches

    Timer committed Mar 1, 2017
    Copy the full SHA
    e1dac99 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2017

  1. Suggest CRA 1.2.1 in changelog

    gaearon authored and Timer committed Mar 4, 2017
    Copy the full SHA
    7a6a3c8 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    290e619 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    58137b7 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    008d9a1 View commit details
    Browse the repository at this point in the history
  5. Diagnostic code (facebook#1695)

    * Adding diagnostic code as requested by @gaearon
    
    * Oops
    tgig authored and Timer committed Mar 4, 2017
    Copy the full SHA
    2580b52 View commit details
    Browse the repository at this point in the history
  6. Fix Jest tests for Cygwin

    Timer committed Mar 4, 2017
    Copy the full SHA
    5fbb13a View commit details
    Browse the repository at this point in the history
  7. Improve reliability of port hint. (facebook#1696)

    * fixing things for people with the username `cwd`
    
    closes facebook#1694
    
    * combine awk into a single command and add escaping
    chrisdrackett authored and Timer committed Mar 4, 2017
    Copy the full SHA
    734fc98 View commit details
    Browse the repository at this point in the history
  8. pin and bump lerna (facebook#1688)

    viankakrisna authored and Timer committed Mar 4, 2017
    Copy the full SHA
    b9b6135 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    5ba8709 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2017

  1. Add docs for apache's client side routing setting (facebook#1717)

    * Add docs for apache's client side routing setting
    
    * Tweak advice
    viankakrisna authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    297ce6a View commit details
    Browse the repository at this point in the history
  2. Update now.sh deployment instructions. (facebook#1710)

    * Update now.sh deployment instructions.
    
    Incorporates changes announced at https://zeit.co/blog/now-static that streamline Now deployments from CRA projects.
    
    * Remove unintentional reference to deployed app.
    
    No emergency; just didn't intend to tout or send traffic to my prototype.
    replaid authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    7d82964 View commit details
    Browse the repository at this point in the history
  3. Add support for ignoreRestSiblings in no-unused-vars (facebook#1705)

    * updating eslint to 3.16.1
    
    * add support for ignoreRestSiblings in eslint
    
    http://eslint.org/docs/rules/no-unused-vars#ignorerestsiblings
    
    * updating eslint to 3.16.1 in `react-scripts`
    
    * updating eslint
    
    * missing `^`
    
    * missing ^
    
    * pinning main eslint and updating readme
    
    * Pin ESLint version
    chrisdrackett authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    474af9e View commit details
    Browse the repository at this point in the history
  4. add double quotes to escape spaces in paths in e2e (facebook#1707)

    * add double quotes to escape spaces in path
    
    * Change $* to "$@" props to @n3tr
    
    * escape spaces in path for all e2e tests
    viankakrisna authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    99aa02d View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    66d59bb View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    c017e2c View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    be53fa5 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    7daff97 View commit details
    Browse the repository at this point in the history
  9. Fix openBrowser() when BROWSER=open on macOS (facebook#1690)

    * Fix openBrowser() when BROWSER=open on macOS
    
    * Tweaks
    bpierre authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    860f1c7 View commit details
    Browse the repository at this point in the history
  10. Create empty package.json in e2e test (facebook#1401) (facebook#1402)

    * Create empty package.json in e2e test
    
    Create empty package.json in e2e test while installing packaged CLI to prevent installation issues.
    
    * Use "npm init" to initialize package.json instead of just writing an empty object into it.
    
    * Fix typo
    matoilic authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    ebf5bd5 View commit details
    Browse the repository at this point in the history
  11. Skip AppVeyor CI builds for Markdown changes (facebook#1723)

    * Skip CI builds for Markdown changes
    
    * I will never learn YML
    gaearon committed Mar 5, 2017
    Copy the full SHA
    6f18606 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    830fe20 View commit details
    Browse the repository at this point in the history
  13. Bump jsx-a11y version (facebook#1542)

    * Bump jsx-a11y version
    
    * Update package dependecy for jsx-a11y
    
    * Bump version in react-scripts
    bondz authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    b0b9696 View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    6a9e4dc View commit details
    Browse the repository at this point in the history
  15. Fix Node 4 e2e tests (facebook#1730)

    Timer authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    b34a679 View commit details
    Browse the repository at this point in the history
  16. Lint internal scripts with eslint:recommended (facebook#1729)

    * Lint internal scripts with eslint:recommended
    
    * Warnings r bad
    gaearon committed Mar 5, 2017
    Copy the full SHA
    b210d7a View commit details
    Browse the repository at this point in the history
  17. Fix ejecting from a scoped fork (facebook#1727)

    * Read script names from own bin instead of guessing
    
    This fixes ejecting from a fork that uses a different bin script name.
    
    * Fix ejecting for a scoped react-scripts fork
    
    We shouldn't hardcode react-scripts because fork name might differ.
    We also shouldn't rely on it being an immediate child because scoped packages are a level deeper.
    
    * Clarify that own* properties only exist before ejecting
    gaearon committed Mar 5, 2017
    Copy the full SHA
    1a331e1 View commit details
    Browse the repository at this point in the history
  18. Properly extract package name for installing tgz of scoped packages (f…

    …acebook#1706)
    
    * Properly extract package name
    
    * Download package if need be ...
    
    * Oops
    
    * Add e2e test based on facebook#1537, but without specific filename
    
    * Pass packageName through promises
    
    A little bit more verbose but explicit and doesn't rely on shared mutable state.
    
    * Fix up directory name in test
    
    * Tweak failure message
    
    * Fix lint
    Timer authored and gaearon committed Mar 5, 2017
    Copy the full SHA
    96fe3fc View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2017

  1. extract generic build functions to react-dev-utils (facebook#1726)

    * Temp rename
    
    * Rename to change the case
    
    * extract generic build functions to react-dev-utils
    
    * tweak package json files and move removeFileNameHash
    
    * revert removeFileNameHash
    
    * use paths.appBuild in printFileSizes
    
    * use paths.appBuild in removeFileNameHash
    
    * change curried functions to regular functions
    
    * add fs-extra to react-dev-utils deps
    
    * move getDifferenceLabel inside printFileSizes
    
    * inline copyPublicFolder
    
    * combine printFileSizes and removeFileNameHash to fileSizeReporter
    
    * fix typo
    
    * Tweak APIs and fix issues
    
    * Fix heading
    
    * Remove missing file
    
    * Newline
    
    * Newline
    
    * Trailing space
    
    * Update FileSizeReporter.js
    
    * Update build.js
    viankakrisna authored and gaearon committed Mar 6, 2017
    Copy the full SHA
    556f394 View commit details
    Browse the repository at this point in the history
  2. Bust AppVeoyr cache

    gaearon committed Mar 6, 2017
    Copy the full SHA
    57d8596 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    623c28b View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    0d0df6a View commit details
    Browse the repository at this point in the history
  5. Fix lint

    gaearon committed Mar 6, 2017
    Copy the full SHA
    fc5d405 View commit details
    Browse the repository at this point in the history
  6. Fix eject for linked react-scripts (facebook#1736)

    * fix eject for linked react-scripts
    
    * path.resolve => resolveApp
    tuchk4 authored and gaearon committed Mar 6, 2017
    Copy the full SHA
    8cc5dcc View commit details
    Browse the repository at this point in the history
  7. Add changelog for 0.9.4

    Timer committed Mar 6, 2017
    Copy the full SHA
    63488c6 View commit details
    Browse the repository at this point in the history
  8. Publish

     - create-react-app@1.3.0
     - eslint-config-react-app@0.6.1
     - react-dev-utils@0.5.2
     - react-scripts@0.9.4
    Timer committed Mar 6, 2017
    Copy the full SHA
    422847b View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2017

  1. Adjust changelog wording

    Timer committed Mar 7, 2017
    Copy the full SHA
    aa434d5 View commit details
    Browse the repository at this point in the history
  2. Switch to preset-env (facebook#1742)

    * Switch to preset-env
    Disables webpack modules by enabling babel modules to resolve facebook#1638
    
    * Bump babel-core to match babel preset versions
    
    * Add uglify to targets
    Timer committed Mar 7, 2017
    Copy the full SHA
    0811775 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2017

  1. Display yarn instead of yarnpkg when creating a new app (facebook#1747)

    * Display yarn instead of yarnpkg
    
    * Refactored displayd commands
    
    * Removed testing directory
    lpalmes authored and gaearon committed Mar 9, 2017
    Copy the full SHA
    d24f98a View commit details
    Browse the repository at this point in the history
  2. Add yarn steps for adding flow (facebook#1756)

    [skip ci]
    zertosh authored and gaearon committed Mar 9, 2017
    Copy the full SHA
    06086f9 View commit details
    Browse the repository at this point in the history
  3. Suggest serve for running in production (facebook#1760)

    * 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
    leo authored and gaearon committed Mar 9, 2017
    Copy the full SHA
    f4a4e8f View commit details
    Browse the repository at this point in the history
  4. Remove 'guard-for-in' lint rule (facebook#1773)

    Iterating over an object's keys using `for/in` is idiomatic and it's safe (in all modern browsers) to not check hasOwnProperty as long as the object is a plain object. Can we remove this lint rule?
    sophiebits authored and gaearon committed Mar 9, 2017
    Copy the full SHA
    6ca7a7b View commit details
    Browse the repository at this point in the history
  5. Run CI on Node 7; Bump detect-port: 1.0.1 -> 1.1.0 (facebook#1776) (f…

    …acebook#1783)
    
    * Run CI on Node 7
    
    * Bump detect-port: 1.0.1 -> 1.1.0
    
    * Run AppVeyor CI on Node 7
    ryanwalters authored and gaearon committed Mar 9, 2017
    Copy the full SHA
    67d0403 View commit details
    Browse the repository at this point in the history
  6. Add 0.9.5 changelog (facebook#1784)

    * Add 0.9.5 changelog
    
    * Update CHANGELOG.md
    gaearon committed Mar 9, 2017
    Copy the full SHA
    5282dc3 View commit details
    Browse the repository at this point in the history
  7. Publish

     - babel-preset-react-app@2.2.0
     - eslint-config-react-app@0.6.2
     - react-scripts@0.9.5
    gaearon committed Mar 9, 2017
    Copy the full SHA
    9b23762 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2017

  1. Copy the full SHA
    356603f View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2017

  1. Feature/readme-nomoretools (facebook#1799)

    * docs: replace TDLR with a meaningful heading
    
    * docs: insert section No additional build tools
    
    * Tweak wording
    moniuch authored and Timer committed Mar 20, 2017
    Copy the full SHA
    1b47336 View commit details
    Browse the repository at this point in the history
  2. Suggest "yarn build" rather than "yarn run build" (facebook#1800)

    * Fix for issue facebook#1798: Suggested 'yarn build' versus 'yarn run build'
    
    * remove 'run' from 'yarn test' command as well
    
    * conditionally show 'run' if Yarn is not available
    geoffdavis92 authored and Timer committed Mar 20, 2017
    Copy the full SHA
    bc9aca8 View commit details
    Browse the repository at this point in the history
  3. Tweak the wording

    gaearon authored and Timer committed Mar 20, 2017
    Copy the full SHA
    b103ed7 View commit details
    Browse the repository at this point in the history
  4. Link to CRNA

    gaearon authored and Timer committed Mar 20, 2017
    Copy the full SHA
    b9e549e View commit details
    Browse the repository at this point in the history
  5. Allow creation of apps in empty mercurial repos (facebook#1811)

    * Allow creation of apps in empty mercurial repos
    
    * Adding .hgignore to list of validFiles for isSafeToCreateProjectIn check
    
    * Adding .hgcheck to list of validFiles for isSafeToCreateProjectIn check
    GreenGremlin authored and Timer committed Mar 20, 2017
    Copy the full SHA
    e3db147 View commit details
    Browse the repository at this point in the history
  6. Make Surge guide more focused

    gaearon authored and Timer committed Mar 20, 2017
    Copy the full SHA
    022822b View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2017

  1. User Guide: Removed blockquote from code section, due to markdown con…

    …flict (facebook#1869)
    
    * Removed blockquote from code section
    
    * Fix the fix
    Stoicescu Cristi authored and Timer committed Mar 23, 2017
    Copy the full SHA
    32cd4fe View commit details
    Browse the repository at this point in the history
  2. Fix AppVeyor CI (facebook#1876)

    darrenscerri authored and Timer committed Mar 23, 2017
    Copy the full SHA
    1e40708 View commit details
    Browse the repository at this point in the history
  3. Fix responsive behavior in iOS 9+ (facebook#1821)

    * Adding shrink-to-fit=no for proper responsive handling on Safari 9+
    GreenGremlin authored and Timer committed Mar 23, 2017
    Copy the full SHA
    40f558b View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    825b77c View commit details
    Browse the repository at this point in the history
  5. Update detect-port (facebook#1861)

    Previous changes caused `detect-port` to pick random port on app startup. Update fixes this regression, `detect-port` pick next available port instead.
    Andreyco authored and Timer committed Mar 23, 2017
    Copy the full SHA
    a5479de View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    d9fc932 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2017

  1. Fix AppVeyor CI (facebook#1868)

    * Fix AppVeyor CI (facebook#1876)
    
    * Run AppVeyor on Visual Studio 2017
    darrenscerri authored and Timer committed Mar 24, 2017
    Copy the full SHA
    ebebe80 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2017

  1. Suggest Yarn in HTML template (facebook#1911)

    * Fix npm to yarn
    
    * yarn & npm
    
    * Update index.html
    
    * Switch ordering of suggestion
    
    We should suggest NPM first for new users.
    tmos authored and Timer committed Apr 15, 2017
    Copy the full SHA
    df7c067 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    40d1b17 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    8bd395a View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    3d8c820 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    10dfd89 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    4b92fd3 View commit details
    Browse the repository at this point in the history
  7. Add linked modules test (0.9.x) (facebook#1912)

    * Add linked modules test
    
    * Keep fallback after eject
    Timer committed Apr 15, 2017
    Copy the full SHA
    51f34f1 View commit details
    Browse the repository at this point in the history
  8. Add note about installing watchman (facebook#1950)

    * Add note about installing watchman
    
    * Update CONTRIBUTING.md
    just-boris authored and Timer committed Apr 15, 2017
    Copy the full SHA
    19e0386 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2017

  1. Start the dev server at the specified host

    Pass the host from environment variable as argument of the devServer's
    listen function instead of a field of options object.
    Set the default host to 0.0.0.0 instead of localhost.
    GAumala authored and Timer committed Apr 19, 2017
    Copy the full SHA
    604519a View commit details
    Browse the repository at this point in the history
  2. Add folder structure docs for new contributors (facebook#1991)

    * Adding folder structure to help people navigate through project. It helps in resolving issues by providing brief description of each package and its purpose
    
    * Removing unnecessary packages from Folder structure heading
    
    * Update CONTRIBUTING.md
    anilreddykatta authored and Timer committed Apr 19, 2017
    Copy the full SHA
    47659a6 View commit details
    Browse the repository at this point in the history
  3. Relax label rules (facebook#1989)

    # Conflicts:
    #	packages/eslint-config-react-app/index.js
    Timer committed Apr 19, 2017
    Copy the full SHA
    a0c37ca View commit details
    Browse the repository at this point in the history
  4. Update doc server example to work from any directory (facebook#1988)

    * Node.js serving with absolute path
    
    It’s safer to use the absolute path of the directory that you want to serve, in case you run the express app from another directory.
    
    * Update README.md
    isramos authored and Timer committed Apr 19, 2017
    Copy the full SHA
    144f03b View commit details
    Browse the repository at this point in the history

Commits on May 3, 2017

  1. Merge branch '0.9.x' of https://github.com/facebookincubator/create-r…

    …eact-app into facebookincubator-0.9.x
    Michael LaCroix committed May 3, 2017
    Copy the full SHA
    6a8b78b View commit details
    Browse the repository at this point in the history
  2. Fix config discrepancies after merging from upstream v0.9.x

    Michael LaCroix committed May 3, 2017
    Copy the full SHA
    e16ff2f View commit details
    Browse the repository at this point in the history
  3. Minor fixes per feedback for upstream merging

    Michael LaCroix committed May 3, 2017
    Copy the full SHA
    5e19490 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2017

  1. Copy the full SHA
    5c79733 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2017

  1. Release v7.0.0

    Michael LaCroix committed May 16, 2017
    Copy the full SHA
    61c21d8 View commit details
    Browse the repository at this point in the history