Skip to content

Commit bc3cd78

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into refactor-nanmeanwd
2 parents 4037bc0 + f4a90b1 commit bc3cd78

File tree

2,010 files changed

+106450
-21375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,010 files changed

+106450
-21375
lines changed

.github/workflows/scripts/run_tests_coverage

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,10 @@ compare_cov() {
144144
main() {
145145
start_heartbeat "${heartbeat_interval}"
146146

147-
# Only keep files which reside in package directories:
148-
changed=$(echo "${changed}" | tr ' ' '\n' | grep '^lib/node_modules/@stdlib') || true
147+
# Only keep files which reside in package directories, but exclude _tools:
148+
changed=$(echo "${changed}" | tr ' ' '\n' | \
149+
grep '^lib/node_modules/@stdlib' | \
150+
grep -v '^lib/node_modules/@stdlib/_tools') || true
149151

150152
# Find unique package directories:
151153
directories=$(echo "${changed}" | tr ' ' '\n' | sed -E 's/\/(benchmark|bin|data|docs|etc|examples|include|lib|scripts|src|test)(\/.*)?\/?$//' | uniq)

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Chinmay Joshi <[email protected]> Chinmay J
5555
5656
Debashis Maharana <[email protected]> DebashisMaharana
5757

58+
Deepak Singh <[email protected]>
59+
5860
Dhruv Arvind Singh <[email protected]> DhruvArvindSingh
5961
Dhruv Arvind Singh <[email protected]> Dhruv/
6062

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ Ali Salesi <[email protected]>
2121
AlyAbdelmoneim <[email protected]>
2222
Aman Bhansali <[email protected]>
2323
AmanBhadkariya <[email protected]>
24+
Amisha Chhajed <[email protected]>
2425
Amit Jimiwal <[email protected]>
2526
Annamalai Prabu <[email protected]>
2627
Anshu Kumar <[email protected]>
2728
Anshu Kumar <[email protected]>
2829
Anudeep Sanapala <[email protected]>
30+
Aryan Bhirud <[email protected]>
2931
Athan Reines <[email protected]>
3032
3133
Bhavishy Agrawal <[email protected]>
@@ -93,6 +95,7 @@ Krishnam Agarwal <[email protected]>
9395
Krishnendu Das <[email protected]>
9496
Kshitij-Dale <[email protected]>
9597
Lalit Narayan Yadav <[email protected]>
98+
Lokesh Ranjan <[email protected]>
9699
Lovelin Dhoni J B <[email protected]>
97100
98101
Mahfuza Humayra Mohona <[email protected]>
@@ -121,6 +124,7 @@ Ognjen Jevremović <[email protected]>
121124
Oneday12323 <[email protected]>
122125
Ori Miles <[email protected]>
123126
Philipp Burckhardt <[email protected]>
127+
Pierre Forstmann <[email protected]>
124128
Prajjwal Bajpai <[email protected]>
125129
Prajwal Kulkarni <[email protected]>
126130
Pranav Goswami <[email protected]>

lib/node_modules/@stdlib/_tools/bib/citation-reference/lib/cmd.js

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,15 @@
2929
* @returns {string} command
3030
*/
3131
function cmd( src, dest, opts ) {
32-
var out;
33-
out = new Array( 8 );
34-
out[ 0 ] = 'pandoc';
35-
out[ 1 ] = '--filter=pandoc-citeproc';
36-
out[ 2 ] = '--from=markdown';
37-
out[ 3 ] = '--to=markdown_github';
38-
out[ 4 ] = '--bibliography='+opts.database;
39-
out[ 5 ] = '--csl='+opts.csl;
40-
out[ 6 ] = '--output=' + dest;
41-
out[ 7 ] = src;
32+
var out = [];
33+
out.push( 'pandoc' );
34+
out.push( '--filter=pandoc-citeproc' );
35+
out.push( '--from=markdown' );
36+
out.push( '--to=markdown_github' );
37+
out.push( '--bibliography='+opts.database );
38+
out.push( '--csl='+opts.csl );
39+
out.push( '--output=' + dest );
40+
out.push( src );
4241
return out.join( ' ' );
4342
}
4443

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"tags": [
3-
"constant",
4-
"constructor",
2+
"tags": [
3+
"constant",
4+
"constructor",
55
"customfunction",
6-
"default",
7-
"example",
8-
"function",
9-
"license",
10-
"memberof",
11-
"module",
12-
"name",
13-
"namespace",
14-
"param",
15-
"private",
16-
"readonly",
17-
"returns",
18-
"see",
19-
"throws",
20-
"type"
21-
]
6+
"default",
7+
"example",
8+
"function",
9+
"license",
10+
"memberof",
11+
"module",
12+
"name",
13+
"namespace",
14+
"param",
15+
"private",
16+
"readonly",
17+
"returns",
18+
"see",
19+
"throws",
20+
"type"
21+
]
2222
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"limit": 5000,
3-
"remaining": 4823,
4-
"reset": 1454693201845
2+
"limit": 5000,
3+
"remaining": 4823,
4+
"reset": 1454693201845
55
}

lib/node_modules/@stdlib/_tools/github/user-rate-limit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ function clbk( error, status ) {
192192
### Usage
193193

194194
```bash
195-
Usage: ghratelimit [options]
195+
Usage: ghratelimit [options]
196196

197197
Options:
198198

lib/node_modules/@stdlib/_tools/licenses/licenses/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var licenses = require( '@stdlib/_tools/licenses/licenses' );
3838

3939
#### licenses( \[options], clbk )
4040

41-
Reads installed package dependencies and extracts license information from `package.json` files.
41+
Reads installed package dependencies and extracts license information from `package.json` files.
4242

4343
```javascript
4444
licenses( onResults );

lib/node_modules/@stdlib/_tools/makie/plugins/makie-repl/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ function plugin( dir, cwd ) {
4040
opts.cwd = dir;
4141
opts.stdio = 'inherit';
4242

43-
args = new Array( 2 );
43+
args = [];
4444

4545
// Environment variables:
46-
args[ 0 ] = 'REPL_DIR='+cwd;
46+
args.push( 'REPL_DIR='+cwd );
4747

4848
// Target:
49-
args[ 1 ] = 'repl';
49+
args.push( 'repl' );
5050

5151
spawn( 'make', args, opts );
5252
}

lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/entries.sync.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function entryPoints( pkgs ) {
5959
var k;
6060

6161
total = pkgs.length;
62-
out = new Array( total );
62+
out = [];
6363

6464
debug( 'Determining main entry points for %d packages...', total );
6565
for ( i = 0; i < total; i++ ) {
@@ -68,12 +68,12 @@ function entryPoints( pkgs ) {
6868
main = pkgs[ i ].id;
6969

7070
debug( 'Determined main entry point for package: %s (%d of %d). Main: %s', pkg, k, total, main );
71-
out[ i ] = {
71+
out.push({
7272
'id': main,
7373
'pkg': pkg,
7474
'dir': pkgs[ i ].dir,
7575
'entries': []
76-
};
76+
});
7777
}
7878
debug( 'Finished determining main entry points.' );
7979

0 commit comments

Comments
 (0)