1. 19 May, 2017 15 commits
  2. 18 May, 2017 5 commits
  3. 17 May, 2017 6 commits
  4. 16 May, 2017 11 commits
  5. 15 May, 2017 3 commits
    • Dan Abramov's avatar
      Enable CSS sourcemaps in production (#2168) · 9b231d46
      Dan Abramov authored
      9b231d46
    • Gabriel Aumala's avatar
      Support node scripts in BROWSER (#1590) · 8f028ae4
      Gabriel Aumala authored
      * Support node scripts in BROWSER
      
      Modify OpenBrowser.js to run node scripts specified with the BROWSER environment
      variable . If the value of the BROWSER environment variable ends with '.js' a
      child process is spawned to execute the script with node.js. Any
      arguments passed to npm start are also passed to this script, as well as
      the url where the app is served.
      The command executed in the child process is:
      
      node <pathToScript> [OPTIONS] <url>
      
      Update User Guide.
      
      * Tweak code style
      
      * Pin dep
      
      * Comment out 0.10 docs
      8f028ae4
    • Dan Abramov's avatar
      Support hoisting react-scripts and add require.resolve() to loaders (#2166) · d6dbfc03
      Dan Abramov authored
      * Support hoisting react-scripts
      
      * require.resolve() loaders and configs
      
      This makes it so that loaders and configs are resolved relative to the config rather than to the app. This seems to make more sense to me.
      d6dbfc03