8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 911df1c commit 1fcbb5eCopy full SHA for 1fcbb5e
.github/workflows/npm_downloads.yml
@@ -86,8 +86,8 @@ jobs:
86
87
# Upload the download data:
88
- name: 'Upload data'
89
- # Pin action to full length commit SHA corresponding to v3.1.3
90
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
+ # Pin action to full length commit SHA
+ uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
91
with:
92
# Define a name for the uploaded artifact (ensuring a unique name for each job):
93
name: npm_downloads
.github/workflows/publish.yml
@@ -124,16 +124,10 @@ jobs:
124
mv ./package.json.tmp ./package.json
125
fi
126
done
127
- jq -r '.devDependencies | keys[]' ./package.json | while read -r dep; do
128
- if [[ "$dep" != "@stdlib"* ]]; then
129
- continue
130
- fi
131
- dep=$(echo "$dep" | xargs)
132
- if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
133
- jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp
134
- mv ./package.json.tmp ./package.json
135
136
- done
+
+ # Set `devDependencies` to an empty object:
+ jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
+ mv ./package.json.tmp ./package.json
137
138
# Remove CLI section:
139
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?<section class=\"cli\">[\s\S]+?<\!\-\- \/.cli \-\->//"
.github/workflows/test_bundles.yml
@@ -168,8 +168,8 @@ jobs:
168
169
# Install Deno:
170
- name: 'Install Deno'
171
- # Pin action to full length commit SHA corresponding to v1.1.2
172
- uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31
+ uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4
173
174
deno-version: vx.x.x
175
README.md
@@ -275,8 +275,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
275
[npm-image]: http://img.shields.io/npm/v/@stdlib/utils-async-compose.svg
276
[npm-url]: https://npmjs.org/package/@stdlib/utils-async-compose
277
278
-[test-image]: https://github.com/stdlib-js/utils-async-compose/actions/workflows/test.yml/badge.svg?branch=v0.2.0
279
-[test-url]: https://github.com/stdlib-js/utils-async-compose/actions/workflows/test.yml?query=branch:v0.2.0
+[test-image]: https://github.com/stdlib-js/utils-async-compose/actions/workflows/test.yml/badge.svg?branch=v0.2.1
+[test-url]: https://github.com/stdlib-js/utils-async-compose/actions/workflows/test.yml?query=branch:v0.2.1
280
281
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-async-compose/main.svg
282
[coverage-url]: https://codecov.io/github/stdlib-js/utils-async-compose?branch=main
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@stdlib/utils-async-compose",
3
- "version": "0.2.0",
+ "version": "0.2.1",
4
"description": "Function composition.",
5
"license": "Apache-2.0",
6
"author": {
@@ -37,17 +37,17 @@
37
"url": "https://github.com/stdlib-js/stdlib/issues"
38
},
39
"dependencies": {
40
- "@stdlib/assert-is-function": "^0.2.0",
41
- "@stdlib/string-format": "^0.2.0"
+ "@stdlib/assert-is-function": "^0.2.1",
+ "@stdlib/string-format": "^0.2.1"
42
43
"devDependencies": {
44
- "@stdlib/math-base-assert-is-nan": "^0.1.1",
45
- "@stdlib/random-base-randu": "^0.1.0",
46
- "@stdlib/utils-noop": "^0.2.0",
+ "@stdlib/math-base-assert-is-nan": "^0.2.0",
+ "@stdlib/random-base-randu": "^0.2.0",
+ "@stdlib/utils-noop": "^0.2.1",
47
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
48
"istanbul": "^0.4.1",
49
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
50
- "@stdlib/bench-harness": "^0.1.2"
+ "@stdlib/bench-harness": "^0.2.0"
51
52
"engines": {
53
"node": ">=0.10.0",