Skip to content

Commit

Permalink
Release v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed May 17, 2024
1 parent e94d45d commit a46f7ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/assert-deep-strict-equal.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! assert-deep-strict-equal v1.2.0 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License
//! assert-deep-strict-equal v1.2.1 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License

declare const assertDeepStrictEqual: (actual: unknown, expected: unknown, done?: ((e?: unknown) => void) | undefined) => void;
declare const assertDeepStrictEqual: (actual: unknown, expected: unknown, done?: (e?: unknown) => void) => void;
export { assertDeepStrictEqual };
2 changes: 1 addition & 1 deletion dist/assert-deep-strict-equal.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! assert-deep-strict-equal v1.2.0 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License
//! assert-deep-strict-equal v1.2.1 ~~ https://github.com/center-key/assert-deep-strict-equal ~~ MIT License

import { deepStrictEqual } from 'assert';
const assertDeepStrictEqual = (actual, expected, done) => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "assert-deep-strict-equal",
"version": "1.2.0",
"version": "1.2.1",
"description": "Asynchronous assert fails in Mocha you can see and don't timeout",
"license": "MIT",
"type": "module",
Expand Down

0 comments on commit a46f7ad

Please sign in to comment.