File tree Expand file tree Collapse file tree 5 files changed +12
-18
lines changed <
10000
li class="PRIVATE_TreeView-item DiffFileTree-module__file-tree-row--yr73E prc-TreeView-TreeViewItem-ShJr0" tabindex="0" id=".github/workflows/test_bundles.yml" role="treeitem" aria-label="test_bundles.yml" aria-describedby=":R6rdddabH1:" aria-level="2" aria-selected="false">Expand file tree Collapse file tree 5 files changed +12
-18
lines changed Original file line number Diff line number Diff line change 86
86
87
87
# Upload the download data:
88
88
- name : ' Upload data'
89
- # Pin action to full length commit SHA corresponding to v3.1.3
90
- uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
89
+ # Pin action to full length commit SHA
90
+ uses : actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
91
91
with :
92
92
# Define a name for the uploaded artifact (ensuring a unique name for each job):
93
93
name : npm_downloads
Original file line number Diff line number Diff line change @@ -124,16 +124,10 @@ jobs:
124
124
mv ./package.json.tmp ./package.json
125
125
fi
126
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
- fi
136
- done
127
+
128
+ # Set `devDependencies` to an empty object:
129
+ jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
130
+ mv ./package.json.tmp ./package.json
137
131
138
132
# Remove CLI section:
139
133
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?<section class=\"cli\">[\s\S]+?<\!\-\- \/.cli \-\->//"
Original file line number Diff line number Diff line change @@ -168,8 +168,8 @@ jobs:
168
168
169
169
# Install Deno:
170
170
- name : ' Install Deno'
171
- # Pin action to full length commit SHA corresponding to v1.1.2
172
- uses : denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31
171
+ # Pin action to full length commit SHA
172
+ uses : denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4
173
173
with :
174
174
deno-version : vx.x.x
175
175
Original file line number Diff line number Diff line change @@ -204,8 +204,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
204
204
[npm-image]: http:// img.shields.io/npm/v/@stdlib/string-base-ends-with.svg
205
205
[npm-url]: https:// npmjs.org/package/@stdlib/string-base-ends-with
206
206
207
- [test-image]: https:// github.com/stdlib-js/string-base-ends-with/actions/workflows/test.yml/badge.svg?branch=v0.2.0
208
- [test-url]: https:// github.com/stdlib-js/string-base-ends-with/actions/workflows/test.yml?query=branch:v0.2.0
207
+ [test-image]: https:// github.com/stdlib-js/string-base-ends-with/actions/workflows/test.yml/badge.svg?branch=main
208
+ [test-url]: https:// github.com/stdlib-js/string-base-ends-with/actions/workflows/test.yml?query=branch:main
209
209
210
210
[coverage-image]: https:// img.shields.io/codecov/c/github/stdlib-js/string-base-ends-with/main.svg
211
211
[coverage-url]: https:// codecov.io/github/stdlib-js/string-base-ends-with?branch=main
Original file line number Diff line number Diff line change 38
38
},
39
39
"dependencies" : {},
40
40
"devDependencies" : {
41
- "@stdlib/assert-is-boolean" : " ^0.1.1 " ,
41
+ "@stdlib/assert-is-boolean" : " ^0.2.0 " ,
42
42
"proxyquire" : " ^2.0.0" ,
43
43
"tape" : " git+https://github.com/kgryte/tape.git#fix/globby" ,
44
44
"istanbul" : " ^0.4.1" ,
45
45
"tap-min" : " git+https://github.com/Planeshifter/tap-min.git" ,
46
- "@stdlib/bench-harness" : " ^0.1.2 "
46
+ "@stdlib/bench-harness" : " ^0.2.0 "
47
47
},
48
48
"engines" : {
49
49
"node" : " >=0.10.0" ,
You can’t perform that action at this time.
0 commit comments