@stdlib/string-acronym-cli 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish_cli.yml +8 -2
- package/CONTRIBUTORS +14 -6
- package/README.md +14 -3
- package/package.json +14 -14
|
@@ -103,6 +103,12 @@ jobs:
|
|
|
103
103
|
SLUG=${{ github.repository }}
|
|
104
104
|
git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" --follow-tags
|
|
105
105
|
|
|
106
|
+
# Replace GitHub MathJax equations with SVGs:
|
|
107
|
+
- name: 'Replace GitHub MathJax equations with SVGs'
|
|
108
|
+
run: |
|
|
109
|
+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/```math\n([\s\S]+?)\n```\n\n//g'
|
|
110
|
+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
|
|
111
|
+
|
|
106
112
|
# Replace GitHub links to individual packages with npm links:
|
|
107
113
|
- name: 'Replace all GitHub links to individual packages with npm links'
|
|
108
114
|
run: |
|
|
@@ -114,7 +120,7 @@ jobs:
|
|
|
114
120
|
|
|
115
121
|
# Publish package to npm:
|
|
116
122
|
- name: 'Publish package to npm'
|
|
117
|
-
uses: JS-DevTools/npm-publish@
|
|
123
|
+
uses: JS-DevTools/npm-publish@v2
|
|
118
124
|
with:
|
|
119
125
|
token: ${{ secrets.NPM_TOKEN }}
|
|
120
126
|
access: public
|
|
@@ -126,7 +132,7 @@ jobs:
|
|
|
126
132
|
|
|
127
133
|
# Send status to Slack channel if job fails:
|
|
128
134
|
- name: 'Send status to Slack channel in case of failure'
|
|
129
|
-
uses: act10ns/slack@
|
|
135
|
+
uses: act10ns/slack@v2
|
|
130
136
|
with:
|
|
131
137
|
status: ${{ job.status }}
|
|
132
138
|
steps: ${{ toJson(steps) }}
|
package/CONTRIBUTORS
CHANGED
|
@@ -3,29 +3,37 @@
|
|
|
3
3
|
# Contributors listed in alphabetical order.
|
|
4
4
|
|
|
5
5
|
Ali Salesi <ali_sal1381@yahoo.com>
|
|
6
|
+
Amit Jimiwal <amitjimiwal45@gmail.com>
|
|
6
7
|
Athan Reines <kgryte@gmail.com>
|
|
7
8
|
Brendan Graetz <bguiz@users.noreply.github.com>
|
|
8
9
|
Bruno Fenzl <brunofenzl@gmail.com>
|
|
9
10
|
Christopher Dambamuromo <chridam@gmail.com>
|
|
11
|
+
Dan Rose <danoftheroses@gmail.com>
|
|
10
12
|
Dominik Moritz <domoritz@gmail.com>
|
|
13
|
+
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
|
|
11
14
|
Frank Kovacs <fran70kk@gmail.com>
|
|
12
|
-
|
|
15
|
+
Harshita Kalani <harshitakalani02@gmail.com>
|
|
16
|
+
James Gelok <jdgelok@gmail.com>
|
|
13
17
|
Jithin KS <jithinks112@gmail.com>
|
|
14
18
|
Joey Reed <joeyrreed@gmail.com>
|
|
15
|
-
Jordan
|
|
19
|
+
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
|
|
16
20
|
Joris Labie <joris.labie1@gmail.com>
|
|
17
21
|
Justin Dennison <justin1dennison@gmail.com>
|
|
18
|
-
Marcus <mfantham@users.noreply.github.com>
|
|
22
|
+
Marcus Fantham <mfantham@users.noreply.github.com>
|
|
19
23
|
Matt Cochrane <matthew.cochrane.eng@gmail.com>
|
|
20
24
|
Milan Raj <rajsite@users.noreply.github.com>
|
|
21
25
|
Momtchil Momtchev <momtchil@momtchev.com>
|
|
26
|
+
Naresh Jagadeesan <naresh.naresh000@gmail.com>
|
|
27
|
+
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
|
|
22
28
|
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
|
|
23
29
|
Philipp Burckhardt <pburckhardt@outlook.com>
|
|
24
|
-
Pranav <
|
|
30
|
+
Pranav Goswami <goswami.4@iitj.ac.in>
|
|
25
31
|
Ricky Reusser <rsreusser@gmail.com>
|
|
32
|
+
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
|
|
26
33
|
Ryan Seal <splrk@users.noreply.github.com>
|
|
27
34
|
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
|
|
28
35
|
Shraddheya Shendre <shendreshraddheya@gmail.com>
|
|
29
36
|
Stephannie Jiménez Gacha <steff456@hotmail.com>
|
|
30
|
-
|
|
31
|
-
|
|
37
|
+
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
|
|
38
|
+
orimiles5 <97595296+orimiles5@users.noreply.github.com>
|
|
39
|
+
rei2hu <reimu@reimu.ws>
|
package/README.md
CHANGED
|
@@ -18,6 +18,17 @@ limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
-->
|
|
20
20
|
|
|
21
|
+
|
|
22
|
+
<details>
|
|
23
|
+
<summary>
|
|
24
|
+
About stdlib...
|
|
25
|
+
</summary>
|
|
26
|
+
<p>We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.</p>
|
|
27
|
+
<p>The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.</p>
|
|
28
|
+
<p>When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.</p>
|
|
29
|
+
<p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
|
|
30
|
+
</details>
|
|
31
|
+
|
|
21
32
|
# acronym
|
|
22
33
|
|
|
23
34
|
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
@@ -203,8 +214,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
203
214
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-acronym-cli.svg
|
|
204
215
|
[npm-url]: https://npmjs.org/package/@stdlib/string-acronym-cli
|
|
205
216
|
|
|
206
|
-
[test-image]: https://github.com/stdlib-js/string-acronym/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
207
|
-
[test-url]: https://github.com/stdlib-js/string-acronym/actions/workflows/test.yml?query=branch:v0.
|
|
217
|
+
[test-image]: https://github.com/stdlib-js/string-acronym/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
218
|
+
[test-url]: https://github.com/stdlib-js/string-acronym/actions/workflows/test.yml?query=branch:v0.2.0
|
|
208
219
|
|
|
209
220
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-acronym/main.svg
|
|
210
221
|
[coverage-url]: https://codecov.io/github/stdlib-js/string-acronym?branch=main
|
|
@@ -217,7 +228,7 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
217
228
|
-->
|
|
218
229
|
|
|
219
230
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
220
|
-
[chat-url]: https://gitter.im
|
|
231
|
+
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
|
|
221
232
|
|
|
222
233
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
223
234
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/string-acronym-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Generate an acronym for a given string.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@stdlib/assert-is-regexp-string": "^0.0
|
|
29
|
-
"@stdlib/cli-ctor": "^0.0
|
|
30
|
-
"@stdlib/fs-read-file": "^0.0
|
|
31
|
-
"@stdlib/process-read-stdin": "^0.0
|
|
32
|
-
"@stdlib/regexp-eol": "^0.0
|
|
33
|
-
"@stdlib/streams-node-stdin": "^0.0
|
|
34
|
-
"@stdlib/string-trim": "^0.0
|
|
35
|
-
"@stdlib/utils-regexp-from-string": "^0.0
|
|
36
|
-
"@stdlib/string-acronym": "0.
|
|
28
|
+
"@stdlib/assert-is-regexp-string": "^0.1.0",
|
|
29
|
+
"@stdlib/cli-ctor": "^0.1.0",
|
|
30
|
+
"@stdlib/fs-read-file": "^0.1.0",
|
|
31
|
+
"@stdlib/process-read-stdin": "^0.1.0",
|
|
32
|
+
"@stdlib/regexp-eol": "^0.1.0",
|
|
33
|
+
"@stdlib/streams-node-stdin": "^0.1.0",
|
|
34
|
+
"@stdlib/string-trim": "^0.1.0",
|
|
35
|
+
"@stdlib/utils-regexp-from-string": "^0.1.0",
|
|
36
|
+
"@stdlib/string-acronym": "0.2.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@stdlib/assert-is-browser": "^0.0
|
|
40
|
-
"@stdlib/assert-is-windows": "^0.0
|
|
41
|
-
"@stdlib/process-exec-path": "^0.0
|
|
42
|
-
"@stdlib/string-replace": "^0.0
|
|
39
|
+
"@stdlib/assert-is-browser": "^0.1.0",
|
|
40
|
+
"@stdlib/assert-is-windows": "^0.1.0",
|
|
41
|
+
"@stdlib/process-exec-path": "^0.1.0",
|
|
42
|
+
"@stdlib/string-replace": "^0.1.0",
|
|
43
43
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
44
44
|
"proxyquire": "^2.0.0",
|
|
45
45
|
"istanbul": "^0.4.1",
|