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 Feb 20, 2024
1 parent 05e6252 commit ab2f8e2
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm_downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
# Upload the download data:
- name: 'Upload data'
# Pin action to full length commit SHA corresponding to v3.1.3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
# Pin action to full length commit SHA
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
# Define a name for the uploaded artifact (ensuring a unique name for each job):
name: npm_downloads
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,10 @@ jobs:
mv ./package.json.tmp ./package.json
fi
done
jq -r '.devDependencies | keys[]' ./package.json | while read -r dep; do
if [[ "$dep" != "@stdlib"* ]]; then
continue
fi
dep=$(echo "$dep" | xargs)
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
done
# Set `devDependencies` to an empty object:
jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
mv ./package.json.tmp ./package.json
# Remove CLI section:
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?<section class=\"cli\">[\s\S]+?<\!\-\- \/.cli \-\->//"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/publish_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ jobs:
SLUG=${{ github.repository }}
git push "https://$GITHUB_ACTOR:[email protected]/$SLUG.git" --follow-tags
# Remove development dependencies from package.json:
- name: 'Remove development dependencies from package.json'
run: |
jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
mv ./package.json.tmp ./package.json
# Replace GitHub MathJax equations with SVGs:
- name: 'Replace GitHub MathJax equations with SVGs'
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_bundles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ jobs:

# Install Deno:
- name: 'Install Deno'
# Pin action to full length commit SHA corresponding to v1.1.2
uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31
# Pin action to full length commit SHA
uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4
with:
deno-version: vx.x.x

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/repl-signature.svg
[npm-url]: https://npmjs.org/package/@stdlib/repl-signature

[test-image]: https://github.com/stdlib-js/repl-signature/actions/workflows/test.yml/badge.svg?branch=v0.2.0
[test-url]: https://github.com/stdlib-js/repl-signature/actions/workflows/test.yml?query=branch:v0.2.0
[test-image]: https://github.com/stdlib-js/repl-signature/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/repl-signature/actions/workflows/test.yml?query=branch:main

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/repl-signature/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/repl-signature?branch=main
Expand Down
11 changes: 11 additions & 0 deletions data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ array,"array( [buffer,] [options] )"
array2buffer,"array2buffer( arr )"
array2fancy,"array2fancy( x[, options] )"
array2fancy.factory,"array2fancy.factory( [options] )"
array2fancy.idx,"array2fancy.idx( x[, options] )"
array2iterator,"array2iterator( src[, mapFcn[, thisArg]] )"
array2iteratorRight,"array2iteratorRight( src[, mapFcn[, thisArg]] )"
ArrayBuffer,"ArrayBuffer( size )"
Expand All @@ -50,6 +51,16 @@ arraybuffer2buffer,"arraybuffer2buffer( buf[, byteOffset[, length]] )"
arrayCtors,"arrayCtors( dtype )"
arrayDataType,"arrayDataType( array )"
arrayDataTypes,"arrayDataTypes( [kind] )"
ArrayIndex,"ArrayIndex( x[, options] )"
ArrayIndex.free,"ArrayIndex.free( id )"
ArrayIndex.get,"ArrayIndex.get( id )"
ArrayIndex.prototype.data,"ArrayIndex.prototype.data"
ArrayIndex.prototype.dtype,"ArrayIndex.prototype.dtype"
ArrayIndex.prototype.id,"ArrayIndex.prototype.id"
ArrayIndex.prototype.isCached,"ArrayIndex.prototype.isCached"
ArrayIndex.prototype.type,"ArrayIndex.prototype.type"
ArrayIndex.prototype.toString,"ArrayIndex.prototype.toString()"
ArrayIndex.prototype.toJSON,"ArrayIndex.prototype.toJSON()"
arrayMinDataType,"arrayMinDataType( value )"
arrayMostlySafeCasts,"arrayMostlySafeCasts( [dtype] )"
arrayNextDataType,"arrayNextDataType( [dtype] )"
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.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,24 @@
},
"dependencies": {
"@stdlib/assert-is-string": "^0.2.0",
"@stdlib/cli-ctor": "^0.1.1",
"@stdlib/cli-ctor": "^0.2.0",
"@stdlib/fs-read-file": "^0.2.0",
"@stdlib/string-format": "^0.2.0"
},
"devDependencies": {
"@stdlib/assert-is-browser": "^0.1.1",
"@stdlib/assert-is-string-array": "^0.1.1",
"@stdlib/assert-is-windows": "^0.1.1",
"@stdlib/fs-write-file": "^0.1.1",
"@stdlib/namespace-aliases": "^0.1.0",
"@stdlib/process-exec-path": "^0.1.1",
"@stdlib/random-base-discrete-uniform": "^0.1.0",
"@stdlib/repl-help": "^0.1.1",
"@stdlib/string-replace": "^0.1.1",
"@stdlib/assert-is-browser": "^0.2.0",
"@stdlib/assert-is-string-array": "^0.2.0",
"@stdlib/assert-is-windows": "^0.2.0",
"@stdlib/fs-write-file": "^0.2.0",
"@stdlib/namespace-aliases": "^0.2.0",
"@stdlib/process-exec-path": "^0.2.0",
"@stdlib/random-base-discrete-uniform": "^0.2.0",
"@stdlib/repl-help": "^0.2.0",
"@stdlib/string-replace": "^0.2.0",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
"@stdlib/bench-harness": "^0.1.2"
"@stdlib/bench-harness": "^0.2.0"
},
"engines": {
"node": ">=0.10.0",
Expand Down

0 comments on commit ab2f8e2

Please sign in to comment.