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

Bump eslint-plugin-jsx-a11y version #1364

Closed
wants to merge 63 commits into from
Closed

Commits on Jan 9, 2017

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

Commits on Feb 12, 2017

  1. Use yarnpkg alias to run Yarn (facebook#1365)

    There’s a common tool included in Hadoop that also has a `yarn` command,
    which created issues for users who had Hadoop installed:
    * facebook#1257
    * facebook#1363
    
    Yarn also installs the command under `yarnpkg` alias (added in
    yarnpkg/yarn@cefa9a3)
    so we can use `yarnpkg` instead of `yarn` to make it more reliable.
    
    This has no effect on users who don't have Hadoop installed, but those
    who have won't see errors from falsely detecting Hadoop Yarn as Yarn
    the package manager, and they can now also install Yarn to make use of
    our Yarn support without the Hadoop Yarn interfering.
    fson authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    691ae81 View commit details
    Browse the repository at this point in the history
  2. Update changelog for 0.8.5

    fson authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    6bd0bba View commit details
    Browse the repository at this point in the history
  3. Publish

     - create-react-app@1.0.3
     - react-scripts@0.8.5
    fson authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    2364587 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cea1eda View commit details
    Browse the repository at this point in the history
  5. Change console.log for errors and warnings (facebook#1375)

    Array.forEach is passed the following parameters:
    
    currentValue
        The current element being processed in the array.
    index
        The index of the current element being processed in the array.
    array
    - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
    
    console.log takes multiple arguments. We only want to print the first one, the actually message.
    jimmyhmiller authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    9c043e2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9d2eac5 View commit details
    Browse the repository at this point in the history
  7. Document Flow support (facebook#1384)

    * Document Flow support
    
    Projects created by Create React App use the `babel-preset-react` which includes
    Flow babel plugins which introduces new syntax. This is important for users to know
    as it causes what used to be syntax errors to be silently suppressed because they're
    valid type annotations in Flow. For example if a user accidentally has `[foo: 'bar']`,
    Babel will silently convert it to `[foo]`.
    
    * Make it a bit clearer
    dschep authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    820a648 View commit details
    Browse the repository at this point in the history
  8. Use a more sophisticated template for end-to-end testing. (facebook#1187

    )
    
    * Use a more sophisticated template for end-to-end testing.
    
    * Not publish integration tests to npm
    
    * Use "commander" for  cli argv handling
    
    * Handle different scripts version forms and exits without a name given
    
    * Prepare the commands for testing with a template
    
    * Fix dev "template" path
    
    * Add various features to test
    
    * Test various features separately
    
    * Test language features
    
    * Comment unused e2e.sh lines
    
    * Add "development" tests
    
    * Test environment variables
    
    * Test webpack plugins
    
    * Replace kitchensink README
    
    * Switch integration tests from jest to mocha
    
    * Use `fs-extra`
    
    * Use the correct folders
    
    * Do some cleanup
    
    * Print a better message for `--template`
    
    * Test `npm start` with and without https
    
    * Separate fast e2e testing from kitchensink testing
    
    * Hide `--internal-testing-template` (former `--template`) CLI option
    EnoahNetzach authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    1903ad3 View commit details
    Browse the repository at this point in the history
  9. replace two space syntax with <br> tag (facebook#1393)

    for consistency :)
    carlsagan21 authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    092167b View commit details
    Browse the repository at this point in the history
  10. Add causes of dev server not detecting changes (facebook#1422)

    * Add causes of dev server not detecting changes
    
    Add causes of `npm start` not detecting changes to Troubleshooting chapter of User Guide
    
    * Reworded slightly
    
    * Update README.md
    jetpackpony authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    441e4f8 View commit details
    Browse the repository at this point in the history
  11. Added links to tutorials for integrating cra with an api backend (fac…

    …ebook#1437)
    
    * Added Rails link to User Guide
    
    * docs: unify sections for rails and node backend integration
    
    * docs: fix faulty link and indentation
    alexdriaguine authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    85c9ae6 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    deb2c29 View commit details
    Browse the repository at this point in the history
  13. Bump Jest version (facebook#1432)

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    c650ebf View commit details
    Browse the repository at this point in the history
  14. Readme: Removes experimental from Jest snapshot (facebook#1453)

    Per final comment in facebook#372
    
    `Snapshot rendering should actually be pretty stable / useable after React 15.4.1.
    See this post for more info.`
    frehner authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    9684ced View commit details
    Browse the repository at this point in the history
  15. eject: Additionally remove react-scripts from dependencies (faceboo…

    …k#1458)
    
    ATM if react-scripts is (erroneously) declared in `dependencies` instead of `devDependencies` or isn't declared at all, the `eject` script will fail half-way. This change makes it more robust, react-scripts will be removed from either, if present.
    creynders authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    df7ae03 View commit details
    Browse the repository at this point in the history
  16. E2e jsdom fix (facebook#1470)

    * E2E: run tests when react is ready
    
    * Entangle e2e with callbacks
    
    * Remove unused e2e lines
    EnoahNetzach authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    8ad0121 View commit details
    Browse the repository at this point in the history
  17. - import expect and expect flow (facebook#1463)

    - code style
    tuchk4 authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    4494462 View commit details
    Browse the repository at this point in the history
  18. Reflect websocket proxy support on README (facebook#1013) (facebook#1483

    )
    
    * Reflect websocket proxy support on README
    
    * Add 'the'
    frontsideair authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    bfbb9bb View commit details
    Browse the repository at this point in the history
  19. Edit User Guide: Add ESLint config for VS Code users (facebook#1482)

    * Add ESLint config for VS Code users
    
    * Update VSC ESLint note to a better solution 
    
    Update VSC ESLint note to a better solution as discussed in Pull Request
    vulong23 authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    cd2191f View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    515a0df View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    8f48efd View commit details
    Browse the repository at this point in the history
  22. Update comments for webpack loaders

    ro-savage authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    65cc877 View commit details
    Browse the repository at this point in the history
  23. Change "OS X" references to "macOS" (facebook#1511)

    Updated README.md to refer to the current rebranding.
    RodrigoHahn authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    a25909e View commit details
    Browse the repository at this point in the history
  24. corrected minor typo (facebook#1514)

    Chandan Rai authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    b960c2c View commit details
    Browse the repository at this point in the history
  25. clarifying the use of custom environment variables (facebook#1513)

    * clarifying the use of custom environment variables
    
    * Tweak
    calweb authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    f5ae7c2 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    7125a2c View commit details
    Browse the repository at this point in the history
  27. Make all react app vars accessible in index.html (facebook#1440)

    * Make all vars accessiable in index.html
    
    * Fix wrong env provieded to DefinePlugin
    
    * Separate results from getClientEnvironment
    
    * The `string` should be object instead of string
    
    * Fix accessing wrong field
    
    * Changed variables naming to `raw` and `stringified`
    
    * Remove trailing commas
    jihchi authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    ceb1967 View commit details
    Browse the repository at this point in the history
  28. Add PUBLIC_URL env variable for advanced use (facebook#937) (facebo…

    …ok#1504)
    
    * Add `PUBLIC_URL` env variable for advanced use (facebook#937)
    * Add support for `PUBLIC_URL` env variable
    * Remove unnecessary duplications
    * Simplify served path choice logic
    * Honor PUBLIC_URL in development
    * Add e2e tests
    
    Enables serving static assets from specified host.
    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    2801087 View commit details
    Browse the repository at this point in the history
  29. Support relative asset paths for special case (facebook#1489)

    * 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
    tibdex authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    d314486 View commit details
    Browse the repository at this point in the history
  30. readme: Add Advanced Configuration (facebook#1515)

    * 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
    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    8885d35 View commit details
    Browse the repository at this point in the history
  31. Make build exit with error code when interrupted (facebook#1496)

    * Make build exit with error code when interrupted
    
    This addresses issue facebook#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
    brandones authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    e31fa78 View commit details
    Browse the repository at this point in the history
  32. Bump lerna

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    b5c1f1b View commit details
    Browse the repository at this point in the history
  33. Add test cases for PUBLIC_URL and relative path (facebook#1519)

    * Add test cases to evaluate increased CI time
    
    * Add positive test cases
    
    * Add negative cases
    
    * Test default behavior
    
    * Exit on failure
    
    * Fix test
    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    7e1e65f View commit details
    Browse the repository at this point in the history
  34. Add an annoying nit

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    dbd468f View commit details
    Browse the repository at this point in the history
  35. Upgrade babel dependencies

    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    1d2c2c6 View commit details
    Browse the repository at this point in the history
  36. Don't run CI on Node 0.10 (facebook#1521)

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    1589755 View commit details
    Browse the repository at this point in the history
  37. fix: add yarn gitignores (facebook#1507)

    * fix: add yarn gitignores to template
    
    * fix: add yarn gitignores to root
    
    * fix: add wildcard to npm-debug.log ignore
    AndersDJohnson authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    5183208 View commit details
    Browse the repository at this point in the history
  38. Upgrade dependencies (facebook#1522)

    * Upgrade dependencies
    
    * Re-add caret
    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    a07da08 View commit details
    Browse the repository at this point in the history
  39. Add CHANGELOG

    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    d0dc63d View commit details
    Browse the repository at this point in the history
  40. Publish

     - 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
    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    fac71a3 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    937b441 View commit details
    Browse the repository at this point in the history
  42. Add additional info about env variables

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    d8f5726 View commit details
    Browse the repository at this point in the history
  43. Massage 0.9.0 changelog

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    1913573 View commit details
    Browse the repository at this point in the history
  44. Add release cutters to changelog

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    e544c67 View commit details
    Browse the repository at this point in the history
  45. Tweak indentation

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    7becafc View commit details
    Browse the repository at this point in the history
  46. Markdown whitespace fixes

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    407ba64 View commit details
    Browse the repository at this point in the history
  47. Some changelog formatting

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    05041f7 View commit details
    Browse the repository at this point in the history
  48. Upgrade webpack (facebook#1291)

    * 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
    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    3bb37fa View commit details
    Browse the repository at this point in the history
  49. Suggest jest-enzyme for simplifying test matchers (facebook#994)

    * Suggest jest-enzyme for simplifying test matchers
    
    * Update README.md
    
    * Update README.md
    blainekasten authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    22f268d View commit details
    Browse the repository at this point in the history
  50. Add SASS support documentation facebook#1007 (facebook#1008)

    * Add SASS support documentation facebook#1007
    
    * Change SASS section title to more generic label
    
    * Fix link in Table of Contents
    
    * Chain build-css with watch-css script, fix typos
    
    * Update Sass and Less naming style
    
    * Fix wording, remove offensive words
    
    * Slightly rewite
    tsironis authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    8bcfa1a View commit details
    Browse the repository at this point in the history
  51. Link to new Sass doc

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    d935f2a View commit details
    Browse the repository at this point in the history
  52. Clarify Less/Sass support

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    131b705 View commit details
    Browse the repository at this point in the history
  53. Fix test -e with wildcard arguments. (facebook#1503)

    The `test` command fails with multiple arguments when given a unary operator such as '-e'. Add a function that can test one or more files by looping over all files.
    marcusrbrown authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    cd43a7b View commit details
    Browse the repository at this point in the history
  54. Correctly Command in README.md (facebook#1275)

    * change npm to yarn command
    
    * Keep npm primary option
    lifez authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    a11560c View commit details
    Browse the repository at this point in the history
  55. reduxjs/redux#2004 List features beyond ES6 supported by create-react…

    …-app (facebook#1313)
    
    * reduxjs/redux#2004 List features beyond ES6 supported by create-react-app
    
    * Add more info
    jonathanconway authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    564f8f8 View commit details
    Browse the repository at this point in the history
  56. Add a link to supported features

    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    d753ee6 View commit details
    Browse the repository at this point in the history
  57. [documentation] how to disable autoprefix feature (facebook#1320)

    * added how to disable autoprefix feature in doc
    
    * Just link to the doc
    Roman Rubas authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    549bf2c View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    423e71e View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    9edb03c View commit details
    Browse the repository at this point in the history
  60. Update language support wording to ES2017

    Timer authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    2e5b8eb View commit details
    Browse the repository at this point in the history
  61. Tweak syntax doc (facebook#1539)

    * Tweak syntax doc
    
    * Shorter version
    gaearon authored and bondz committed Feb 12, 2017
    Configuration menu
    Copy the full SHA
    086731a View commit details
    Browse the repository at this point in the history