1. 28 11月, 2019 3 次提交
  2. 27 11月, 2019 9 次提交
  3. 26 11月, 2019 20 次提交
    • J
      Update Yarn Lockfile · 5030bda9
      Joe Haddad 提交于
      5030bda9
    • J
      [modern] preset-modules & fix custom babelrc (#9489) · 1f157461
      Jason Miller 提交于
      * Modernize additional common Babel configurations.
      
      * Add @babel/preset-modules dependency
      
      * code quality
      
      * Use modern terser ecma mode for .module.js bundles.
      1f157461
    • P
      Wait till load for paint metrics (#9406) · 698f522d
      Prateek Bhatnagar 提交于
      * wait till load to fire paint metrics as they might not be available upfront
      
      * adding performance observer
      
      * adding check for performance user timing
      698f522d
    • Y
      Allow custom amp validation (#9191) · 93f7da28
      Yosuke Furukawa 提交于
      * Allow custom amp validation
      
      * Update packages/next/export/index.ts
      Co-Authored-By: NTim Neutkens <tim@timneutkens.nl>
      
      * Update packages/next/server/next-dev-server.ts
      Co-Authored-By: NTim Neutkens <tim@timneutkens.nl>
      
      * chore: fix prettier error
      
      * fix: set amp.valiator undefined by default
      93f7da28
    • J
      Add custom routes to build output (#9517) · cd8e72d5
      JJ Kasper 提交于
      * Add custom routes to build output
      
      * De-dupe code a bit
      cd8e72d5
    • J
      Replace `url` polyfill with `self.URL` (#9200) · 04a7f1e8
      Janicklas Ralph 提交于
      * Adding native-url package
      
      * Bumping native-url version
      
      * Upgrading native-url
      
      * Logging stats object for debugging
      
      * Logging stats object for debugging
      
      * Adding try catch to the error lines
      
      * Experimenting with regex
      
      * Experimenting with regex
      
      * Experimenting with regex
      
      * Testing regex changes
      
      * Fixing defer-script test case to not include polyfill.js
      
      * Meging changes with existing polyfill work
      
      * Bumping version
      
      * adjust webpack config
      
      * Reduce size in size test
      
      * Remove 1kb from legacy
      04a7f1e8
    • J
      Bump CircleCi concurrency (#9526) · b6aebf92
      JJ Kasper 提交于
      b6aebf92
    • J
      Add custom timings for CircleCi (#9523) · 12cbb2e9
      JJ Kasper 提交于
      * Add custom timings for CircleCi
      
      * Re-add split-by flag
      
      * Add testcase item to junit.xml
      
      * Log tests being run
      
      * Update junit.xml path
      
      * bump
      12cbb2e9
    • J
      v9.1.5-canary.6 · 3ebc6104
      Joe Haddad 提交于
      3ebc6104
    • J
      Specify Invalid Dynamic Route Values (#9525) · 30240748
      Joe Haddad 提交于
      30240748
    • J
      CSS Support Customization (#9502) · 4656f52d
      Joe Haddad 提交于
      * CSS Support Customization
      
      * Sort imports
      
      * Correct PostCSS plugin loading
      
      * Add css customization test
      
      * Test "bad" css configuration
      
      * Add load config test
      
      * adjust spacing
      
      * adjust spacing 2x
      
      * Only allow config through JSON
      
      * Support excluding false plugins
      
      * Test tailwind css behavior
      
      * Test plugin exclusion
      
      * Fix unit test
      
      * Fix config file
      
      * Remove more variants
      
      * Update test cases
      4656f52d
    • M
      Update progressive enhancement example (#9507) · 8357f464
      Mаартен - Maarten 提交于
      * no ssr component which uses useEffect hook
      
      This library used wasn't updated for 4 years. I tried to contact the owner, which failed, and decided to create my own. So if you see this PR as a shameless plugin for my own component you can delete it. Just wanted to make this example more up to date.
      
      * Update index.js
      
      * fix linting
      
      * Update index.js
      
      * Update example
      8357f464
    • J
      Catch Telemetry Initialization Error (#9518) · acf35179
      Joe Haddad 提交于
      * Catch Telemetry Initialization Error
      This catches telemetry initialization errors where a user's `os.tmpdir()` directory isn't writable by the process.
      
      * adjust cond
      acf35179
    • J
      Fix AMP HTML content emit (#9468) · 409f20a9
      JJ Kasper 提交于
      * Add failing test
      
      * Escape dollar signs in AMP HTML
      
      * Update to not use replace for updating AMP_RENDER_TARGET
      409f20a9
    • J
      Remove Broken Example (`with-apollo-auth`) (#9516) · 2cbe4d35
      Joe Haddad 提交于
      2cbe4d35
    • J
      Remove Legacy Code (#9515) · caa53478
      Joe Haddad 提交于
      The `sprStatus` module state is no longer used (and shouldn't be!). We can safely remove this code.
      
      I also renamed the drop bundle identifier while I was here.
      caa53478
    • J
      Purge Babel Cache (#9514) · 0a86b149
      Joe Haddad 提交于
      * Bust Babel Cache
      
      * Increase e
      0a86b149
    • J
      Update CI/test set up (#9499) · b058427b
      JJ Kasper 提交于
      * Disable concurrency for tests
      
      * Add browser instance sharing
      
      * Bump concurrency and install chromedriver smoother
      
      * Fix config typo
      
      * Fix local test
      
      * Limit azure concurrency again
      
      * Add delay for empty-object-test
      
      * Make sure to use open port for chromedriver
      
      * Move browser closing to jest-environment
      
      * Re-enable concurrency for Azure
      
      * bump
      
      * Disable concurrency for Azure again
      
      * Re-enable concurrency for Azure
      
      * bump
      b058427b
    • J
      v9.1.5-canary.5 · 77c4b4de
      Joe Haddad 提交于
      77c4b4de
    • J
      Drop Re-Exported iSSG Imports (#9512) · b80d4d68
      Joe Haddad 提交于
      * Drop Re-Exported iSSG Imports
      This pull request adds loader support for the following export form:
      ```js
      export { getStaticParams as unstable_getStaticParams } from '../../lib/docs/page';
      export { getStaticProps as unstable_getStaticProps } from '../../lib/docs/page';
      ```
      
      This will now result in correct detection and removal.
      
      * Add unit tests for next page config behavior
      
      * Test extra function is not dropped
      b80d4d68
  4. 23 11月, 2019 2 次提交
  5. 22 11月, 2019 6 次提交