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: ehmicky/log-process-errors
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9.3.0
Choose a base ref
...
head repository: ehmicky/log-process-errors
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9.4.0
Choose a head ref

Commits on Aug 14, 2022

  1. Fix comment

    ehmicky committed Aug 14, 2022
    Copy the full SHA
    bb0bcf1 View commit details
  2. Copy the full SHA
    4d283b0 View commit details

Commits on Aug 21, 2022

  1. Copy the full SHA
    73ac177 View commit details
  2. Fix test

    ehmicky committed Aug 21, 2022
    Copy the full SHA
    e50b8b4 View commit details
  3. Fix test

    ehmicky committed Aug 21, 2022
    Copy the full SHA
    5c97278 View commit details
  4. Fix tests

    ehmicky committed Aug 21, 2022
    Copy the full SHA
    55f9493 View commit details
  5. Copy the full SHA
    a92d107 View commit details
  6. Fix tests

    ehmicky committed Aug 21, 2022
    Copy the full SHA
    a3d48f8 View commit details

Commits on Aug 26, 2022

  1. Update Related projects

    ehmicky committed Aug 26, 2022
    Copy the full SHA
    21e13c7 View commit details

Commits on Aug 27, 2022

  1. Copy the full SHA
    ccd1c57 View commit details

Commits on Aug 28, 2022

  1. Copy the full SHA
    8a5f75e View commit details
  2. Copy the full SHA
    c8d9dae View commit details
  3. Copy the full SHA
    be8484e View commit details

Commits on Aug 29, 2022

  1. Copy the full SHA
    449be51 View commit details

Commits on Aug 31, 2022

  1. Copy the full SHA
    21327fe View commit details

Commits on Sep 1, 2022

  1. Copy the full SHA
    c2fe964 View commit details

Commits on Sep 10, 2022

  1. Copy the full SHA
    67ee18e View commit details

Commits on Sep 11, 2022

  1. Copy the full SHA
    e40b951 View commit details

Commits on Sep 15, 2022

  1. Update related projects

    ehmicky committed Sep 15, 2022
    Copy the full SHA
    6e0b309 View commit details

Commits on Sep 25, 2022

  1. Copy the full SHA
    3fd2e7d View commit details

Commits on Oct 2, 2022

  1. Copy the full SHA
    4f5b693 View commit details
  2. Copy the full SHA
    d875aa4 View commit details
  3. Copy the full SHA
    4cdc213 View commit details
  4. Reduce npm package size

    ehmicky committed Oct 2, 2022
    Copy the full SHA
    5bf5c69 View commit details
  5. Release 9.4.0

    ehmicky committed Oct 2, 2022
    Copy the full SHA
    f6394c0 View commit details
Showing with 1,810 additions and 1,715 deletions.
  1. +10 −3 README.md
  2. +1,684 −1,689 package-lock.json
  3. +5 −5 package.json
  4. +2 −4 src/main.js
  5. +1 −1 src/options/testing.js
  6. +7 −0 test/helpers/events/version.js
  7. +15 −9 test/log.js
  8. +86 −4 test/snapshots/log.js.md
  9. BIN test/snapshots/log.js.snap
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -296,15 +296,22 @@ logProcessErrors({ colors: false })

- [`modern-errors`](https://github.com/ehmicky/modern-errors): Handle errors
like it's 2022 🔮
- [`create-error-types`](https://github.com/ehmicky/create-error-types): Create
multiple error types
- [`error-type`](https://github.com/ehmicky/error-type): Create one error type
- [`error-custom-class`](https://github.com/ehmicky/error-custom-class): Create
one error class
- [`error-class-utils`](https://github.com/ehmicky/error-class-utils): Utilities
to properly create error classes
- [`error-serializer`](https://github.com/ehmicky/error-serializer): Convert
errors to/from plain objects
- [`normalize-exception`](https://github.com/ehmicky/normalize-exception):
Normalize exceptions/errors
- [`merge-error-cause`](https://github.com/ehmicky/merge-error-cause): Merge an
error with its `cause`
- [`set-error-class`](https://github.com/ehmicky/set-error-class): Properly
update an error's class
- [`set-error-message`](https://github.com/ehmicky/set-error-message): Properly
update an error's message
- [`set-error-props`](https://github.com/ehmicky/set-error-props): Properly
update an error's properties
- [`error-cause-polyfill`](https://github.com/ehmicky/error-cause-polyfill):
Polyfill `error.cause`
- [`handle-cli-error`](https://github.com/ehmicky/handle-cli-error): 💣 Error
Loading