1. 24 Feb, 2017 10 commits
  2. 23 Feb, 2017 2 commits
    • Joe Haddad's avatar
      Bump deps for webpack 2 compat (#1621) · 21fe19ab
      Joe Haddad authored
      21fe19ab
    • Jirat Ki's avatar
      Install react, react-dom, and react-scripts at the same time (#1253) · a82896c3
      Jirat Ki authored
      * 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 #1239
      a82896c3
  3. 22 Feb, 2017 1 commit
  4. 18 Feb, 2017 1 commit
  5. 16 Feb, 2017 2 commits
  6. 15 Feb, 2017 6 commits
  7. 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
  8. 12 Feb, 2017 7 commits
  9. 11 Feb, 2017 8 commits
    • Blaine Kasten's avatar
      Suggest jest-enzyme for simplifying test matchers (#994) · 8ec99b6f
      Blaine Kasten authored
      * Suggest jest-enzyme for simplifying test matchers
      
      * Update README.md
      
      * Update README.md
      8ec99b6f
    • Joe Haddad's avatar
      Upgrade webpack (#1291) · 12288836
      Joe Haddad authored
      * Upgrade webpack
      
      * Address more webpack v2 ...
      
      * Update html-webpack-plugin
      
      * Remove LoaderOptionsPlugin from dev config
      
      * ExtractTextPlugin still uses webpack 1 syntax
      ... and doesn't support complex options (yet)
      
      * Grammar nit
      
      * Update extract text webpack plugin
      
      * - Remove webpack.LoaderOptionsPlugin
      - Update deps
      
      * Lerna hoists packages
      
      * Update extract-text-webpack-plugin
      
      * Update webpack-dev-server
      
      * Remove imports for the tests
      
      * stop removing babelrc
      12288836
    • Dan Abramov's avatar
      Add additional info about env variables · 9f127631
      Dan Abramov authored
      9f127631
    • Dan Abramov's avatar
    • 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
      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
    • 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
  10. 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