File tree Expand file tree Collapse file tree 4 files changed +40
-1
lines changed
Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -296,6 +296,23 @@ while ( true ) {
296296
297297<!-- /.references -->
298298
299+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
300+
301+ <section class =" related " >
302+
303+ * * *
304+
305+ ## See Also
306+
307+ - [ ` @stdlib/array/from-iterator ` ] [ @stdlib/array/from-iterator ] : create (or fill) an array from an iterator.
308+ - [ ` @stdlib/array/to-iterator-right ` ] [ @stdlib/array/to-iterator-right ] : create an iterator from an array-like object, iterating from right to left.
309+ - [ ` @stdlib/array/to-strided-iterator ` ] [ @stdlib/array/to-strided-iterator ] : create an iterator from a strided array-like object.
310+ - [ ` @stdlib/array/to-view-iterator ` ] [ @stdlib/array/to-view-iterator ] : create an iterator from an array-like object view.
311+
312+ </section >
313+
314+ <!-- /.related -->
315+
299316<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
300317
301318
@@ -353,6 +370,18 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
353370
354371[ stdlib-license ] : https://raw.githubusercontent.com/stdlib-js/array-to-view-iterator-right/main/LICENSE
355372
373+ <!-- <related-links> -->
374+
375+ [ @stdlib/array/from-iterator ] : https://github.com/stdlib-js/array-from-iterator
376+
377+ [ @stdlib/array/to-iterator-right ] : https://github.com/stdlib-js/array-to-iterator-right
378+
379+ [ @stdlib/array/to-strided-iterator ] : https://github.com/stdlib-js/array-to-strided-iterator
380+
381+ [ @stdlib/array/to-view-iterator ] : https://github.com/stdlib-js/array-to-view-iterator
382+
383+ <!-- </related-links> -->
384+
356385</section >
357386
358387<!-- /.links -->
You can’t perform that action at this time.
0 commit comments