@stdlib/error-tools-pkg2id-cli 0.0.2 → 0.0.3

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.
@@ -103,6 +103,11 @@ 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 LICENSE comments with abbreviated ones:
107
+ - name: 'Replace LICENSE comments with abbreviated ones'
108
+ run: |
109
+ find . -name "bin/cli" -type f -exec perl -i -p0e 's|/\*\*\n\*\s\@license\sApache-2.0\n\*\n\*\sCopyright\s\(c\)\s\d{4}\sThe\sStdlib\sAuthors\.\n(.*?)\n\*\slimitations\sunder\sthe\sLicense\.\n\*/|// Copyright (c) 2023 The Stdlib Authors. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0|s' {} \;
110
+
106
111
  # Replace GitHub MathJax equations with SVGs:
107
112
  - name: 'Replace GitHub MathJax equations with SVGs'
108
113
  run: |
package/README.md CHANGED
@@ -173,8 +173,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
173
173
  [npm-image]: http://img.shields.io/npm/v/@stdlib/error-tools-pkg2id-cli.svg
174
174
  [npm-url]: https://npmjs.org/package/@stdlib/error-tools-pkg2id-cli
175
175
 
176
- [test-image]: https://github.com/stdlib-js/error-tools-pkg2id/actions/workflows/test.yml/badge.svg?branch=v0.0.2
177
- [test-url]: https://github.com/stdlib-js/error-tools-pkg2id/actions/workflows/test.yml?query=branch:v0.0.2
176
+ [test-image]: https://github.com/stdlib-js/error-tools-pkg2id/actions/workflows/test.yml/badge.svg?branch=v0.0.3
177
+ [test-url]: https://github.com/stdlib-js/error-tools-pkg2id/actions/workflows/test.yml?query=branch:v0.0.3
178
178
 
179
179
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/error-tools-pkg2id/main.svg
180
180
  [coverage-url]: https://codecov.io/github/stdlib-js/error-tools-pkg2id?branch=main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/error-tools-pkg2id-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Return the error identifier prefix associated with a specified package name.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@stdlib/cli-ctor": "^0.0.3",
29
29
  "@stdlib/fs-read-file": "^0.0.8",
30
- "@stdlib/error-tools-pkg2id": "0.0.2"
30
+ "@stdlib/error-tools-pkg2id": "0.0.3"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@stdlib/assert-is-browser": "^0.0.8",