Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

v19.0.0

Choose a tag to compare

@kaelig kaelig released this 28 Jan 17:18
· 378 commits to master since this release

Added

Changed

  • Updated dependencies to their latest versions (full details in #63)

  • Breaking: node.js minimum supported node version update to 8.9.4 (LTS).

  • Breaking: Changed eslint-config-shopify codebase to trailingComma: 'all' and drop support for Node.js 6

  • Breaking: Updated prettier to 1.9.2, introducing a change in function parens style (set to arrowParens: 'always'):

    // Before
    const foo = myArray.map(foo => {});
    
    // After
    const foo = myArray.map((foo) => {});

    ⚠️ Upgrade path

    Your project config files (package.json, .prettierrc, .eslintrc…)
    may need to be updated like so:

       "singleQuote": true,
       "bracketSpacing": false,
       "trailingComma": "all",
    +  "arrowParens": "always"
  • Prettified source files using the new config