File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -148,11 +148,6 @@ indent_size = 2
148148indent_style = space
149149indent_size = 2
150150
151- # Set properties for `tslint.json` files:
152- [tslint.json ]
153- indent_style = space
154- indent_size = 2
155-
156151# Set properties for `tsconfig.json` files:
157152[tsconfig.json ]
158153indent_style = space
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ jobs:
119119 # For all dependencies, check in all *.js files if they are still used; if not, remove them:
120120 jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do
121121 dep=$(echo "$dep" | xargs)
122- if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
122+ if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
123123 jq --indent 2 "del(.dependencies[\"$dep\"])" ./package.json > ./package.json.tmp
124124 mv ./package.json.tmp ./package.json
125125 fi
@@ -129,7 +129,7 @@ jobs:
129129 continue
130130 fi
131131 dep=$(echo "$dep" | xargs)
132- if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
132+ if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
133133 jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp
134134 mv ./package.json.tmp ./package.json
135135 fi
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Brendan Graetz <bguiz@users.noreply.github.com>
99Bruno Fenzl <brunofenzl@gmail.com>
1010Christopher Dambamuromo <chridam@gmail.com>
1111Dan Rose <danoftheroses@gmail.com>
12+ Daniel Killenberger <daniel.killenberger@gmail.com>
1213Dominik Moritz <domoritz@gmail.com>
1314Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
1415Frank Kovacs <fran70kk@gmail.com>
@@ -29,6 +30,7 @@ Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2930Philipp Burckhardt <pburckhardt@outlook.com>
3031Pranav Goswami <goswami.4@iitj.ac.in>
3132Ricky Reusser <rsreusser@gmail.com>
33+ Robert Gislason <gztown2216@yahoo.com>
3234Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
3335Ryan Seal <splrk@users.noreply.github.com>
3436Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
@@ -37,4 +39,3 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
3739Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
3840orimiles5 <97595296+orimiles5@users.noreply.github.com>
3941rei2hu <reimu@reimu.ws>
40- Robert Gislason <gztown2216@yahoo.com>
Original file line number Diff line number Diff line change @@ -259,6 +259,12 @@ int main( void ) {
259259
260260<section class="related">
261261
262+ * * *
263+
264+ ## See Also
265+
266+ - <span class="package-name">[`@stdlib/number-float32/base/normalize`][@stdlib/number/float32/base/normalize]</span><span class="delimiter">: </span><span class="description">return a normal number `y` and exponent `exp` satisfying `x = y \* 2^exp`.</span>
267+
262268</section>
263269
264270<!-- /.related -->
@@ -332,6 +338,12 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
332338
333339[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/number-float64-base-normalize/main/LICENSE
334340
341+ <!-- <related-links> -->
342+
343+ [@stdlib/number/float32/base/normalize]: https://github.com/stdlib-js/number-float32-base-normalize
344+
345+ <!-- </related-links> -->
346+
335347</section>
336348
337349<!-- /.links -->
Original file line number Diff line number Diff line change 4343 "@stdlib/math-base-assert-is-infinite" : " ^0.1.1" ,
4444 "@stdlib/math-base-assert-is-nan" : " ^0.1.1" ,
4545 "@stdlib/math-base-special-abs" : " ^0.1.1" ,
46- "@stdlib/types" : " ^0.1 .0" ,
46+ "@stdlib/types" : " ^0.2 .0" ,
4747 "@stdlib/utils-define-nonenumerable-read-only-property" : " ^0.1.1" ,
4848 "@stdlib/utils-library-manifest" : " ^0.1.1"
4949 },
5252 "@stdlib/assert-has-own-property" : " ^0.1.1" ,
5353 "@stdlib/assert-is-array" : " ^0.1.1" ,
5454 "@stdlib/assert-is-float64array" : " ^0.1.1" ,
55- "@stdlib/bench" : " ^0.1.0 " ,
55+ "@stdlib/bench" : " ^0.2.1 " ,
5656 "@stdlib/constants-float64-ninf" : " ^0.1.1" ,
5757 "@stdlib/constants-float64-pinf" : " ^0.1.1" ,
5858 "@stdlib/constants-float64-smallest-subnormal" : " ^0.1.1" ,
You can’t perform that action at this time.
0 commit comments