8000 Auto-generated commit · stdlib-js/utils-async-map-keys@d584565 · GitHub
[go: up one dir, main page]

Skip to content

Commit d584565

Browse files
committed
Auto-generated commit
1 parent 9a3333a commit d584565

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-01T03:14:08.969Z
1+
2023-12-01T03:24:34.714Z

.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 <bguiz@users.noreply.github.com>
99
Bruno Fenzl <brunofenzl@gmail.com>
1010
Christopher Dambamuromo <chridam@gmail.com>
1111
Dan Rose <danoftheroses@gmail.com>
12+
Daniel Killenberger <daniel.killenberger@gmail.com>
1213
Dominik Moritz <domoritz@gmail.com>
1314
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
1415
Frank Kovacs <fran70kk@gmail.com>
@@ -29,6 +30,7 @@ Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2930
Philipp Burckhardt <pburckhardt@outlook.com>
3031
Pranav Goswami <goswami.4@iitj.ac.in>
3132
Ricky Reusser <rsreusser@gmail.com>
33+
Robert Gislason <gztown2216@yahoo.com>
3234
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
3335
Ryan Seal <splrk@users.noreply.github.com>
3436
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
@@ -37,4 +39,3 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
3739
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
3840
orimiles5 <97595296+orimiles5@users.noreply.github.com>
3941
rei2hu <reimu@reimu.ws>
40-
Robert Gislason <gztown2216@yahoo.com>

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ type TernaryTransform = ( value: any, index: number, next: Callback ) => void;
119119
* @param obj - the input object
120120
* @param next - a callback to be invoked after processing an object `value`
121121
*/
122-
type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback ) => void; // tslint-disable-line max-line-length
122+
type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback ) => void;
123123

124124
/**
125125
* Transform function.
@@ -129,7 +129,7 @@ type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback
129129
* @param obj - the input object
130130
* @param next - a callback to be invoked after processing an object `value`
131131
*/
132-
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform; // tslint-disable-line max-line-length
132+
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform;
133133

134134
/**
135135
* Maps keys from one object to a new object having the same values.
@@ -201,7 +201,7 @@ interface MapKeysAsync {
201201
* // Process each file in `files`:
202202
* mapKeysAsync( files, opts, read, done );
203203
*/
204-
( obj: any, options: Options, transform: Transform, done: DoneCallback ): void; // tslint-disable-line max-line-length
204+
( obj: any, options: Options, transform: Transform, done: DoneCallback ): void;
205205

206206
/**
207207
* Maps keys from one object to a new object having the same values.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"debug": "^2.6.9"
5050
},
5151
"devDependencies": {
52-
"@stdlib/bench": "^0.1.0",
52+
"@stdlib/bench": "^0.2.1",
5353
"@stdlib/fs-read-file": "^0.1.1",
5454
"@stdlib/random-base-randu": "^0.1.0",
5555
"@stdlib/utils-noop": "^0.1.1",

0 commit comments

Comments
 (0)
0