Skip to content

Commit 2732472

Browse files
committed
Auto-generated commit
1 parent f095dc1 commit 2732472

File tree

4 files changed

+53
-1
lines changed

4 files changed

+53
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 5
3939
- name: Replace all GitHub links to individual packages with npm links
4040
run: |
41-
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei 's/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
41+
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei '/tree\/main/b; s/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
4242
- name: Replace all stdlib GitHub dependencies with the respective npm packages
4343
run: |
4444
find package.json -type f -print0 | xargs -0 sed -Ei 's/"github:stdlib-js[^"]*"/"^0.0.x"/g'

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ jobs:
4444
run: |
4545
npm install || npm install || npm install
4646
timeout-minutes: 15
47+
- name: Build native add-on (if present)
48+
run: |
49+
if [ -f "binding.gyp" ]; then
50+
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
51+
fi
4752
- name: Run tests
4853
id: tests
4954
run: |

.github/workflows/test_coverage.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
run: |
4141
npm install || npm install || npm install
4242
timeout-minutes: 15
43+
- name: Build native add-on (if present)
44+
run: |
45+
if [ -f "binding.gyp" ]; then
46+
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
47+
fi
4348
- name: Calculate test coverage
4449
run: |
4550
npm run test-cov || npm run test-cov || npm run test-cov

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,6 +1430,28 @@ console.log( arr );
14301430

14311431
<!-- /.references -->
14321432

1433+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
1434+
1435+
<section class="related">
1436+
1437+
* * *
1438+
1439+
## See Also
1440+
1441+
- [`@stdlib/array/buffer`][@stdlib/array/buffer]: arrayBuffer.
1442+
- [`@stdlib/array/float32`][@stdlib/array/float32]: float32Array.
1443+
- [`@stdlib/array/float64`][@stdlib/array/float64]: float64Array.
1444+
- [`@stdlib/array/int16`][@stdlib/array/int16]: int16Array.
1445+
- [`@stdlib/array/int8`][@stdlib/array/int8]: int8Array.
1446+
- [`@stdlib/array/uint16`][@stdlib/array/uint16]: uint16Array.
1447+
- [`@stdlib/array/uint32`][@stdlib/array/uint32]: uint32Array.
1448+
- [`@stdlib/array/uint8`][@stdlib/array/uint8]: uint8Array.
1449+
- [`@stdlib/array/uint8c`][@stdlib/array/uint8c]: uint8ClampedArray.
1450+
1451+
</section>
1452+
1453+
<!-- /.related -->
1454+
14331455
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
14341456

14351457

@@ -1489,8 +1511,28 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
14891511

14901512
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
14911513

1514+
<!-- <related-links> -->
1515+
14921516
[@stdlib/array/buffer]: https://github.com/stdlib-js/array-buffer
14931517

1518+
[@stdlib/array/float32]: https://github.com/stdlib-js/array-float32
1519+
1520+
[@stdlib/array/float64]: https://github.com/stdlib-js/array-float64
1521+
1522+
[@stdlib/array/int16]: https://github.com/stdlib-js/array-int16
1523+
1524+
[@stdlib/array/int8]: https://github.com/stdlib-js/array-int8
1525+
1526+
[@stdlib/array/uint16]: https://github.com/stdlib-js/array-uint16
1527+
1528+
[@stdlib/array/uint32]: https://github.com/stdlib-js/array-uint32
1529+
1530+
[@stdlib/array/uint8]: https://github.com/stdlib-js/array-uint8
1531+
1532+
[@stdlib/array/uint8c]: https://github.com/stdlib-js/array-uint8c
1533+
1534+
<!-- </related-links> -->
1535+
14941536
</section>
14951537

14961538
<!-- /.links -->

0 commit comments

Comments
 (0)