diff --git a/.github/.keepalive b/.github/.keepalive index bcb4ced..6a919b9 100644 --- a/.github/.keepalive +++ b/.github/.keepalive @@ -1 +1 @@ -2024-01-01T01:16:14.905Z +2024-02-01T01:23:10.402Z diff --git a/NOTICE b/NOTICE index f7aca1b..e6e7482 100644 --- a/NOTICE +++ b/NOTICE @@ -1 +1 @@ -Copyright (c) 2016-2023 The Stdlib Authors. +Copyright (c) 2016-2024 The Stdlib Authors. diff --git a/README.md b/README.md index b78ea1d..702a6ed 100644 --- a/README.md +++ b/README.md @@ -53,12 +53,14 @@ npm install @stdlib/strided-base-smap2 Alternatively, -- 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]. -- If you are using Deno, visit the [`deno` branch][deno-url]. -- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd` branch][umd-url]. +- 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]). +- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions). +- 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]). The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships. +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. +
@@ -408,8 +410,11 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors]. [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules [deno-url]: https://github.com/stdlib-js/strided-base-smap2/tree/deno +[deno-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/deno/README.md [umd-url]: https://github.com/stdlib-js/strided-base-smap2/tree/umd +[umd-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/umd/README.md [esm-url]: https://github.com/stdlib-js/strided-base-smap2/tree/esm +[esm-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/esm/README.md [branches-url]: https://github.com/stdlib-js/strided-base-smap2/blob/main/branches.md [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/strided-base-smap2/main/LICENSE diff --git a/branches.md b/branches.md index e58ee06..3047d69 100644 --- a/branches.md +++ b/branches.md @@ -24,9 +24,9 @@ This repository has the following branches: - **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place. - **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). -- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers. -- **deno**: [Deno][deno-url] branch for use in Deno. -- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments. +- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]). +- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]). +- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]). The following diagram illustrates the relationships among the above branches: @@ -49,5 +49,8 @@ C -->|bundle| F[umd]; [stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/strided/base/smap2 [production-url]: https://github.com/stdlib-js/strided-base-smap2/tree/production [deno-url]: https://github.com/stdlib-js/strided-base-smap2/tree/deno +[deno-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/deno/README.md [umd-url]: https://github.com/stdlib-js/strided-base-smap2/tree/umd -[esm-url]: https://github.com/stdlib-js/strided-base-smap2/tree/esm \ No newline at end of file +[umd-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/umd/README.md +[esm-url]: https://github.com/stdlib-js/strided-base-smap2/tree/esm +[esm-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/esm/README.md \ No newline at end of file diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index aed7c98..9e4a996 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -45,8 +45,8 @@ interface Routine { * @returns `z` * * @example - * var Float32Array = require( `@stdlib/array/float32` ); - * var addf = require( `@stdlib/math/base/ops/addf` ); + * var Float32Array = require( '@stdlib/array-float32' ); + * var addf = require( '@stdlib/math-base-ops-addf' ); * * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); * var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); @@ -74,8 +74,8 @@ interface Routine { * @returns `z` * * @example - * var Float32Array = require( `@stdlib/array/float32` ); - * var addf = require( `@stdlib/math/base/ops/addf` ); + * var Float32Array = require( '@stdlib/array-float32' ); + * var addf = require( '@stdlib/math-base-ops-addf' ); * * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); * var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); @@ -101,8 +101,8 @@ interface Routine { * @returns `z` * * @example -* var Float32Array = require( `@stdlib/array/float32` ); -* var addf = require( `@stdlib/math/base/ops/addf` ); +* var Float32Array = require( '@stdlib/array-float32' ); +* var addf = require( '@stdlib/math-base-ops-addf' ); * * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); * var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); @@ -112,8 +112,8 @@ interface Routine { * // z => [ 2.0, 4.0, 6.0, 8.0, 10.0 ] * * @example -* var Float32Array = require( `@stdlib/array/float32` ); -* var addf = require( `@stdlib/math/base/ops/addf` ); +* var Float32Array = require( '@stdlib/array-float32' ); +* var addf = require( '@stdlib/math-base-ops-addf' ); * * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); * var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );