Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 19, 2023
1 parent abdae71 commit 8616fa5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

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
2 changes: 1 addition & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav Goswami <[email protected]>
Ricky Reusser <[email protected]>
Robert Gislason <[email protected]>
Roman Stetsyk <[email protected]>
Ryan Seal <[email protected]>
Seyyed Parsa Neshaei <[email protected]>
Expand All @@ -37,4 +38,3 @@ Stephannie Jiménez Gacha <[email protected]>
Yernar Yergaziyev <[email protected]>
orimiles5 <[email protected]>
rei2hu <[email protected]>
Robert Gislason <[email protected]>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/utils-type-of.svg
[npm-url]: https://npmjs.org/package/@stdlib/utils-type-of

[test-image]: https://github.com/stdlib-js/utils-type-of/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/utils-type-of/actions/workflows/test.yml?query=branch:main
[test-image]: https://github.com/stdlib-js/utils-type-of/actions/workflows/test.yml/badge.svg?branch=v0.1.2
[test-url]: https://github.com/stdlib-js/utils-type-of/actions/workflows/test.yml?query=branch:v0.1.2

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-type-of/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/utils-type-of?branch=main
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/utils-type-of",
"version": "0.1.1",
"version": "0.1.2",
"description": "Determine a value's type.",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -57,7 +57,7 @@
"@stdlib/assert-has-weakmap-support": "^0.1.1",
"@stdlib/assert-has-weakset-support": "^0.1.1",
"@stdlib/assert-is-string": "^0.1.1",
"@stdlib/bench": "^0.1.0",
"@stdlib/bench": "^0.2.1",
"@stdlib/boolean-ctor": "^0.1.1",
"@stdlib/buffer-from-string": "^0.1.1",
"@stdlib/number-ctor": "^0.1.1",
Expand Down

0 comments on commit 8616fa5

Please sign in to comment.