@stdlib/error-tools-id2pkg-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
@@ -175,8 +175,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
175
175
  [npm-image]: http://img.shields.io/npm/v/@stdlib/error-tools-id2pkg-cli.svg
176
176
  [npm-url]: https://npmjs.org/package/@stdlib/error-tools-id2pkg-cli
177
177
 
178
- [test-image]: https://github.com/stdlib-js/error-tools-id2pkg/actions/workflows/test.yml/badge.svg?branch=v0.0.2
179
- [test-url]: https://github.com/stdlib-js/error-tools-id2pkg/actions/workflows/test.yml?query=branch:v0.0.2
178
+ [test-image]: https://github.com/stdlib-js/error-tools-id2pkg/actions/workflows/test.yml/badge.svg?branch=v0.0.3
179
+ [test-url]: https://github.com/stdlib-js/error-tools-id2pkg/actions/workflows/test.yml?query=branch:v0.0.3
180
180
 
181
181
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/error-tools-id2pkg/main.svg
182
182
  [coverage-url]: https://codecov.io/github/stdlib-js/error-tools-id2pkg?branch=main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/error-tools-id2pkg-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Return the package name associated with a specified error identifier prefix.",
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-id2pkg": "0.0.2"
30
+ "@stdlib/error-tools-id2pkg": "0.0.3"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@stdlib/assert-is-browser": "^0.0.8",