From 31ae41e3e337ab047051b98466b7c9ae2abdf3eb Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Fri, 1 Dec 2023 06:25:37 +0000 Subject: [PATCH] Auto-generated commit --- .editorconfig | 5 ----- .github/.keepalive | 2 +- .github/workflows/publish.yml | 4 ++-- CONTRIBUTORS | 3 ++- docs/types/index.d.ts | 4 ++-- package.json | 4 ++-- 6 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.editorconfig b/.editorconfig index 13e9c39..60d743f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -148,11 +148,6 @@ indent_size = 2 indent_style = space indent_size = 2 -# Set properties for `tslint.json` files: -[tslint.json] -indent_style = space -indent_size = 2 - # Set properties for `tsconfig.json` files: [tsconfig.json] indent_style = space diff --git a/.github/.keepalive b/.github/.keepalive index ae503c0..11ff9e0 100644 --- a/.github/.keepalive +++ b/.github/.keepalive @@ -1 +1 @@ -2023-11-01T06:22:29.426Z +2023-12-01T06:25:33.769Z diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0037bdb..8b8977f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -119,7 +119,7 @@ jobs: # For all dependencies, check in all *.js files if they are still used; if not, remove them: jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do dep=$(echo "$dep" | xargs) - if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then + if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then jq --indent 2 "del(.dependencies[\"$dep\"])" ./package.json > ./package.json.tmp mv ./package.json.tmp ./package.json fi @@ -129,7 +129,7 @@ jobs: continue fi dep=$(echo "$dep" | xargs) - if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then + if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp mv ./package.json.tmp ./package.json fi diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0dae4fe..188cda8 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -9,6 +9,7 @@ Brendan Graetz Bruno Fenzl Christopher Dambamuromo Dan Rose +Daniel Killenberger Dominik Moritz Dorrin Sotoudeh Frank Kovacs @@ -29,6 +30,7 @@ Ognjen Jevremović Philipp Burckhardt Pranav Goswami Ricky Reusser +Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Ryan Seal Seyyed Parsa Neshaei @@ -37,4 +39,3 @@ Stephannie Jiménez Gacha Yernar Yergaziyev orimiles5 <97595296+orimiles5@users.noreply.github.com> rei2hu -Robert Gislason diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index a60cd9f..a9475ba 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -153,7 +153,7 @@ interface UnaryFunction extends PRNG { * @param options - function options * @returns output array */ - normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray; // tslint:disable-line:max-line-length + normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray; } /** @@ -184,7 +184,7 @@ interface Random extends PRNG { * var out = minstd.normalized( 10 ); * // returns */ - normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray; // tslint:disable-line:max-line-length + normalized( len: number, options?: NormalizedOptions ): NormalizedRandomArray; /** * Returns a function for creating arrays containing pseudorandom numbers generated using a linear congruential pseudorandom number generator (LCG). diff --git a/package.json b/package.json index 221d73e..a49366a 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "@stdlib/random-base-minstd": "^0.1.0", "@stdlib/strided-base-nullary": "^0.1.0", "@stdlib/string-format": "^0.1.1", - "@stdlib/types": "^0.1.0", + "@stdlib/types": "^0.2.0", "@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.1", "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1", "@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.1.1" @@ -57,7 +57,7 @@ "@stdlib/array-float64": "^0.1.1", "@stdlib/array-int32": "^0.1.1", "@stdlib/assert-is-int32array": "^0.1.1", - "@stdlib/bench": "^0.1.0", + "@stdlib/bench": "^0.2.1", "@stdlib/console-log-each": "^0.1.0", "@stdlib/constants-int32-max": "^0.1.1", "@stdlib/math-base-assert-is-nan": "^0.1.1",