Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make browsers list configurable #3182

Closed
wants to merge 103 commits into from

Commits on May 25, 2017

  1. Autoprefixer's browsers option is currently hardcoded. This PR adds t…

    …he browserslist key in package.json which allows developers to set browsers list in queries like "Chrome >= 35", "Firefox >= 38" for both production and development. Autoprefixer which relies on Browserslist will find its config automatically. This PR fixes facebook#2248 and facebook#892
    cr101 committed May 25, 2017
    Configuration menu
    Copy the full SHA
    8512933 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2ba437 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    377d70e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a617388 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d479b9f View commit details
    Browse the repository at this point in the history

Commits on May 30, 2017

  1. Configuration menu
    Copy the full SHA
    aa25bab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c02989 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2017

  1. Configuration menu
    Copy the full SHA
    6d93bb7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68fed74 View commit details
    Browse the repository at this point in the history
  3. Remove old 2009 syntax of Flexbox (i.e -webkit-box, -webkit-box-*) wh…

    …ich is no longer supported
    cr101 committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ebc436a View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2017

  1. lerna-changelog

    cr101 committed Jun 28, 2017
    Configuration menu
    Copy the full SHA
    9ec67b4 View commit details
    Browse the repository at this point in the history
  2. upstream changes

    cr101 committed Jun 28, 2017
    Configuration menu
    Copy the full SHA
    4f40f6f View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2017

  1. remove warning messages

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    7177a59 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa50ef5 View commit details
    Browse the repository at this point in the history
  3. Delete yarn.lock

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    135b90d View commit details
    Browse the repository at this point in the history
  4. Delete cra.js

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    30d3727 View commit details
    Browse the repository at this point in the history
  5. update my local copy

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    eb01f6d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1eeee99 View commit details
    Browse the repository at this point in the history
  7. Delete package-lock.json

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    fedf184 View commit details
    Browse the repository at this point in the history
  8. Delete package-lock.json

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    6bc0271 View commit details
    Browse the repository at this point in the history
  9. Delete package-lock.json

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    621e2bd View commit details
    Browse the repository at this point in the history
  10. Delete package-lock.json

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    89e8437 View commit details
    Browse the repository at this point in the history
  11. Delete package-lock.json

    cr101 committed Jun 29, 2017
    Configuration menu
    Copy the full SHA
    aed45d2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    317cfe6 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2017

  1. Configuration menu
    Copy the full SHA
    9bad6a7 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2017

  1. Configuration menu
    Copy the full SHA
    5cc82a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    39fdefa View commit details
    Browse the repository at this point in the history
  3. Remove Windows note for source-map-explorer (facebook#2719)

    Glob support has been added in source-map-explorer@1.4+
    hodanny authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    0d5b936 View commit details
    Browse the repository at this point in the history
  4. Reorder vim arguments in launchEditor so --remote works (facebook#2723)

    This allows you to set REACT_EDITOR to 'vim --remote', so the file can
    be opened in an already running vim process. When using vim without
    remote, it works in the same way as before.
    
    When launching vim without --remote, the order of the line and path
    arguments doesn't matter. However, when using --remote the line argument
    has to precede the path. This happens to be the same as joe and emacs
    uses, so the vim cases were just moved there.
    
    I haven't tested this with mvim, but the documentation says the same as
    the vim documentation, so I assume it works the same.
    trygveaa authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    d87b73a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    85da897 View commit details
    Browse the repository at this point in the history
  6. Support PyCharm in launchEditor (facebook#2740)

    PyCharm has the same signature as WebStorm and PhpStorm `<editor> <projectPath> --line <number> <filePath>` so it can reuse the logic from those.
    
    https://www.jetbrains.com/help/pycharm/opening-files-from-command-line.html
    
    Tested with PyCharm Pro 2017.1.4 on MacOS 10.12
    danrr authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    88dc055 View commit details
    Browse the repository at this point in the history
  7. Add "node" to Jest's moduleFileExtensions (facebook#2738)

    Jest's default value for this option is ["js", "json", "jsx", "node"].
    CRA's current value is ["web.js", "js", "json", "web.jsx", "jsx"], which
    is missing one of default ones: "node". This change fixes that.
    
    This "node" extension is used in packages that use native code.
    mostafah authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    a0240c3 View commit details
    Browse the repository at this point in the history
  8. ESLint 4 (facebook#2735)

    * Update eslint-loader 1.7.1 -> 1.9.0
    
    * Add eslintPath option
    
    * Update eslint 3.19.0 -> 4.1.1
    
    * Update peer dependencies
    
    * Move eslintPath config to outside @remove-on-eject
    trungdq88 authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    f64c910 View commit details
    Browse the repository at this point in the history
  9. Use Rule.oneOf to resolve correct loader (facebook#2747)

    * Use oneOf to resolve correct loader
    
    * Add html and json fallthrough again
    
    * Use oneOf to resolve correct loader in dev
    
    * Document file-loaders `js` exclusion
    
    * Remove `jsx` from exclusion in prod config
    Furizaa authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    447c559 View commit details
    Browse the repository at this point in the history
  10. Autodetect JetBrains IDEs (facebook#2754)

    Autodetect PyCharm (Pro and CE), WebStorm, PhpStorm, IntelliJ IDEA, RubyMine, CLion, and AppCode
    
    Added IntelliJ IDEA, RubyMine, CLion, and AppCode to list of IDEs. It has the same signature as WebStorm and PhpStorm `<editor> <projectPath> --line <number> <filePath>` so it can reuse the logic from those.
    
    Removed older integrations of AppCode, IntelliJ IDEA
    
    https://www.jetbrains.com/help/idea/opening-files-from-command-line.html
    https://www.jetbrains.com/help/pycharm/opening-files-from-command-line.html
    https://www.jetbrains.com/help/phpstorm/opening-files-from-command-line.html
    https://www.jetbrains.com/help/ruby/opening-files-from-command-line.html
    https://www.jetbrains.com/help/webstorm/opening-files-from-command-line.html
    
    Tested with Appcode 2017.1.3, CLion 2017.1.3, Intellij Idea 2017.1.5, PhpStorm 2017.1.4, PyCharm (Pro and CE) 2017.1.4, RubyMine 2017.1.5, and WebStorm 2017.1.4 on MacOS 10.12
    Tested with 64-bit CLion 2017.1.3, Intellij Idea 2017.1.5, PhpStorm 2017.1.4, PyCharm (Pro and CE) 2017.1.4, RubyMine 2017.1.5, and WebStorm 2017.1.4 on a Windows 10 VM
    
    Relates to facebook#2636
    danrr authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    f64fa47 View commit details
    Browse the repository at this point in the history
  11. Don't prompt to install serve if already installed (facebook#2761)

    * dont prompt if serve is already installed
    
    * change name for readability
    
    * Pin the version
    OwenFlood authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    31695a3 View commit details
    Browse the repository at this point in the history
  12. Docs for react-router v4 basename feature (facebook#2668)

    * Docs for react-router v4 basename feature
    
    Fix facebook#2593
    
    * Update README.md
    
    * Update README.md
    
    * Update README.md
    
    * Update README.md
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    cf39747 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    18ed6ba View commit details
    Browse the repository at this point in the history
  14. List conflicting files when initializing app (facebook#2785)

    * change error wording and list conflicting files when initializing app
    
    * update code
    
    * Update createReactApp.js
    OwenFlood authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    6842607 View commit details
    Browse the repository at this point in the history
  15. Update link for motion (facebook#2788)

    They moved it to pundle monorepo 2 months ago
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    a39ebf3 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    86a97db View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    7255a60 View commit details
    Browse the repository at this point in the history
  18. Feature/webpack3 (facebook#2574)

    * Add source-map-loader to support source maps of dependencies
    
    * merge with latest develop
    
    * add ModuleConcatenationPlugin
    
    * revert source-map-loader
    
    * bump to 3.1 and update dev-server
    
    * rebase to master
    
    * rebase again
    
    * bump webpack
    
    * remove ModuleConcatenationPlugin, downgraded react packages, bump etwp
    
    * ETWP rc1 only for testing
    
    * bump ETWP and webpack 3
    
    * bump WP3
    
    * revert to 3.2.0
    
    * bump sw-precache-webpack-plugin
    
    * bump back to 3.3.0
    
    * bump dev-server and manifest
    themre authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    0a2f3c3 View commit details
    Browse the repository at this point in the history
  19. Bump Webpack 3.4 (facebook#2850)

    * bump wp3
    
    * try bump babel-loader
    themre authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    85cf101 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    cefd04b View commit details
    Browse the repository at this point in the history
  21. Use modern syntax feature (facebook#2873)

    The create-react-app need node >= 6, and node version 6 support a lot of ES6, and let's switch using '+' to concat string with template string.
    monkindey authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    58131e3 View commit details
    Browse the repository at this point in the history
  22. Update webpack version note (facebook#2798)

    * Remove note about webpackHotDevClient being webpack 1.0 only
    
    It must work in webpack 2 since create-react-app is still using it and is using webpack 2 now.
    
    It would be great if you could add some kind of note about how it differs from the default webpack hot reloaders.
    
    * Update README.md
    
    * Update README.md
    ForbesLindesay authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    3ac5c05 View commit details
    Browse the repository at this point in the history
  23. Fix parsing HTML/JSX tags to real elements (facebook#2796)

    * Fix parsing HTML/JSX tags to real elements
    
    * Use `html-entities` to escape instead of pure `replace()`
    
    * Remove unnecessary HTML entity replacing
    ccloli authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    2cda4fb View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    e8ed107 View commit details
    Browse the repository at this point in the history
  25. Update README.md

    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    1bb2d4a View commit details
    Browse the repository at this point in the history
  26. Update README.md

    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    90d9282 View commit details
    Browse the repository at this point in the history
  27. Unstage yarn.lock pre-commit (facebook#2700)

    Since yarn.lock shouldn't be added to the repo, nor excluded via
    .gitignore, lets take advantage of lint-staged to remove any staged
    yarn.lock files before they can even be committed.
    jdcrensh authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    d35f2ea View commit details
    Browse the repository at this point in the history
  28. Format UglifyJs error (facebook#2650)

    * format UglifyJs error
    
    * move formatBuildError to react-dev-utils
    
    * fix readme
    
    * use regex for plucking the path from stack
    
    * make path human readable and fallback to show error if regex not matched
    
    * rename to printBuildError and add link to the docs
    
    * fix link indentation
    
    * improve readibility + shorten link
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    05fb04b View commit details
    Browse the repository at this point in the history
  29. Re-enable flowtype warning (facebook#2718)

    * Re-enable flowtype warning
    
    * Update eslint-plugin-flowtype dependency
    Oskar Köök authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    40615bd View commit details
    Browse the repository at this point in the history
  30. Allow importing package.json (facebook#2468)

    * Allow importing package.json
    
    * Remove package.json import from App.js template
    
    * fix importing package.json
    
    * Rename variable to reflect path is relative to root
    
    * Check for both package & package.json in ModuleScopePlugin
    
    * Use regex to check relative path to package.json
    
    * Strictly enforce package.json extension on scope plugin
    
    * Add allowedPaths to ModuleScopePlugin ctor and use it to allow app package.json
    
    * Remove package.json import from App.js template
    
    * Add package.json to react-scripts/template, show package version and name in the template
    
    * Remove import package.json from template
    
    * Remove template/package.json and its references in code
    
    * Update ModuleScopePlugin.js
    
    * Update README.md
    iamdoron authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    1950838 View commit details
    Browse the repository at this point in the history
  31. Feature/webpack 3 4 (facebook#2875)

    * bump wp3
    
    * try bump babel-loader
    
    * bump 3.4.1
    themre authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    b32e52b View commit details
    Browse the repository at this point in the history
  32. Fix the order of arguments in spawned child proc (facebook#2913)

    * Fix the order of arguments in spawned child proc
    
    * Update react-scripts.js
    
    * Remove a comma
    
    * Update react-scripts.js
    koistya authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    99b6b11 View commit details
    Browse the repository at this point in the history
  33. Adjust the checkIfOnline check if in a corporate proxy environment (f…

    …acebook#2884)
    
    * Adjust the `checkIfOnline` check if in a corporate proxy environment
    If the environment variable `https_proxy` is set, test that the proxy name is resolveable rather than 'registry.yarnpkg.com'.
    This fixes facebook#2832.
    
    * Adjust to check yarnpkg.com first, then check the proxy address only if that failed
    bsyk authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    6ec13c3 View commit details
    Browse the repository at this point in the history
  34. Make formatWebpackMessages return all messages (facebook#2834)

    * Move the reduction of the messages to a single place in the place it is used.
    
    * Fix variable name
    onigoetz authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    3e0069f View commit details
    Browse the repository at this point in the history
  35. Use env variable to disable source maps (facebook#2818)

    * use env variable to disable source maps
    
    * Rename to use SOURCE_MAP with explicit value
    
    * Update webpack.config.prod.js
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    fb155b9 View commit details
    Browse the repository at this point in the history
  36. Update README.md

    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    dc0c281 View commit details
    Browse the repository at this point in the history
  37. Update dev deps (facebook#2923)

    * Bump deps
    
    * Fix linter errors
    
    * Whoops
    
    * Try to bump webpack
    
    * Update peer deps to min for eslint 4.x
    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    00de4d4 View commit details
    Browse the repository at this point in the history
  38. Prepare for 1.0.11 release (facebook#2924)

    * Prepare for release
    
    * Make sure there's a break
    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    c1545e7 View commit details
    Browse the repository at this point in the history
  39. Publish

     - babel-preset-react-app@3.0.2
     - create-react-app@1.4.0
     - eslint-config-react-app@2.0.0
     - react-dev-utils@3.1.0
     - react-error-overlay@1.0.10
     - react-scripts@1.0.11
    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    d595621 View commit details
    Browse the repository at this point in the history
  40. Update README.md (facebook#2927)

    Fixing a small typo.
    tbassetto authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    a3d034f View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    14c2b12 View commit details
    Browse the repository at this point in the history
  42. Remove Modulus from user guide (facebook#2948)

    The service was rebranded to xervo.io and was completely shut down in April 2017
    Zertz authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    071d60d View commit details
    Browse the repository at this point in the history
  43. Fix docs for printFileSizesAfterBuild (facebook#2942)

    * Fix docs for `printFileSizesAfterBuild`
    
    * Add optionals parameters for `printFileSizesAfterBuild`
    Kerumen authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    0a9f42b View commit details
    Browse the repository at this point in the history
  44. Docs: debugging in WebStorm (facebook#2986)

    * Debugging in WebStorm
    
    * Fixed formatting for shortcuts
    
    * Added note about default URL
    prigara authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    59544f0 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    0e7b969 View commit details
    Browse the repository at this point in the history
  46. Bump react-dev-utils

    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    6def3d4 View commit details
    Browse the repository at this point in the history
  47. Convert react-error-overlay to React (facebook#2515)

    * Convert react-error-overlay to React
    
    * Update compile-time error overlay to use react-error-overlay components
    
     * Refactor react-error-overlay components to container and presentational components.
    
     * Make the compile-time error overlay a part of react-error-overlay package.
    
     * Use react-error-overlay as dependency in react-dev-utils to show compile-time errors.
    
    * Run Prettier
    
    * Move the function name fix into StackFrame itself
    
    * Fix clicking on source code snippet to open the code in editor
    
    * Use exact objects + minor style tweak
    
    * Don't linkify frames that don't exist on the disk
    
    * Fix lint
    
    * Consolidate iframe rendering logic
    
    * Remove circular dependency between react-dev-utils and react-error-overlay
    
    * Fix lint
    
    * Fix decoupling of react-dev-utils and react-error-overlay by moving middleware
    
    * Deduplicate identical errors
    tharakawj authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    5ab2f6e View commit details
    Browse the repository at this point in the history
  48. update babel-runtime dependency in react-error-overlay and react-scri…

    …pts (facebook#2991)
    
    * update babel-runtime dependency in react-error-overlay and react-scripts
    
    `babel-runtime@6.23.0` have a dependency on `regenerator-runtime@0.10.5`
    `babel-runtime@6.26.0` on `regenerator-runtime@0.11.0`
    
    > npm ls regenerator-runtime
    
    ```
    └─┬ react-scripts@1.0.11
      ├─┬ babel-core@6.25.0
      │ └─┬ babel-runtime@6.26.0
      │   └── regenerator-runtime@0.11.0
      ├─┬ babel-eslint@7.2.3
      │ └─┬ babel-traverse@6.26.0
      │   └─┬ babel-runtime@6.26.0
      │     └── regenerator-runtime@0.11.0
      ├─┬ babel-runtime@6.23.0
      │ └── regenerator-runtime@0.10.5
      └─┬ react-error-overlay@1.0.10
        └─┬ babel-runtime@6.23.0
          └── regenerator-runtime@0.10.5
    ```
    
    * fix requested changes
    christophehurpeau authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    311fa77 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    2f440bb View commit details
    Browse the repository at this point in the history
  50. Relax React dep requirements

    gaearon authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    7239433 View commit details
    Browse the repository at this point in the history
  51. Changelog for 1.0.12 (facebook#3016)

    gaearon authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    28db31a View commit details
    Browse the repository at this point in the history
  52. Publish

     - react-dev-utils@4.0.0
     - react-error-overlay@2.0.0
     - react-scripts@1.0.12
    gaearon authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    dd460e2 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    8f54102 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    8556bbd View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    0b27dc2 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    7693702 View commit details
    Browse the repository at this point in the history
  57. Make error overlay filename configurable (facebook#3028)

    * Make error overlay file configurable
    
    * Add fallback filename
    jaredpalmer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    fbe0366 View commit details
    Browse the repository at this point in the history
  58. Add missing slash

    gaearon authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    bfeb83e View commit details
    Browse the repository at this point in the history
  59. Changelog for 1.0.13

    gaearon authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    6c8c2be View commit details
    Browse the repository at this point in the history
  60. Publish

     - react-dev-utils@4.0.1
     - react-error-overlay@2.0.1
     - react-scripts@1.0.13
    gaearon authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    66ccd1f View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    b5baa74 View commit details
    Browse the repository at this point in the history
  62. Update eslint-config npm install command (facebook#3072)

    The `npm install` script for outside usage instructions is outdated. Updated to match the package's current peer dependencies.
    jdcrensh authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    5083407 View commit details
    Browse the repository at this point in the history
  63. Unmapper Windows compatibility (facebook#3079)

    * Switch to unix path separators before normalizing path for Windows compatibility
    
    * Add comment for posterity
    
    * Revert "Add comment for posterity"
    
    This reverts commit 742bace.
    
    * Strictly add comment
    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    db58bf4 View commit details
    Browse the repository at this point in the history
  64. run npm 5.4.0 in CI (facebook#3026)

    * run npm 5.4.0 in CI
    
    * run npm cache clean with --force in CI
    
    * use link instead of install
    
    * Update e2e-installs.sh
    
    * Update e2e-kitchensink.sh
    
    * Update e2e-simple.sh
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    f3defb9 View commit details
    Browse the repository at this point in the history
  65. Reload the page when an error has occurred (facebook#3098)

    * Reload the page when an error has occurred
    Fixes facebook#3096
    
    * Use a global boolean instead
    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    5786537 View commit details
    Browse the repository at this point in the history
  66. Rerun prettier and pin version (facebook#3058)

    * rerun prettier for all files
    
    * pin prettier to 1.6.1
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    a8ef240 View commit details
    Browse the repository at this point in the history
  67. Clean target directory before compiling overlay (facebook#3102)

    * Clean target directory before compiling overlay
    
    * Use rimraf
    Timer authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    573c2f2 View commit details
    Browse the repository at this point in the history
  68. Auto-detect running editor on Linux for error overlay (facebook#3077)

    * Auto-detect running editor on Linux for error overlay
    
    Basic support of auto detecting running editor for facebook#2636.
    Tested on Ubuntu 16.04.
    It detects few editors. JetBrains products should start by
    wrapper like /usr/local/bin/webstorm. Otherwise it takes a
    lot of time to open editor.
    
    * Comments fixed.
    
    * List all processes owned by you
    
    * Comment rewording
    gulderov authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    b8c65f3 View commit details
    Browse the repository at this point in the history
  69. Updated react-error-overlay to latest Flow (0.54.0) (facebook#3065)

    * Updated react-error-overlay to latest Flow (0.54.0)
    
    * Revert "Updated react-error-overlay to latest Flow (0.54.0)"
    
    This reverts commit 6deaffb.
    
    * Fixed unit tests.
    
    * Updated code as per code review.
    
    * Fixed code as per code review.
    
    * Updated the code as per review.
    duvet86 authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    feef70e View commit details
    Browse the repository at this point in the history
  70. Revert "run npm 5.4.0 in CI (facebook#3026)" (facebook#3107)

    This reverts commit fcb6dc5.
    viankakrisna authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    2141dac View commit details
    Browse the repository at this point in the history
  71. Resolved issue facebook#2971 (facebook#2989)

    * Resolved issue facebook#2971
    
    - changed h2 to h1 in template to adhere to accessibility guidelines.
    - Added h1 styles to maintain same font size.
    
    * Added header tag to template
    
    Corrected templete to use semantically correct header tag for header instead of div
    
    * Added className for App-title
    
    - Added className="App-title" to h1 tag
    - Changed CSS selector to target class instead of element
    David Leger authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    e1c916d View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    f910493 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    43fcb35 View commit details
    Browse the repository at this point in the history
  74. Update unclear wording in webpack config docs (facebook#3160)

    Kristie Howard authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    d91caf0 View commit details
    Browse the repository at this point in the history
  75. Part of class fields to stage 3 (facebook#2908)

    * Class fields to stage 3
    
    Per 2017.07.27 TC39
    tc39/proposals@0bbbb08
    
    * Be explicit that only the public part of the unified field proposal is available.
    rickbeerendonk authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    3293334 View commit details
    Browse the repository at this point in the history
  76. Update webpack-dev-server to 2.8.2 (facebook#3157)

    It doesn't look like there is any backwards incompatibility:
    
    https://github.com/webpack/webpack-dev-server/releases
    nikolas authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    35c9c29 View commit details
    Browse the repository at this point in the history
  77. Add link to active CSS modules discussion (facebook#3163)

    * Add link to active CSS modules discussion
    
    * Update README.md
    zikaari authored and kasperpeulen committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    4c21ec0 View commit details
    Browse the repository at this point in the history
  78. Configuration menu
    Copy the full SHA
    5e93468 View commit details
    Browse the repository at this point in the history