From dd36535589ef8f44f4b15a240697bedef6934663 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 19 May 2026 12:27:53 +0000 Subject: [PATCH 1/2] fix: correct invalid directives in `.npmrc` The `commit-hooks` npm configuration key was misspelled as `commits-hooks`, and the `min-release-age` directive used a colon instead of an `=` separator. As written, npm silently ignores both settings, so neither the commit hooks nor the minimum release-age guard take effect. --- .npmrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.npmrc b/.npmrc index f94334b75d6a..3b95c54729a3 100644 --- a/.npmrc +++ b/.npmrc @@ -38,7 +38,7 @@ sign-git-commit = true sign-git-tag = true # Run Git commit hooks when using `npm version`: -commits-hooks = true +commit-hooks = true # Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks: -min-release-age: 90 +min-release-age = 90 From e92f9e02804eaf3633b03efab5f8012164d0973c Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 19 May 2026 12:27:59 +0000 Subject: [PATCH 2/2] style: remove spurious `@private` annotations in `blas/ext/base/saxpb` The native entry points in `saxpb.native.js` and `ndarray.native.js` are module-level exported functions and should not be tagged `@private`. The sibling `daxpb` package and the `dapx` reference package omit the tag on the corresponding files. --- .../@stdlib/blas/ext/base/saxpb/lib/ndarray.native.js | 1 - lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/saxpb.native.js | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/ndarray.native.js b/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/ndarray.native.js index 0b1a4d67305d..ee16a0c60742 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/ndarray.native.js +++ b/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/ndarray.native.js @@ -28,7 +28,6 @@ var addon = require( './../src/addon.node' ); /** * Multiplies each element in a single-precision floating-point strided array by a scalar constant and adds a scalar constant to each result using alternative indexing semantics. * -* @private * @param {PositiveInteger} N - number of indexed elements * @param {number} alpha - first scalar constant * @param {number} beta - second scalar constant diff --git a/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/saxpb.native.js b/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/saxpb.native.js index 41bc77205619..19d8956c4000 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/saxpb.native.js +++ b/lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/saxpb.native.js @@ -28,7 +28,6 @@ var addon = require( './../src/addon.node' ); /** * Multiplies each element in a single-precision floating-point strided array by a scalar constant and adds a scalar constant to each result. * -* @private * @param {PositiveInteger} N - number of indexed elements * @param {number} alpha - first scalar constant * @param {number} beta - second scalar constant