Skip to content

Commit 1f16cc7

Browse files
committed
Auto-generated commit
1 parent fd9a41d commit 1f16cc7

File tree

3 files changed

+39
-10
lines changed

3 files changed

+39
-10
lines changed

README.md

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,14 @@ npm install @stdlib/array-one-to-like
5555

5656
Alternatively,
5757

58-
- 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].
59-
- If you are using Deno, visit the [`deno` branch][deno-url].
60-
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd` branch][umd-url].
58+
- 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]).
59+
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
60+
- 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]).
6161

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

64+
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.
65+
6466
</section>
6567

6668
<section class="usage">
@@ -166,6 +168,15 @@ console.log( y );
166168

167169
<section class="related">
168170

171+
* * *
172+
173+
## See Also
174+
175+
- <span class="package-name">[`@stdlib/array-full-like`][@stdlib/array/full-like]</span><span class="delimiter">: </span><span class="description">create a filled array having the same length and data type as a provided array.</span>
176+
- <span class="package-name">[`@stdlib/array-ones-like`][@stdlib/array/ones-like]</span><span class="delimiter">: </span><span class="description">create an array filled with ones and having the same length and data type as a provided array.</span>
177+
- <span class="package-name">[`@stdlib/array-one-to`][@stdlib/array/one-to]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array whose elements increment by 1 starting from one.</span>
178+
- <span class="package-name">[`@stdlib/array-zero-to-like`][@stdlib/array/zero-to-like]</span><span class="delimiter">: </span><span class="description">generate a linearly spaced numeric array whose elements increment by 1 starting from zero and having the same length and data type as a provided input array.</span>
179+
169180
</section>
170181

171182
<!-- /.related -->
@@ -209,8 +220,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
209220
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-one-to-like.svg
210221
[npm-url]: https://npmjs.org/package/@stdlib/array-one-to-like
211222

212-
[test-image]: https://github.com/stdlib-js/array-one-to-like/actions/workflows/test.yml/badge.svg?branch=v0.1.0
213-
[test-url]: https://github.com/stdlib-js/array-one-to-like/actions/workflows/test.yml?query=branch:v0.1.0
223+
[test-image]: https://github.com/stdlib-js/array-one-to-like/actions/workflows/test.yml/badge.svg?branch=main
224+
[test-url]: https://github.com/stdlib-js/array-one-to-like/actions/workflows/test.yml?query=branch:main
214225

215226
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-one-to-like/main.svg
216227
[coverage-url]: https://codecov.io/github/stdlib-js/array-one-to-like?branch=main
@@ -233,12 +244,27 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
233244
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
234245

235246
[deno-url]: https://github.com/stdlib-js/array-one-to-like/tree/deno
247+
[deno-readme]: https://github.com/stdlib-js/array-one-to-like/blob/deno/README.md
236248
[umd-url]: https://github.com/stdlib-js/array-one-to-like/tree/umd
249+
[umd-readme]: https://github.com/stdlib-js/array-one-to-like/blob/umd/README.md
237250
[esm-url]: https://github.com/stdlib-js/array-one-to-like/tree/esm
251+
[esm-readme]: https://github.com/stdlib-js/array-one-to-like/blob/esm/README.md
238252
[branches-url]: https://github.com/stdlib-js/array-one-to-like/blob/main/branches.md
239253

240254
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array-one-to-like/main/LICENSE
241255

256+
<!-- <related-links> -->
257+
258+
[@stdlib/array/full-like]: https://github.com/stdlib-js/array-full-like
259+
260+
[@stdlib/array/ones-like]: https://github.com/stdlib-js/array-ones-like
261+
262+
[@stdlib/array/one-to]: https://github.com/stdlib-js/array-one-to
263+
264+
[@stdlib/array/zero-to-like]: https://github.com/stdlib-js/array-zero-to-like
265+
266+
<!-- </related-links> -->
267+
242268
</section>
243269

244270
<!-- /.links -->

branches.md

Lines changed: 7 additions & 4 deletions
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/array/one-to-like
5050
[production-url]: https://github.com/stdlib-js/array-one-to-like/tree/production
5151
[deno-url]: https://github.com/stdlib-js/array-one-to-like/tree/deno
52+
[deno-readme]: https://github.com/stdlib-js/array-one-to-like/blob/deno/README.md
5253
[umd-url]: https://github.com/stdlib-js/array-one-to-like/tree/umd
53-
[esm-url]: https://github.com/stdlib-js/array-one-to-like/tree/esm
54+
[umd-readme]: https://github.com/stdlib-js/array-one-to-like/blob/umd/README.md
55+
[esm-url]: https://github.com/stdlib-js/array-one-to-like/tree/esm
56+
[esm-readme]: https://github.com/stdlib-js/array-one-to-like/blob/esm/README.md

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)