Skip to content

Commit 45fdcf4

Browse files
committed
Auto-generated commit
1 parent f308110 commit 45fdcf4

11 files changed

Lines changed: 18 additions & 11 deletions

.github/.keepalive

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

.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-04)
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
- [`34a2bca`](https://github.com/stdlib-js/stdlib/commit/34a2bcac9bd7b76456a57cd7bcbfea5a8da4c7be) - **bench:** refactor to use string interpolation in `blas/base/wasm/dasum` [(#10506)](https://github.com/stdlib-js/stdlib/pull/10506) _(by Shubham)_
1617

1718
</details>
@@ -24,8 +25,10 @@
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
31+
- Philipp Burckhardt
2932
- Shubham
3033

3134
</section>

benchmark/benchmark.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function createBenchmark( len ) {
7575
mod = new dasum.Module( mem );
7676

7777
// Initialize the module:
78-
mod.initializeSync(); // eslint-disable-line node/no-sync
78+
mod.initializeSync(); // eslint-disable-line n/no-sync
7979

8080
// Reallocate the underlying memory to allow storing a vector:
8181
nb = bytesPerElement( options.dtype );

benchmark/benchmark.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function createBenchmark( len ) {
7575
mod = new dasum.Module( mem );
7676

7777
// Initialize the module:
78-
mod.initializeSync(); // eslint-disable-line node/no-sync
78+
mod.initializeSync(); // eslint-disable-line n/no-sync
7979

8080
// Reallocate the underlying memory to allow storing a vector:
8181
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
@@ -41,7 +41,7 @@ function main() {
4141
// returns <Module>
4242

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

4646
// Specify a vector length:
4747
var N = 5;

examples/module.js

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

4141
// Initialize the routine:
42-
mod.initializeSync(); // eslint-disable-line node/no-sync
42+
mod.initializeSync(); // eslint-disable-line n/no-sync
4343

4444
// Define a vector data type:
4545
var dtype = 'float64';

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var Module = require( './module.js' );
5454
* // returns 15.0
5555
*/
5656
var dasum = new Routine();
57-
dasum.initializeSync(); // eslint-disable-line node/no-sync
57+
dasum.initializeSync(); // eslint-disable-line n/no-sync
5858
setReadOnly( dasum, 'Module', Module.bind( null ) );
5959

6060

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

0 commit comments

Comments
 (0)