1. 05 Dec, 2016 2 commits
    • Stephen John Sorensen's avatar
      Add testURL to jest config (#1120) · aaa615f6
      Stephen John Sorensen authored
      In my tests, jsdom was throwing a "SecurityError" at HistoryImpl._sharedPushAndReplaceState (node_modules/react-scripts/node_modules/jsdom/lib/jsdom/living/window/History-impl.js:87:15)
      
      This happens because document.URL defaults to "about:blank". Unfortunately, if you interact with the History object it tries and fails to parse the URL, causing a "SecurityError" to be thrown. Setting the default URL to "http://localhost" fixes this issue.
      aaa615f6
    • Brian Ng's avatar
      Make jsx-no-undef rule an error (#1159) · 15f65a0a
      Brian Ng authored
      15f65a0a
  2. 04 Dec, 2016 2 commits
    • Ville Immonen's avatar
      Publish · b844e4e8
      Ville Immonen authored
       - react-scripts@0.8.1
      b844e4e8
    • Ville Immonen's avatar
      Revert Jest moduleNameMapper regex back to a whitelist (#1149) · 715de0de
      Ville Immonen authored
      Jest matches moduleNameMapper regexes with module names, not the full
      file path, so the negative lookahead doesn’t work for filtering out
      JS files, because they can be imported without the extension. So paths
      like `lodash.assign` and `../utils/range` were mislabeled as resources
      with unknown file extensions because they have a dot in the name.
      
      As a stopgap measure, revert the moduleNameMapper regex added in #1077.
      715de0de
  3. 03 Dec, 2016 5 commits
  4. 01 Dec, 2016 1 commit
  5. 28 Nov, 2016 1 commit
  6. 23 Nov, 2016 3 commits
  7. 22 Nov, 2016 1 commit
    • Ian McNally's avatar
      add logging of existing default port process on start (#816) · 05c3b55c
      Ian McNally authored
      * add logging of existing port process on start
      
      * Move port process wording in start command on to next line
      
      * Color the named processes as cyan in terminal output
      
      * Add handling for multiple processes on a part
      
      - With the currently process filtering, if multiple processes are returned as running on port 3000, this command would fail. This splits apart the process IDing and the process naming, to support multiple processes.
      - One curious thing about the bash command to get processes, is that it'll include browsers with a window open on localhost:3000. May want to reconsider that.
      
      * Add process directory to existing port warning
      
      - also moved terminal coloring up, when getting the process, to be able to distinguish the process command from the directory
      
      * Change output color to all cyan, except "in"
      
      * Rename getProcessNameOnPort -> getProcessForPort
      
      - better reflects its broadened scope (both command and directory)
      
      *...
      05c3b55c
  8. 21 Nov, 2016 6 commits
  9. 20 Nov, 2016 14 commits
  10. 17 Nov, 2016 5 commits