1. 20 Sep, 2018 3 commits
  2. 19 Sep, 2018 5 commits
  3. 18 Sep, 2018 7 commits
  4. 17 Sep, 2018 5 commits
  5. 02 Sep, 2018 1 commit
  6. 22 Aug, 2018 1 commit
  7. 26 Jul, 2018 1 commit
  8. 23 Jul, 2018 2 commits
  9. 15 Jul, 2018 1 commit
  10. 05 Jul, 2018 2 commits
  11. 30 Jun, 2018 1 commit
  12. 07 Jun, 2018 1 commit
  13. 05 Jun, 2018 3 commits
  14. 03 Jun, 2018 1 commit
  15. 31 May, 2018 1 commit
    • Joshua Comeau's avatar
      Create a `--stats` flag for react-scripts `build`. Update README. · 7c859384
      Joshua Comeau authored
      To analyze Webpack bundles, a "stats" JSON is required.
      
      This PR allows that file to be created and saved to the `build`
      directory, so that users can use it with Webpack-specific insight
      tools like `webpack-bundle-analyzer` without ejecting their
      application.
      
      Updated the README to include details for how to do this.
      7c859384
  16. 24 May, 2018 1 commit
  17. 23 May, 2018 1 commit
    • Graeme's avatar
      Update paths.js, rename shadow path variable (#4435) · 61c864c3
      Graeme authored
      * Update paths.js, rename shadow path variable
      
      This file requires the "path" module and sets it to a variable `path`. The function `ensureSlash` also has a variable `path` that then shadows the `path` module.
      
      * Update paths.js
      61c864c3
  18. 22 May, 2018 1 commit
  19. 20 May, 2018 2 commits
    • Luis Nell's avatar
      Update node-sass-chokidar docs (#4205) · 0dfc6f6e
      Luis Nell authored
      * Removes Chokidar Recursive Flag
      
      According to the changelog it is not necessary anymore as it doesn't do anything.
      
      * Removes initial build on SCSS watch
      
      Chokidar now does this on it's own.
      
      * Removes sass watch recursive, default include-path
      
      as proposed by @michaelwayman
      
      * Removes another left-over build-css
      0dfc6f6e
    • Craig Mulligan's avatar
      `.mjs` should not resolve before .js files (#4085) (#4318) · 0e0f260e
      Craig Mulligan authored
      Support for .mjs files added in #3239 did not account for npm libraries which ship native mjs files alongside js files. This accounts for this by ensuring .js files resolve before their accompanying .mjs file. Note that this is not an ideal end state since selecting a .mjs over a .js extension should be the result of whether `import` was used instead of `require()` in a node environment with native ESM support (currently via `--experimental-modules`). Instead, this change just *always* selects a .js extension before the .mjs extension if it exists.
      
      This unbreaks support for using GraphQL (relay, apollo, etc) within create-react-app projects.
      0e0f260e