1. 20 Nov, 2016 8 commits
  2. 17 Nov, 2016 1 commit
    • Ville Immonen's avatar
      Support Yarn (#898) · bcc469c9
      Ville Immonen authored
      In the `create-react-app` command, try to install packages using Yarn.
      If Yarn is not installed, use npm instead.
      
      In `react-scripts`, detect if the project is using Yarn by checking if
      a `yarn.lock` file exists. If the project is using Yarn, display all
      the instructions with Yarn commands and use Yarn to install packages
      in `init` and `eject` scripts.
      bcc469c9
  3. 01 Nov, 2016 1 commit
  4. 29 Oct, 2016 1 commit
    • Ville Immonen's avatar
      Remove custom babel-loader cache dir config (#983) · 6bda4b97
      Ville Immonen authored
      Upgrade `babel-loader` and remove the cache directory configuration
      that was added in #620. `babel-loader` now uses the
      `./node_modules/.cache/babel-loader` directory by default, so the
      custom config is no longer needed.
      6bda4b97
  5. 28 Oct, 2016 6 commits
  6. 22 Oct, 2016 3 commits
    • Ville Immonen's avatar
      Publish · a5f760ba
      Ville Immonen authored
       - babel-preset-react-app@1.0.0
       - create-react-app@0.6.0
       - eslint-config-react-app@0.3.0
       - react-dev-utils@0.3.0
       - react-scripts@0.7.0
      a5f760ba
    • Ville Immonen's avatar
      9b85e458
    • Ville Immonen's avatar
      Update dependencies (#945) · d5de99e0
      Ville Immonen authored
      * Update dependencies
      
      * Use published version of eslint-config-react-app for development
      
      We dogfood on our eslint-config-react-app by using it as our ESLint config,
      but installing it from the local folder causes problems when its peerDependencies
      are updated, because npm won't update it unless the version number changes.
      
      Use the published version for dogfooding so it can be installed from npm.
      d5de99e0
  7. 19 Oct, 2016 1 commit
  8. 17 Oct, 2016 1 commit
  9. 14 Oct, 2016 1 commit
  10. 11 Oct, 2016 2 commits
    • Kanitkorn Sujautra's avatar
      Create asset filenames mapping on the build output (#891) · 88c15d09
      Kanitkorn Sujautra authored
      * Create asset filenames mapping on the build output
      
      I use danethurber/webpack-manifest-plugin on Webpack production
      configuration to create a file named `asset-manifest.json` which contain a
      mapping of all asset filenames to their corresponding output file.
      
      `asset-manifest.json` will be located at the root of output folder.
      
      This'll resolve #600
      
      * Add an explanation for ManifestPlugin
      
      * Make webpack-manifest-plugin's version exact
      88c15d09
    • Chase Colman's avatar
      Upgrade to Jest 16 (#858) · 3539d040
      Chase Colman authored
      * Update react-scripts dependencies to use jest 16
      
      * Remove testRegex from Jest config (now default)
      3539d040
  11. 07 Oct, 2016 2 commits
  12. 06 Oct, 2016 1 commit
  13. 05 Oct, 2016 1 commit
  14. 04 Oct, 2016 3 commits
  15. 03 Oct, 2016 1 commit
  16. 01 Oct, 2016 3 commits
  17. 30 Sep, 2016 4 commits
    • Andrew Zakordonets's avatar
      Beaufity output of eject.js script (#769) · 27e76beb
      Andrew Zakordonets authored
      * Beaufity output of eject.js script
      
      * change formatting of the eject.js output and move colors to cyan
      
      * change message about file copy
      
      * add missing three dots to some statements in eject.js script
      
      * change color of "copying files" line and do not repeat copy path anymore in log
      
      * fix merge conflict
      
      * Remove yellow color from "Removing dependency" line
      
      * changing color to "Adding dependency" line
      
      * Add line that outputs which react script is getting replaced by similar node script
      
      * remove not used anymore colors
      
      * add console line about updating Jest configs
      
      * fix typo
      
      * change formatting of replacing script output in eject.js
      
      * remove "Writing package.json" file console output
      
      * make quotes cyan in "Replacing script" console output
      
      * update console log output for Jest, Babel, ESLint update and group them under one statement
      
      * Style nits
      27e76beb
    • Thien Do's avatar
      Define process.env as object (#807) · 92d9cda9
      Thien Do authored
      * Define process.env as object
      
      * Fix define process.env
      
      * fix NODE_ENV check
      
      * Fix style nitpick
      92d9cda9
    • Sebastian De Deyne's avatar
      Typo fix in webpack.config.dev.js comments (#777) · 0ad930e1
      Sebastian De Deyne authored
      * Typo fix in webpack.config.dev.js comments
      
      * Typo fix in webpack.config.prod.js comments
      0ad930e1
    • Mathias Biilmann Christensen's avatar
      590334e1