Skip to content

Commit 04b93ac

Browse files
committed
Auto-generated commit
1 parent 4874d5c commit 04b93ac

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

.npmrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,16 @@ save = false
2929

3030
# Do not generate provenance metadata:
3131
provenance = false
32+
33+
# Prefer cached dependencies during install:
34+
prefer-offline = true
35+
36+
# Require signing Git commits and tags when using `npm version`:
37+
sign-git-commit = true
38+
sign-git-tag = true
39+
40+
# Run Git commit hooks when using `npm version`:
41+
commit-hooks = true
42+
43+
# Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks:
44+
min-release-age = 90

CHANGELOG.md

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

7-
## Unreleased (2026-05-18)
7+
## Unreleased (2026-05-20)
88

99
<section class="features">
1010

@@ -276,6 +276,7 @@ A total of 38 issues were closed in this release:
276276

277277
<details>
278278

279+
- [`24639c3`](https://github.com/stdlib-js/stdlib/commit/24639c346a9784f031e2ad6b7cfc9fd76bcd4c10) - **bench:** fix validation _(by Athan Reines)_
279280
- [`d660241`](https://github.com/stdlib-js/stdlib/commit/d660241b4827a4c598b2334173552247ad4b839f) - **bench:** refactor to use string interpolation in `array` [(#11414)](https://github.com/stdlib-js/stdlib/pull/11414) _(by Karan Anand, Athan Reines)_
280281
- [`a1aabee`](https://github.com/stdlib-js/stdlib/commit/a1aabee8d9e187f3c9bc35be085a2a434f15a515) - **chore:** normalize `main` field to `./lib` in `array/base` and `array/float16` package.json [(#12110)](https://github.com/stdlib-js/stdlib/pull/12110) _(by Philipp Burckhardt)_
281282
- [`53f64c8`](https://github.com/stdlib-js/stdlib/commit/53f64c8d115c1a2edae5bf708b947a5d905e4e5b) - **feat:** update `array` TypeScript declarations [(#12098)](https://github.com/stdlib-js/stdlib/pull/12098) _(by stdlib-bot, Athan Reines)_

from-iterator/benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ bench( pkg, function benchmark( b ) {
3939
b.tic();
4040
for ( i = 0; i < b.iterations; i++ ) {
4141
arr = iterator2array( values );
42-
if ( typeof out !== 'object' ) {
42+
if ( typeof arr !== 'object' ) {
4343
b.fail( 'should return an array' );
4444
}
4545
}
@@ -61,7 +61,7 @@ bench( pkg+'::map', function benchmark( b ) {
6161
b.tic();
6262
for ( i = 0; i < b.iterations; i++ ) {
6363
arr = iterator2array( values, transform );
64-
if ( typeof out !== 'object' ) {
64+
if ( typeof arr !== 'object' ) {
6565
b.fail( 'should return an array' );
6666
}
6767
}

0 commit comments

Comments
 (0)