1. 09 10月, 2019 3 次提交
  2. 08 10月, 2019 7 次提交
  3. 07 10月, 2019 2 次提交
  4. 06 10月, 2019 4 次提交
  5. 05 10月, 2019 3 次提交
  6. 04 10月, 2019 9 次提交
  7. 03 10月, 2019 9 次提交
    • J
      Use Better Telemetry Directory (#8942) · 50bd10f5
      Joe Haddad 提交于
      * Use Better Telemetry Directory
      So, as it turns out, storing in `node_modules` is a bad idea.
      
      Both npm and Yarn will remove additional files when you run `npm install` or `yarn install`.
      
      Instead, we'll store this inside of Next.js' `distDir`. This should also be cached by users, if it's not, it probably won't be any worse as compared to `node_modules`.
      
      * Fix directory name
      
      * Fix build setup
      
      * Record when export session is started
      
      * Move more into branch
      50bd10f5
    • J
      Monkey patch `next-sass` and `next-less` (#8944) · 955ea422
      Joe Haddad 提交于
      * Monkey patch `next-sass` and `next-less`
      These two Next.js plugins use poor webpack practices: they define plugins without resolving themselves.
      
      As a result, the resolution root is unknown by webpack and you get into package hoisting bugs.
      
      To fix this, we emulate the logic these packages should've performed themselves on a best-effort basis.
      
      * Add comments explaining the monkey patch
      
      * Fix comment
      
      * Update packages/next/build/webpack-config.ts
      Co-Authored-By: NTim Neutkens <tim@timneutkens.nl>
      955ea422
    • J
      v9.0.8-canary.2 · 3d5af360
      Joe Haddad 提交于
      3d5af360
    • J
      Reduce Timeframe That FOUC Styles Are Active (#8937) · 40b0b9b9
      Joe Haddad 提交于
      * Show content as soon as <style> tags are added
      
      * Add fallback removal
      
      * Add test for when unused
      
      * Ensure the function is ES5 compatible
      
      * IE support
      
      * Test it works on broken pages
      40b0b9b9
    • J
      Remove `config` export (#8895) · 67f7cf56
      Joe Haddad 提交于
      * Remove `config` export
      This removes the `config` export instead of all exports.
      
      Reverts #8889 (but with fixed behavior)
      
      * Add test to ensure config object is dropped from client-bundle
      67f7cf56
    • J
      Remove Recipes from Readme (#8939) · 9a4234cf
      Joe Haddad 提交于
      These Recipies are not regularly audited to ensure they're using the most up-to-date and suggested practices.
      
      We'll reintroduce the idea of "recipies" in the future, for now, the examples directory is a great place to start.
      9a4234cf
    • J
      s/Automatic Prerendering/Automatic Static Optimization/ (#8940) · 29c1b93c
      Joe Haddad 提交于
      * s/Automatic Prerendering/Automatic Static Optimization/
      
      * Update more links
      29c1b93c
    • J
      Do not mix `null` in `getCssLinks` return value (#8938) · 80d574ec
      Joe Haddad 提交于
      80d574ec
    • J
      Change default body display setting (#8941) · 8391d48f
      Joe Haddad 提交于
      8391d48f
  8. 02 10月, 2019 3 次提交