Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 21, 2023
1 parent f2ee941 commit 3873343
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/productionize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -767,14 +767,16 @@ jobs:
git checkout production
git checkout -b cli
# Copy files to cli directory:
- name: 'Copy files to cli directory'
# Copy files to `cli` directory:
- name: 'Copy files to `cli` directory'
run: |
mkdir -p cli
mkdir -p cli/docs cli/test
cp README.md LICENSE CONTRIBUTORS NOTICE ./cli
cp -r bin etc ./cli
cp test/test.cli.js ./cli/test
if [ -e "test/test.cli.js" ]; then
cp test/test.cli.js ./cli/test
fi
if [ -d "test/fixtures" ]; then
cp -r test/fixtures ./cli/test
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Brendan Graetz <[email protected]>
Bruno Fenzl <[email protected]>
Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Daniel Killenberger <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
Frank Kovacs <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ base.acoversin,"base.acoversin( x )"
base.acsc,"base.acsc( x )"
base.acsch,"base.acsch( x )"
base.add,"base.add( x, y )"
base.add3,"base.add3( x, y, z )"
base.addf,"base.addf( x, y )"
base.ahavercos,"base.ahavercos( x )"
base.ahaversin,"base.ahaversin( x )"
Expand Down
2 changes: 1 addition & 1 deletion data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@stdlib/assert-is-browser": "^0.1.1",
"@stdlib/assert-is-string-array": "^0.1.1",
"@stdlib/assert-is-windows": "^0.1.1",
"@stdlib/bench": "^0.2.0",
"@stdlib/bench": "^0.2.1",
"@stdlib/fs-write-file": "^0.1.1",
"@stdlib/namespace-aliases": "^0.1.0",
"@stdlib/process-exec-path": "^0.1.1",
Expand Down

0 comments on commit 3873343

Please sign in to comment.