Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: evanw/esbuild
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.16.17
Choose a base ref
...
head repository: evanw/esbuild
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.17.0
Choose a head ref
  • 8 commits
  • 60 files changed
  • 1 contributor

Commits on Jan 11, 2023

  1. Copy the full SHA
    9cc2b84 View commit details

Commits on Jan 12, 2023

  1. new year new changelog

    evanw committed Jan 12, 2023
    Copy the full SHA
    5d80704 View commit details

Commits on Jan 13, 2023

  1. Update README.md

    evanw authored Jan 13, 2023
    Copy the full SHA
    e72962f View commit details
  2. fix link to go docs

    evanw committed Jan 13, 2023
    Copy the full SHA
    fa27e29 View commit details
  3. change wordmark text

    evanw committed Jan 13, 2023
    Copy the full SHA
    5579b0f View commit details

Commits on Jan 14, 2023

  1. Copy the full SHA
    3153032 View commit details
  2. test coverage for build merging

    evanw committed Jan 14, 2023
    Copy the full SHA
    60ba46a View commit details
  3. publish 0.17.0 to npm

    evanw committed Jan 14, 2023
    Copy the full SHA
    2a18b3d View commit details
Showing with 7,317 additions and 5,866 deletions.
  1. +3,928 −0 CHANGELOG-2022.md
  2. +219 −3,890 CHANGELOG.md
  3. +1 −0 Makefile
  4. +6 −8 README.md
  5. +2 −0 cmd/esbuild/main.go
  6. +410 −332 cmd/esbuild/service.go
  7. +1 −1 cmd/esbuild/version.go
  8. +1 −1 images/wordmark-dark.svg
  9. +1 −1 images/wordmark-light.svg
  10. +2 −0 internal/bundler/bundler.go
  11. +5 −5 internal/bundler_tests/bundler_packagejson_test.go
  12. +10 −19 internal/logger/logger.go
  13. +21 −5 internal/resolver/package_json.go
  14. +2 −2 internal/resolver/resolver.go
  15. +28 −36 lib/deno/mod.ts
  16. +26 −12 lib/deno/wasm.ts
  17. +25 −12 lib/npm/browser.ts
  18. +37 −46 lib/npm/node.ts
  19. +258 −242 lib/shared/common.ts
  20. +26 −27 lib/shared/stdio_protocol.ts
  21. +36 −42 lib/shared/types.ts
  22. +1 −1 npm/@esbuild/android-arm/package.json
  23. +1 −1 npm/@esbuild/android-arm64/package.json
  24. +1 −1 npm/@esbuild/android-x64/package.json
  25. +1 −1 npm/@esbuild/darwin-arm64/package.json
  26. +1 −1 npm/@esbuild/darwin-x64/package.json
  27. +1 −1 npm/@esbuild/freebsd-arm64/package.json
  28. +1 −1 npm/@esbuild/freebsd-x64/package.json
  29. +1 −1 npm/@esbuild/linux-arm/package.json
  30. +1 −1 npm/@esbuild/linux-arm64/package.json
  31. +1 −1 npm/@esbuild/linux-ia32/package.json
  32. +1 −1 npm/@esbuild/linux-loong64/package.json
  33. +1 −1 npm/@esbuild/linux-mips64el/package.json
  34. +1 −1 npm/@esbuild/linux-ppc64/package.json
  35. +1 −1 npm/@esbuild/linux-riscv64/package.json
  36. +1 −1 npm/@esbuild/linux-s390x/package.json
  37. +1 −1 npm/@esbuild/linux-x64/package.json
  38. +1 −1 npm/@esbuild/netbsd-x64/package.json
  39. +1 −1 npm/@esbuild/openbsd-x64/package.json
  40. +1 −1 npm/@esbuild/sunos-x64/package.json
  41. +1 −1 npm/@esbuild/win32-arm64/package.json
  42. +1 −1 npm/@esbuild/win32-ia32/package.json
  43. +1 −1 npm/@esbuild/win32-x64/package.json
  44. +1 −1 npm/esbuild-wasm/package.json
  45. +23 −23 npm/esbuild/package.json
  46. +64 −19 pkg/api/api.go
  47. +420 −180 pkg/api/api_impl.go
  48. +408 −136 pkg/api/serve_other.go
  49. +10 −1 pkg/api/serve_wasm.go
  50. +6 −0 pkg/api/watcher.go
  51. +56 −68 pkg/cli/cli_impl.go
  52. +0 −1 pkg/cli/mangle_cache.go
  53. +19 −5 scripts/browser/index.html
  54. +44 −29 scripts/deno-tests.js
  55. +0 −9 scripts/end-to-end-tests.js
  56. +830 −415 scripts/js-api-tests.js
  57. +28 −40 scripts/node-unref-tests.js
  58. +310 −179 scripts/plugin-tests.js
  59. +30 −56 scripts/ts-type-tests.js
  60. +1 −1 version.txt
Loading