Skip to content

Commit cce62ad

Browse files
committed
Auto-generated commit
1 parent 1311b60 commit cce62ad

6 files changed

Lines changed: 26 additions & 13 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,27 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-05-30)
7+
## Unreleased (2026-06-28)
8+
9+
<section class="issues">
10+
11+
### Closed Issues
12+
13+
This release closes the following issue:
14+
15+
[#13070](https://github.com/stdlib-js/stdlib/issues/13070)
16+
17+
</section>
18+
19+
<!-- /.issues -->
820

921
<section class="commits">
1022

1123
### Commits
1224

1325
<details>
1426

27+
- [`285b781`](https://github.com/stdlib-js/stdlib/commit/285b78193c332858e0bcad715b42dd2caa788bc5) - **chore:** fix JavaScript lint errors [(#13177)](https://github.com/stdlib-js/stdlib/pull/13177) _(by Akanksha Kumari)_
1528
- [`0dc62ae`](https://github.com/stdlib-js/stdlib/commit/0dc62ae39a4817ff888e9736c3ea599f6beff4e5) - **build:** replace `eslint-plugin-node` with `eslint-plugin-n` [(#10952)](https://github.com/stdlib-js/stdlib/pull/10952) _(by Philipp Burckhardt, Athan Reines)_
1629
- [`1228698`](https://github.com/stdlib-js/stdlib/commit/122869845328a51c626f11d299f1ae3c699c5c71) - **bench:** refactor to use string interpolation in `fs` [(#11615)](https://github.com/stdlib-js/stdlib/pull/11615) _(by Karan Anand)_
1730

@@ -25,8 +38,9 @@
2538

2639
### Contributors
2740

28-
A total of 3 people contributed to this release. Thank you to the following contributors:
41+
A total of 4 people contributed to this release. Thank you to the following contributors:
2942

43+
- Akanksha Kumari
3044
- Athan Reines
3145
- Karan Anand
3246
- Philipp Burckhardt

dist/index.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* function done( error ) {
3030
* if ( error ) {
31-
* throw error;
31+
* console.error( error.message );
3232
* }
3333
* }
3434
*
@@ -39,7 +39,7 @@
3939
*
4040
* var err = unlinkSync( './beep/boop.txt' );
4141
* if ( err instanceof Error ) {
42-
* throw err;
42+
* console.error( err.message );
4343
* }
4444
*/
4545

lib/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var unlink = require( 'fs' ).unlinkSync;
3434
* @example
3535
* var err = unlinkSync( './beep/boop.txt' );
3636
* if ( err instanceof Error ) {
37-
* throw err;
37+
* console.error( err.message );
3838
* }
3939
*/
4040
function unlinkSync( path ) {

0 commit comments

Comments
 (0)