Skip to content

Commit 49325e6

Browse files
committed
Auto-generated commit
1 parent a9dcec5 commit 49325e6

File tree

6 files changed

+9
-13
lines changed

6 files changed

+9
-13
lines changed

.editorconfig

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ indent_size = 2
148148
indent_style = space
149149
indent_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]
158153
indent_style = space

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2023-11-01T06:21:58.635Z
1+
2023-12-01T06:25:02.746Z

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Brendan Graetz <[email protected]>
99
Bruno Fenzl <[email protected]>
1010
Christopher Dambamuromo <[email protected]>
1111
12+
Daniel Killenberger <[email protected]>
1213
Dominik Moritz <[email protected]>
1314
Dorrin Sotoudeh <[email protected]>
1415
Frank Kovacs <[email protected]>
@@ -29,6 +30,7 @@ Ognjen Jevremović <[email protected]>
2930
Philipp Burckhardt <[email protected]>
3031
Pranav Goswami <[email protected]>
3132
Ricky Reusser <[email protected]>
33+
Robert Gislason <[email protected]>
3234
Roman Stetsyk <[email protected]>
3335
Ryan Seal <[email protected]>
3436
Seyyed Parsa Neshaei <[email protected]>
@@ -37,4 +39,3 @@ Stephannie Jiménez Gacha <[email protected]>
3739
Yernar Yergaziyev <[email protected]>
3840
orimiles5 <[email protected]>
3941
40-
Robert Gislason <[email protected]>

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ interface UnaryFunction extends PRNG {
153153
* @param options - function options
154154
* @returns output array
155155
*/
156-
normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray; // tslint:disable-line:max-line-length
156+
normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray;
157157
}
158158

159159
/**
@@ -184,7 +184,7 @@ interface Random extends PRNG {
184184
* var out = mt19937.normalized( 10 );
185185
* // returns <Float64Array>
186186
*/
187-
normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray; // tslint:disable-line:max-line-length
187+
normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray;
188188

189189
/**
190190
* Returns a function for creating arrays containing pseudorandom numbers generated using a 32-bit Mersenne Twister pseudorandom number generator.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@stdlib/random-base-mt19937": "^0.1.0",
4848
"@stdlib/strided-base-nullary": "^0.1.0",
4949
"@stdlib/string-format": "^0.1.1",
50-
"@stdlib/types": "^0.1.0",
50+
"@stdlib/types": "^0.2.0",
5151
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.1",
5252
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
5353
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.1.1"
@@ -58,7 +58,7 @@
5858
"@stdlib/array-int32": "^0.1.1",
5959
"@stdlib/array-uint32": "^0.1.1",
6060
"@stdlib/assert-is-uint32array": "^0.1.1",
61-
"@stdlib/bench": "^0.1.0",
61+
"@stdlib/bench": "^0.2.1",
6262
"@stdlib/console-log-each": "^0.1.0",
6363
"@stdlib/constants-uint32-max": "^0.1.1",
6464
"@stdlib/math-base-assert-is-nan": "^0.1.1",

0 commit comments

Comments
 (0)