File tree Expand file tree Collapse file tree 6 files changed +7
-10
lines changed
Expand file tree Collapse file tree 6 files changed +7
-10
lines changed 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
Original file line number Diff line number Diff line change 1+ 2023-12-01T05:40:02.989Z
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>
Original file line number Diff line number Diff line change @@ -261,8 +261,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
261261[ npm-image ] : http://img.shields.io/npm/v/@stdlib/ndarray-iter-matrix-entries.svg
262262[ npm-url ] : https://npmjs.org/package/@stdlib/ndarray-iter-matrix-entries
263263
264- [ test-image ] : https://github.com/stdlib-js/ndarray-iter-matrix-entries/actions/workflows/test.yml/badge.svg?branch=v0.1.0
265- [ test-url ] : https://github.com/stdlib-js/ndarray-iter-matrix-entries/actions/workflows/test.yml?query=branch:v0.1.0
264+ [ test-image ] : https://github.com/stdlib-js/ndarray-iter-matrix-entries/actions/workflows/test.yml/badge.svg?branch=main
265+ [ test-url ] : https://github.com/stdlib-js/ndarray-iter-matrix-entries/actions/workflows/test.yml?query=branch:main
266266
267267[ coverage-image ] : https://img.shields.io/codecov/c/github/stdlib-js/ndarray-iter-matrix-entries/main.svg
268268[ coverage-url ] : https://codecov.io/github/stdlib-js/ndarray-iter-matrix-entries?branch=main
Original file line number Diff line number Diff line change 5757 "@stdlib/array-base-zero-to" : " ^0.1.0" ,
5858 "@stdlib/assert-is-array" : " ^0.1.1" ,
5959 "@stdlib/assert-is-iterator-like" : " ^0.1.1" ,
60- "@stdlib/bench" : " ^0.2.0 " ,
60+ "@stdlib/bench" : " ^0.2.1 " ,
6161 "@stdlib/ndarray-array" : " ^0.1.0" ,
6262 "@stdlib/ndarray-slice" : " ^0.1.0" ,
6363 "@stdlib/ndarray-to-array" : " ^0.1.0" ,
You can’t perform that action at this time.
0 commit comments