Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"protocol": "https",
"hostname": "api.github.com",
"port": 443,
"pathname": "/",
"page": 1,
"last_page": "last",
"per_page": 100,
"method": "GET",
"useragent": "https://github.com/stdlib-js/stdlib/@stdlib/_tools/github/subscriptions",
"accept": "application/vnd.github.v3.star+json"
"protocol": "https",
"hostname": "api.github.com",
"port": 443,
"pathname": "/",
"page": 1,
"last_page": "last",
"per_page": 100,
"method": "GET",
"useragent": "https://github.com/stdlib-js/stdlib/@stdlib/_tools/github/subscriptions",
"accept": "application/vnd.github.v3.star+json"
}
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/fs/read-dir/test/test.cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ tape( 'the command-line interface reads the entire contents of a directory', opt
t.fail( error.message );
} else {
str = stdout.toString();
t.strictEqual( str, 'index.js\n', 'prints directory contents to `stdout`' );
t.strictEqual( str, 'index.js\nindex.mjs\n', 'prints directory contents to `stdout`' );
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
}
t.end();
Expand Down
146 changes: 73 additions & 73 deletions lib/node_modules/@stdlib/math/strided/special/dinv/manifest.json
Original file line number Diff line number Diff line change
@@ -1,75 +1,75 @@
{
"options": {
"task": "build"
},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"task": "build",
"src": [
"./src/dinv.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/inv",
"@stdlib/strided/base/dmap",
"@stdlib/strided/napi/dmap"
]
},
{
"task": "examples",
"src": [
"./src/dinv.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/inv",
"@stdlib/strided/base/dmap"
]
},
{
"task": "benchmark",
"src": [
"./src/dinv.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/inv",
"@stdlib/strided/base/dmap"
]
}
]
"options": {
"task": "build"
},
"fields": [
{
"field": "src",
"resolve": true,
"relative": true
},
{
"field": "include",
"resolve": true,
"relative": true
},
{
"field": "libraries",
"resolve": false,
"relative": false
},
{
"field": "libpath",
"resolve": true,
"relative": false
}
],
"confs": [
{
"task": "build",
"src": [
"./src/dinv.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/inv",
"@stdlib/strided/base/dmap",
"@stdlib/strided/napi/dmap"
]
},
{
"task": "examples",
"src": [
"./src/dinv.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/inv",
"@stdlib/strided/base/dmap"
]
},
{
"task": "benchmark",
"src": [
"./src/dinv.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/special/inv",
"@stdlib/strided/base/dmap"
]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"relative": false
}
],
"confs": [
"confs": [
{
"src": [
"./src/main.c"
Expand Down
Loading