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: Shuunen/shuutils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.5.0
Choose a base ref
...
head repository: Shuunen/shuutils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v10.6.0
Choose a head ref
  • 16 commits
  • 72 files changed
  • 2 contributors

Commits on Feb 24, 2025

  1. chore(deps): update repo-check to version 1.42

    Shuunen committed Feb 24, 2025
    Copy the full SHA
    805445f View commit details

Commits on Feb 25, 2025

  1. chore(deps): update dependency tsup to 8.4 (#521)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Feb 25, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    77b861e View commit details

Commits on Feb 26, 2025

  1. chore: add knip to lint tools

    Shuunen committed Feb 26, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fba3b7b View commit details

Commits on Mar 5, 2025

  1. chore(deps): update dependency @happy-dom/global-registrator to 17.2 (#…

    …523)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b37c1d0 View commit details

Commits on Mar 7, 2025

  1. chore(deps): update dependency @happy-dom/global-registrator to 17.3 (#…

    …524)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c6d99e9 View commit details

Commits on Mar 8, 2025

  1. chore(deps): update dependency @happy-dom/global-registrator to 17.4 (#…

    …525)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 8, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0b45c03 View commit details
  2. chore(deps): bump

    Shuunen committed Mar 8, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    51ae30c View commit details
  3. refactor: from pnpm to bun

    Shuunen committed Mar 8, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1f90f40 View commit details
  4. chore: from vitest to bun

    Shuunen committed Mar 8, 2025
    Copy the full SHA
    0ddd626 View commit details
  5. chore: remove Vitest reference from README

    Shuunen committed Mar 8, 2025
    Copy the full SHA
    9cad4a9 View commit details
  6. refactor: bun-ify

    Shuunen committed Mar 8, 2025
    Copy the full SHA
    78cd998 View commit details
  7. refactor: update mobile detection for HappyDOM context

    Shuunen committed Mar 8, 2025
    Copy the full SHA
    18888aa View commit details

Commits on Mar 9, 2025

  1. Copy the full SHA
    0ebf855 View commit details
  2. refactor: rename private methods

    Shuunen committed Mar 9, 2025
    Copy the full SHA
    35aa3e1 View commit details
  3. lint: avoid disabling max-lines rule

    Shuunen committed Mar 9, 2025
    Copy the full SHA
    a3115b4 View commit details
  4. 10.6.0

    Shuunen committed Mar 9, 2025
    Copy the full SHA
    3902a4a View commit details
Showing with 1,397 additions and 5,097 deletions.
  1. +0 −446 .dependency-cruiser.cjs
  2. +3 −5 .github/workflows/ci.yml
  3. +9 −0 .knip.json
  4. +1 −4 README.md
  5. +6 −1 benchmarks/clone.bench.ts
  6. +12 −1 benchmarks/memoize.bench.ts
  7. +4 −6 bin/list.js
  8. +820 −0 bun.lock
  9. +3 −0 bunfig.toml
  10. +17 −8 docs/benchmarks.md
  11. +21 −24 package.json
  12. +0 −4,148 pnpm-lock.yaml
  13. +4 −1 renovate.json
  14. +55 −0 src/__snapshots__/colors.test.ts.snap
  15. +1 −1 src/__snapshots__/logger.test.ts.snap
  16. +5 −5 {tests → src}/__snapshots__/objects.test.ts.snap
  17. +1 −1 src/__snapshots__/strings.test.ts.snap
  18. +1 −1 {tests → src}/__snapshots__/tree-shake.test.ts.snap
  19. +4 −4 src/analytics.test.ts
  20. +2 −2 src/array-pick-one.test.ts
  21. +1 −1 src/arrays.test.ts
  22. +1 −1 src/browser-routing.test.ts
  23. +1 −0 src/browser-routing.ts
  24. +2 −2 {tests → src}/browser-scout.test.ts
  25. +2 −1 src/browser-scout.ts
  26. +1 −1 src/browser-styles.test.ts
  27. +1 −1 src/browser-toast.ts
  28. +54 −0 src/color-converters.test.ts
  29. +71 −0 src/color-converters.ts
  30. +2 −45 {tests → src}/colors.test.ts
  31. +0 −71 src/colors.ts
  32. +1 −1 src/date-relative.test.ts
  33. +4 −5 src/dates.test.ts
  34. +2 −2 {tests → src}/debounce.test.ts
  35. +3 −33 {tests → src}/dom.test.ts
  36. +0 −1 src/dom.ts
  37. +6 −0 src/environment.test.ts
  38. +7 −2 src/environment.ts
  39. +2 −2 {tests → src}/expect-type.test.ts
  40. +1 −1 src/flags.test.ts
  41. +1 −1 src/functions.test.ts
  42. +1 −1 src/logger.test.ts
  43. +45 −41 src/logger.ts
  44. +3 −3 {tests → src}/memoize.test.ts
  45. +1 −1 src/number-ranged-score.test.ts
  46. +1 −1 src/number-round.test.ts
  47. +1 −1 src/object-cap-nesting.test.ts
  48. +83 −0 src/object-safe-assign.test.ts
  49. +23 −0 src/object-safe-assign.ts
  50. +5 −5 {tests → src}/object-serializer.test.ts
  51. +4 −54 {tests → src}/objects.test.ts
  52. +15 −28 src/objects.ts
  53. +1 −1 src/random.test.ts
  54. +3 −3 src/result.test.ts
  55. +2 −0 src/shuutils.ts
  56. +6 −5 {tests → src}/state.test.ts
  57. +6 −5 {tests → src}/storage.test.ts
  58. +1 −1 src/string-case.test.ts
  59. +2 −2 src/strings.test.ts
  60. +1 −1 src/system.test.ts
  61. +1 −1 src/testing-align-for-snap.test.ts
  62. +2 −2 {tests → src}/throttle.test.ts
  63. +2 −2 {tests → src}/timestamps.test.ts
  64. +2 −2 src/translate.test.ts
  65. +2 −2 src/translate.ts
  66. +1 −1 {tests → src}/tree-shake.test.ts
  67. +31 −14 src/unique-mark.test.ts
  68. +20 −14 src/unique-mark.ts
  69. +0 −55 tests/__snapshots__/colors.test.ts.snap
  70. +0 −6 tests/environment.test.ts
  71. +0 −3 tsconfig.json
  72. +0 −13 vitest.config.ts
Loading