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: tapjs/tapjs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: tap@20.0.0
Choose a base ref
...
head repository: tapjs/tapjs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: tap@20.0.1
Choose a head ref
  • 3 commits
  • 58 files changed
  • 1 contributor

Commits on Jun 25, 2024

  1. bootstrap: remove override-thwarting shrinkwrap

    Temporarily remove all npm-shrinkwrap.json files, and re-run `npm
    install`. (It's fast the second time, because it doesn't have to do
    much.)
    
    Re: netlify/cli#6731
    isaacs committed Jun 25, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    7235286 View commit details
  2. fixes for typescript 5.5

    Also, simplify generated types a bit in test-built by importing some
    types we use.
    isaacs committed Jun 25, 2024
    Copy the full SHA
    90d373e View commit details
  3. update versions

    @tapjs/worker@3.0.1
    @tapjs/typescript@2.0.1
    @tapjs/tsx@2.0.1
    @tapjs/test@3.0.1
    tap@20.0.1
    @tapjs/synonyms@3.0.1
    @tapjs/stdin@3.0.1
    @tapjs/spawn@3.0.1
    @tapjs/snapshot@3.0.1
    @tapjs/sinon@2.0.1
    @tapjs/run@3.0.1
    @tapjs/reporter@3.0.1
    @tapjs/node-serialize@3.0.1
    @tapjs/nock@5.0.1
    @tapjs/mock@3.0.1
    @tapjs/mocha-globals@3.0.1
    @tapjs/intercept@3.0.1
    @tapjs/fixture@3.0.1
    @tapjs/filter@3.0.1
    @tapjs/esbuild-kit@2.0.1
    @tapjs/dummy-plugin@3.0.1
    @tapjs/create-plugin@3.0.1
    @tapjs/core@3.0.1
    @tapjs/config@4.0.1
    @tapjs/clock@2.0.1
    @tapjs/chdir@2.0.1
    @tapjs/before-each@3.0.1
    @tapjs/before@3.0.1
    @tapjs/asserts@3.0.1
    @tapjs/after-each@3.0.1
    @tapjs/after@2.0.1
    isaacs committed Jun 25, 2024
    Copy the full SHA
    a6f7df4 View commit details
Showing with 406 additions and 333 deletions.
  1. +120 −120 package-lock.json
  2. +1 −1 package.json
  3. +4 −0 scripts/bootstrap.sh
  4. +2 −2 src/after-each/package.json
  5. +2 −2 src/after/package.json
  6. +2 −2 src/asserts/package.json
  7. +39 −34 src/asserts/src/index.ts
  8. +2 −2 src/before-each/package.json
  9. +2 −2 src/before/package.json
  10. +2 −2 src/chdir/package.json
  11. +3 −3 src/clock/package.json
  12. +5 −5 src/config/package.json
  13. +2 −2 src/core/dist/commonjs/parse-test-args.d.ts
  14. +1 −1 src/core/dist/commonjs/parse-test-args.d.ts.map
  15. +1 −1 src/core/dist/commonjs/parse-test-args.js.map
  16. +2 −2 src/core/dist/esm/parse-test-args.d.ts
  17. +1 −1 src/core/dist/esm/parse-test-args.d.ts.map
  18. +1 −1 src/core/dist/esm/parse-test-args.js.map
  19. +2 −2 src/core/package.json
  20. +5 −2 src/core/src/parse-test-args.ts
  21. +2 −2 src/create-plugin/package.json
  22. +3 −3 src/dummy-plugin/package.json
  23. +2 −2 src/esbuild-kit/package.json
  24. +2 −2 src/filter/package.json
  25. +2 −2 src/fixture/package.json
  26. +3 −3 src/intercept/package.json
  27. +7 −2 src/intercept/src/index.ts
  28. +6 −6 src/mocha-globals/package.json
  29. +3 −3 src/mock/package.json
  30. +15 −6 src/mock/src/index.ts
  31. +3 −3 src/nock/package.json
  32. +2 −2 src/node-serialize/package.json
  33. +3 −3 src/reporter/package.json
  34. +9 −9 src/run/package.json
  35. +3 −3 src/sinon/package.json
  36. +2 −2 src/snapshot/package.json
  37. +8 −2 src/snapshot/src/index.ts
  38. +2 −2 src/spawn/package.json
  39. +8 −1 src/spawn/src/index.ts
  40. +2 −2 src/stdin/package.json
  41. +8 −1 src/stdin/src/index.ts
  42. +3 −3 src/synonyms/package.json
  43. +20 −20 src/tap/package.json
  44. +19 −19 src/test/package.json
  45. +9 −1 src/test/scripts/test-template.ts
  46. +15 −15 src/test/test-built/dist/commonjs/index.d.ts
  47. +1 −1 src/test/test-built/dist/commonjs/index.d.ts.map
  48. +3 −0 src/test/test-built/dist/commonjs/index.js
  49. +1 −1 src/test/test-built/dist/commonjs/index.js.map
  50. +15 −15 src/test/test-built/dist/esm/index.d.ts
  51. +1 −1 src/test/test-built/dist/esm/index.d.ts.map
  52. +3 −0 src/test/test-built/dist/esm/index.js
  53. +1 −1 src/test/test-built/dist/esm/index.js.map
  54. +9 −1 src/test/test-built/src/index.ts
  55. +2 −2 src/tsx/package.json
  56. +2 −2 src/typescript/package.json
  57. +2 −2 src/worker/package.json
  58. +6 −1 src/worker/src/index.ts
Loading