1. 15 9月, 2020 2 次提交
  2. 14 9月, 2020 3 次提交
    • J
      [Fix] `webpack@5.0.0-beta.30`: Invalid configuration (#17045) · 80000f42
      Jens Meindertsma 提交于
      Earlier today #17038 was merged which I opened to fix a problem when using `webpack@5.0.0-beta.30` with Next.js using the new Webpack 5 support. In that PR, the only change was the renaming of a configuration key. I later discovered that the change on the Webpack side was different than I initially thought, and this meant that the fix I submittted to Next.js didn't work.
      
      This PR intends to fix the remaining problems. Webpack 5 now accepts a `environment` key that can be used to configure the target output. Previously, this was known as `ecmaVersion` and accepted a number. Now, `environment` accepts a configuration object with individual options. I've configured this in such a way where it resembles an ES5 environment:
      ```js
      environment: {
         arrowFunction: false,
         bigIntLiteral: false,
         const: false,
         destructuring: false,
         dynamicImport: false,
         forOf: false,
         module: false,
      }
      ```
      80000f42
    • J
      v9.5.4-canary.15 · 1d30f217
      Joe Haddad 提交于
      1d30f217
    • J
      Include all files in Prettier (#17050) · a3c47721
      Jens Meindertsma 提交于
      This uses the "Expand directories" feature introduces in Prettier 2.0 to automatically format all supported file types.
      
      Also, I fixed some badly formatted files.
      a3c47721
  3. 13 9月, 2020 4 次提交
  4. 12 9月, 2020 12 次提交
  5. 11 9月, 2020 11 次提交
  6. 10 9月, 2020 7 次提交
  7. 09 9月, 2020 1 次提交