Skip to content

Commit 43dd5bc

Browse files
committed
Auto-generated commit
1 parent 200df3b commit 43dd5bc

10 files changed

Lines changed: 18 additions & 10 deletions

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package.json.copy
2525
###############
2626
build/
2727
downloads/
28+
plans/
2829
reports/
2930
tmp/
3031

@@ -175,6 +176,10 @@ acs-*.bib
175176
*.ind
176177
*.ist
177178

179+
# Git #
180+
#######
181+
.worktrees
182+
178183
# Visual Studio #
179184
#################
180185
.vscode/

CHANGELOG.md

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

7-
## Unreleased (2026-04-12)
7+
## Unreleased (2026-04-26)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`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)_
1516
- [`39db70f`](https://github.com/stdlib-js/stdlib/commit/39db70f0446038735b98e82abc26b369ac34938f) - **bench:** refactor to use string interpolation in `@stdlib/blas` [(#11397)](https:-/github.com/stdlib-js/stdlib/pull/11397) _(by Karan Anand)_
1617

1718
</details>
@@ -24,9 +25,11 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 3 people contributed to this release. Thank you to the following contributors:
2829

30+
- Athan Reines
2931
- Karan Anand
32+
- Philipp Burckhardt
3033

3134
</section>
3235

benchmark/benchmark.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function createBenchmark( len ) {
7979
mod = new srotm.Module( mem );
8080

8181
// Initialize the module:
82-
mod.initializeSync(); // eslint-disable-line node/no-sync
82+
mod.initializeSync(); // eslint-disable-line n/no-sync
8383

8484
// Reallocate the underlying memory to allow storing two vectors:
8585
nb = bytesPerElement( options.dtype );

benchmark/benchmark.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function createBenchmark( len ) {
7979
mod = new srotm.Module( mem );
8080

8181
// Initialize the module:
82-
mod.initializeSync(); // eslint-disable-line node/no-sync
82+
mod.initializeSync(); // eslint-disable-line n/no-sync
8383

8484
// Reallocate the underlying memory to allow storing two vectors:
8585
nb = bytesPerElement( options.dtype );

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/little_endian_arrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function main() {
4343
// returns <Module>
4444

4545
// Initialize the routine:
46-
mod.initializeSync(); // eslint-disable-line node/no-sync
46+
mod.initializeSync(); // eslint-disable-line n/no-sync
4747

4848
// Define a vector data type:
4949
var dtype = 'float32';

examples/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function main() {
4242
// returns <Module>
4343

4444
// Initialize the routine:
45-
mod.initializeSync(); // eslint-disable-line node/no-sync
45+
mod.initializeSync(); // eslint-disable-line n/no-sync
4646

4747
// Define a vector data type:
4848
var dtype = 'float32';

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var Module = require( './module.js' );
6060
* // y => <Float32Array>[ 3.0, 5.0, 7.0, 9.0, 11.0 ]
6161
*/
6262
var srotm = new Routine();
63-
srotm.initializeSync(); // eslint-disable-line node/no-sync
63+
srotm.initializeSync(); // eslint-disable-line n/no-sync
6464
setReadOnly( srotm, 'Module', Module.bind( null ) );
6565

6666

test/test.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable node/no-sync */
19+
/* eslint-disable n/no-sync */
2020

2121
'use strict';
2222

test/test.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable node/no-sync */
19+
/* eslint-disable n/no-sync */
2020

2121
'use strict';
2222

0 commit comments

Comments
 (0)