1. 02 8月, 2019 1 次提交
  2. 01 8月, 2019 1 次提交
  3. 30 7月, 2019 1 次提交
  4. 29 7月, 2019 1 次提交
  5. 20 7月, 2019 1 次提交
    • J
      Rewrite Create Next App (#8030) · 104d18c6
      Joe Haddad 提交于
      * Completely rewrite Create Next App
      
      * Sort imports
      
      * Show what package manager is being used
      
      * Fix project name suggestion
      
      * Update tests for new implementation
      
      * Use normal prepublish command for on-install
      
      * Upgrade Node version
      
      * Switch to 8.16
      
      * Disable v8 cache
      
      * Swap out update check package and fix CLI boot
      104d18c6
  6. 18 7月, 2019 1 次提交
  7. 12 7月, 2019 1 次提交
  8. 09 7月, 2019 1 次提交
  9. 01 7月, 2019 1 次提交
  10. 24 6月, 2019 1 次提交
  11. 22 6月, 2019 1 次提交
    • G
      ncc Webpack build redux (#7628) · e85a517e
      Guy Bedford 提交于
      * Reimplement ncc webpack build
      
      This reverts commit 6feca310.
      
      * Shared webpack build
      
      * ncc workaround pending @zeit/ncc#437
      
      * update ncc
      
      * build tweaks, fixup autodll-import
      
      * possible Node 8 fix
      
      * second possible Node 8 fix
      
      * and update taskfile
      e85a517e
  12. 06 6月, 2019 1 次提交
    • L
      Replace recursive-copy with own implementation (#7263) · 3b5f1849
      Luc 提交于
      * replace recursive-copy with own implementation
      
      * update yarn.lock
      
      * do not filter out not directories
      
      * do not fail if folder already exists
      
      * replace `\` by `/` when sending pathes to filter
      
      * use fs-extra only in tests
      
      * investigate and test recursive-copy npm module
      
      * improve test by creating fixtures programmatically
      
      * remove recursive-copy npm module test
      
      * add recursive-copy to bench
      
      * add bench:recursive-copy script
      
      * fix Sema import in recursive-copy.ts
      
      * small improvements
      3b5f1849
  13. 05 6月, 2019 1 次提交
    • L
      API interface extensions (#7363) · c821e830
      Lukáš Huvar 提交于
      * Cookies and Query parsing for API request
      
      * Adding JSON and SEND
      
      * First body parsing
      
      * Body parsing
      
      * Remove extra try catch
      
      * Fix tests
      
      * Only server bundling for API routes
      
      * Update packages/next-server/server/api-utils.ts
      Co-Authored-By: NTim Neutkens <tim@timneutkens.nl>
      
      * Revert on demand server changes
      
      * Use content-type for parsing
      
      * Update packages/next-server/server/api-utils.ts
      Co-Authored-By: NJan Potoms <potoms.jan@gmail.com>
      
      * Add tests for server compilation
      
      * Add body limit
      
      * Change API to function chaining
      
      * Limit test
      c821e830
  14. 31 5月, 2019 1 次提交
  15. 30 5月, 2019 1 次提交
  16. 29 5月, 2019 1 次提交
  17. 28 5月, 2019 1 次提交
    • J
      Dynamic routing mark 2 (#7432) · e27203f8
      Joe Haddad 提交于
      * Update escape string regexp operators
      
      * temp
      
      * Extract getRouteRegex func
      
      * First iteration of dynamic routing for production only
      
      * Correctly order prod
      
      * Add serverless support
      
      * Single line it
      
      * noop routes
      
      * Format doc
      
      * Fix dynamic routing for dev
      
      * Add flag for dynamic routing
      
      * Update packages/next-server/lib/router/router.ts
      Co-Authored-By: NJJ Kasper <jj@jjsweb.site>
      
      * remove example
      
      * Add router tests
      
      * Format code
      
      * Sort routes
      
      * Update to not use posix path methods
      e27203f8
  18. 24 5月, 2019 1 次提交
  19. 23 5月, 2019 1 次提交
    • J
      Upgrade dependencies (#7412) · f9f80dff
      Joe Haddad 提交于
      *  Upgrade workspace dependencies
      
      * Run new prettier against examples
      
      * Upgrade some next-server packages
      
      * Upgrade Next.js dependencies
      
      * Upgrade webpack deps
      
      * Upgrade async sema
      
      * Fix compilation
      
      * Revert broken plugin
      f9f80dff
  20. 22 5月, 2019 1 次提交
  21. 17 5月, 2019 2 次提交
  22. 11 5月, 2019 1 次提交
  23. 09 5月, 2019 1 次提交
  24. 08 5月, 2019 1 次提交
  25. 07 5月, 2019 1 次提交
  26. 06 5月, 2019 1 次提交
  27. 04 5月, 2019 1 次提交
  28. 03 5月, 2019 1 次提交
  29. 29 4月, 2019 1 次提交
  30. 27 4月, 2019 1 次提交
  31. 24 4月, 2019 1 次提交
  32. 23 4月, 2019 2 次提交
    • L
      Replace the typescript compiler with @babel/preset-typescript (#7016) · 08a60666
      Luis Fernando Alvarez D 提交于
      * Added babel typescript for the core files
      
      * Add __NEXT_VERSION
      
      * Added noop.js to the babel taskfile
      
      * Only include dynamic-import-node for the bin task
      
      * Added babel-plugin-dynamic-import-node
      
      * Use loose option to prevent Object.defineProperty
      
      * Enable loose in preset and enable compact mode
      
      * Disable compact and loose to compare
      
      * Re-enable compact and loose
      08a60666
    • L
      Add more TypeScript types (#7054) · 29f71bfc
      Luis Fernando Alvarez D 提交于
      * Moved server/lib/utils.js to Typescript
      
      * moved _app.js to Typescript
      
      * Moved _error.js to Typescript
      
      * Added argument for custom props in _app and _error
      
      * Moved _document.js to Typescript
      
      * updated one test
      
      * Updated types and added a validation for _document props
      
      * Improved types
      
      * Fixed some types
      
      * Updated AppType
      
      * Fixed some tests
      
      * Added missing import
      
      * Removed a not very useful type
      
      * Fix missing type
      
      * Move @types/styled-jsx
      
      * Fix typescript errors
      29f71bfc
  33. 22 4月, 2019 2 次提交
  34. 12 4月, 2019 1 次提交
  35. 11 4月, 2019 3 次提交
    • J
      Add Flying Shuttle tests (#7000) · 510815a7
      Joe Haddad 提交于
      * Add Flying Shuttle tests
      
      * Test second version of server
      
      * Finish first version of tests
      
      * Apply suggestions from code review
      Co-Authored-By: NTimer <timer150@gmail.com>
      
      * Apply suggestions from code review
      Co-Authored-By: NTimer <timer150@gmail.com>
      510815a7
    • J
      Use next.config env and packages to calculate hashes (#7001) · 711d45b6
      JJ Kasper 提交于
      * Use next.config env and packages to calculate
      hashes for chunk-graph
      
      * Remove example from testing
      
      * remove left over import
      
      * Tweak behavior
      711d45b6
    • J
      Add Flying Shuttle v1 (#6991) · c2d0a4ef
      Joe Haddad 提交于
      * Add Flying Shuttle v1
      
      * Add serverless file restoration
      
      * Add another message
      
      * Update test
      
      * Resolve page version last
      
      * Print number of changed pages
      
      * Remove old tests
      
      * Re-add head build ID writing
      
      * Change syntax appearance
      
      * Start adding test components
      
      * Fix react loadable manifest
      
      * Complicate dynamic testing
      
      * Fix first build missing head build id
      
      * Remove flying shuttle tests
      c2d0a4ef