Skip to content

Commit bec0a28

Browse files
committed
Auto-generated commit
1 parent a8a77cf commit bec0a28

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2023-03-01T06:26:25.124Z
1+
2023-06-01T06:23:42.036Z

.github/workflows/publish.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ jobs:
110110
exit 0
111111
fi
112112
rm -rf ./bin/cli
113-
rm test/test.cli.js
114-
rm etc/cli_opts.json
115-
rm docs/usage.txt
113+
rm -f test/test.cli.js
114+
rm -f etc/cli_opts.json
115+
rm -f docs/usage.txt
116116
117117
# For all dependencies, check in all *.js files if they are still used; if not, remove them:
118118
jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do
@@ -149,6 +149,12 @@ jobs:
149149
# Add link definition for CLI package to README.md:
150150
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/<section class=\"links\">/<section class=\"links\">\n\n[$escapedPkg]: https:\/\/www.npmjs.com\/package\/$escapedPkg/"
151151
152+
# Replace GitHub MathJax equations with SVGs:
153+
- name: 'Replace GitHub MathJax equations with SVGs'
154+
run: |
155+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/```math\n([\s\S]+?)\n```\n\n//g'
156+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
157+
152158
# Replace GitHub links to individual packages with npm links:
153159
- name: 'Replace all GitHub links to individual packages with npm links'
154160
run: |
@@ -162,8 +168,8 @@ jobs:
162168
# Remove unnecessary files:
163169
- name: 'Remove unnecessary files'
164170
run: |
165-
rm docs/repl.txt
166-
rm docs/types/test.ts
171+
rm -f docs/repl.txt
172+
rm -f docs/types/test.ts
167173
168174
# Replace all stdlib GitHub dependencies with the respective npm packages:
169175
- name: 'Replace all stdlib GitHub dependencies with the respective npm packages'
@@ -191,7 +197,7 @@ jobs:
191197
192198
# Publish package to npm:
193199
- name: 'Publish package to npm'
194-
uses: JS-DevTools/npm-publish@v1
200+
uses: JS-DevTools/npm-publish@v2
195201
with:
196202
token: ${{ secrets.NPM_TOKEN }}
197203
access: public

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,18 @@ Marcus <[email protected]>
2020
Matt Cochrane <[email protected]>
2121
Milan Raj <[email protected]>
2222
Momtchil Momtchev <[email protected]>
23+
Naresh Jagadeesan <[email protected]>
2324
Ognjen Jevremović <[email protected]>
2425
Philipp Burckhardt <[email protected]>
2526
2627
Ricky Reusser <[email protected]>
28+
Roman Stetsyk <[email protected]>
2729
Ryan Seal <[email protected]>
2830
Seyyed Parsa Neshaei <[email protected]>
2931
Shraddheya Shendre <[email protected]>
3032
Stephannie Jiménez Gacha <[email protected]>
33+
Yernar Yergaziyev <[email protected]>
3134
dorrin-sot <[email protected]>
35+
drunken_devv <[email protected]>
36+
orimiles5 <[email protected]>
3237

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
223223
-->
224224

225225
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
226-
[chat-url]: https://gitter.im/stdlib-js/stdlib/
226+
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
227227

228228
[stdlib]: https://github.com/stdlib-js/stdlib
229229

0 commit comments

Comments
 (0)