Skip to content

Commit ac8e793

Browse files
committed
Auto-generated commit
1 parent 9a49475 commit ac8e793

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2023-12-01T06:25:21.255Z

.github/workflows/productionize.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -767,14 +767,16 @@ jobs:
767767
git checkout production
768768
git checkout -b cli
769769
770-
# Copy files to cli directory:
771-
- name: 'Copy files to cli directory'
770+
# Copy files to `cli` directory:
771+
- name: 'Copy files to `cli` directory'
772772
run: |
773773
mkdir -p cli
774774
mkdir -p cli/docs cli/test
775775
cp README.md LICENSE CONTRIBUTORS NOTICE ./cli
776776
cp -r bin etc ./cli
777-
cp test/test.cli.js ./cli/test
777+
if [ -e "test/test.cli.js" ]; then
778+
cp test/test.cli.js ./cli/test
779+
fi
778780
if [ -d "test/fixtures" ]; then
779781
cp -r test/fixtures ./cli/test
780782
fi

.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: 1 addition & 0 deletions
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]>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"@stdlib/assert-is-buffer": "^0.1.1",
7979
"@stdlib/assert-is-int32array": "^0.1.1",
8080
"@stdlib/assert-is-windows": "^0.1.1",
81-
"@stdlib/bench": "^0.2.0",
81+
"@stdlib/bench": "^0.2.1",
8282
"@stdlib/constants-int32-max": "^0.1.1",
8383
"@stdlib/fs-exists": "^0.1.1",
8484
"@stdlib/fs-unlink": "^0.1.1",

0 commit comments

Comments
 (0)