Skip to content

Commit cb8df22

Browse files
committed
Auto-generated commit
1 parent 50f2247 commit cb8df22

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

.github/.keepalive

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-01-01T01:17:39.408Z
1+
2024-02-01T01:25:00.702Z

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2023 The Stdlib Authors.
1+
Copyright (c) 2016-2024 The Stdlib Authors.

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,14 @@ npm install @stdlib/stats-base-dvarianceyc
113113

114114
Alternatively,
115115

116-
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm` branch][esm-url].
117-
- If you are using Deno, visit the [`deno` branch][deno-url].
118-
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd` branch][umd-url].
116+
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]).
117+
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
118+
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]).
119119

120120
The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.
121121

122+
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
123+
122124
</section>
123125

124126
<section class="usage">
@@ -348,8 +350,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
348350
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
349351

350352
[deno-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/deno
353+
[deno-readme]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/deno/README.md
351354
[umd-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/umd
355+
[umd-readme]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/umd/README.md
352356
[esm-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/esm
357+
[esm-readme]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/esm/README.md
353358
[branches-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/main/branches.md
354359

355360
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/stats-base-dvarianceyc/main/LICENSE

branches.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ This repository has the following branches:
2424

2525
- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place.
2626
- **production**: [production build][production-url] of the package (e.g., reformatted error messages to reduce bundle sizes and thus the number of bytes transmitted over a network).
27-
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers.
28-
- **deno**: [Deno][deno-url] branch for use in Deno.
29-
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments.
27+
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]).
28+
- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]).
29+
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]).
3030

3131
The following diagram illustrates the relationships among the above branches:
3232

@@ -49,5 +49,8 @@ C -->|bundle| F[umd];
4949
[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/dvarianceyc
5050
[production-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/production
5151
[deno-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/deno
52+
[deno-readme]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/deno/README.md
5253
[umd-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/umd
53-
[esm-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/esm
54+
[umd-readme]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/umd/README.md
55+
[esm-url]: https://github.com/stdlib-js/stats-base-dvarianceyc/tree/esm
56+
[esm-readme]: https://github.com/stdlib-js/stats-base-dvarianceyc/blob/esm/README.md

docs/types/index.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ interface Routine {
3232
* @returns variance
3333
*
3434
* @example
35-
* var Float64Array = require( `@stdlib/array/float64` );
35+
* var Float64Array = require( '@stdlib/array-float64' );
3636
*
3737
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
3838
*
@@ -52,7 +52,7 @@ interface Routine {
5252
* @returns variance
5353
*
5454
* @example
55-
* var Float64Array = require( `@stdlib/array/float64` );
55+
* var Float64Array = require( '@stdlib/array-float64' );
5656
*
5757
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
5858
*
@@ -72,15 +72,15 @@ interface Routine {
7272
* @returns variance
7373
*
7474
* @example
75-
* var Float64Array = require( `@stdlib/array/float64` );
75+
* var Float64Array = require( '@stdlib/array-float64' );
7676
*
7777
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
7878
*
7979
* var v = dvarianceyc( x.length, 1, x, 1 );
8080
* // returns ~4.3333
8181
*
8282
* @example
83-
* var Float64Array = require( `@stdlib/array/float64` );
83+
* var Float64Array = require( '@stdlib/array-float64' );
8484
*
8585
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
8686
*

0 commit comments

Comments
 (0)