Skip to content

Commit 90145d5

Browse files
committed
Add comments or packages to ancestor namespace
1 parent a85a704 commit 90145d5

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

Diff for: lib/node_modules/@stdlib/math/base/lib/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
2323
*/
2424

25+
/*
26+
* The following modules are intentionally not exported: napi
27+
*/
28+
2529
// MODULES //
2630

2731
var setReadOnly = require( '@stdlib/utils/define-read-only-property' );

Diff for: lib/node_modules/@stdlib/math/base/napi/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var ns = require( '@stdlib/math/base/napi' );
3535
Standard library C APIs for registering a Node-API module exporting interfaces.
3636

3737
```javascript
38-
var operators = ns;
38+
var napi = ns;
3939
// returns {...}
4040
```
4141

Diff for: lib/node_modules/@stdlib/math/iter/lib/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ setReadOnly( ns, 'sequences', require( '@stdlib/math/iter/sequences' ) );
6363
*/
6464
setReadOnly( ns, 'special', require( '@stdlib/math/iter/special' ) );
6565

66+
/**
67+
* @name tools
68+
* @memberof ns
69+
* @readonly
70+
* @type {Namespace}
71+
* @see {@link module:@stdlib/math/iter/tools}
72+
*/
73+
setReadOnly( ns, 'tools', require( '@stdlib/math/iter/tools' ) );
74+
6675

6776
// EXPORTS //
6877

Diff for: lib/node_modules/@stdlib/math/lib/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ setReadOnly( ns, 'special', require( '@stdlib/math/special' ) );
7272
*/
7373
setReadOnly( ns, 'strided', require( '@stdlib/math/strided' ) );
7474

75+
/**
76+
* @name tools
77+
* @memberof ns
78+
* @readonly
79+
* @type {Namespace}
80+
* @see {@link module:@stdlib/math/tools}
81+
*/
82+
setReadOnly( ns, 'tools', require( '@stdlib/math/tools' ) );
83+
7584

7685
// EXPORTS //
7786

Diff for: lib/node_modules/@stdlib/strided/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ console.log( objectKeys( ns ) );
8080

8181
<!-- <toc-links> -->
8282

83-
[@stdlib/strided/base]: https://github.com/stdlib-js/stdlib
83+
[@stdlib/strided/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/strided/base
8484

85-
[@stdlib/strided/dispatch]: https://github.com/stdlib-js/stdlib
85+
[@stdlib/strided/dispatch]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/strided/dispatch
8686

87-
[@stdlib/strided/dtypes]: https://github.com/stdlib-js/stdlib
87+
[@stdlib/strided/dtypes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/strided/dtypes
8888

8989
<!-- </toc-links> -->
9090

0 commit comments

Comments
 (0)