autorel 2.2.10 → 2.2.11

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.
Files changed (2) hide show
  1. package/README.md +23 -23
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  <picture>
2
- <source srcset="docs/autorel.svg" media="(prefers-color-scheme: dark)">
3
- <source srcset="docs/autorel-dark.svg" media="(prefers-color-scheme: light)">
4
- <img src="docs/autorel-dark.svg" alt="Autorel" size="250">
5
- </picture>
2
+ <source srcset="docs/autorel-white.svg" media="(prefers-color-scheme: dark)">
3
+ <source srcset="docs/autorel-black.svg" media="(prefers-color-scheme: light)">
4
+ <img src="docs/autorel-black.svg" alt="Autorel" size="250">
5
+ </picture>
6
6
 
7
7
  ---
8
8
 
@@ -362,34 +362,34 @@ If using our npm publishing feature, the package.json file's version will be upd
362
362
 
363
363
  If you need access to the new version number in your CI/CD pipeline, you can use the `NEXT_VERSION` or `NEXT_TAG` environment variables.
364
364
 
365
- # Support & Feedback
365
+ # Support, feedback, and contributions
366
366
 
367
367
  - Star this repo if you like it!
368
368
  - Submit an [issue](https://github.com/mhweiner/autorel/issues) with your problem, feature request or bug report
369
- - Write about `autorel` in your blog, tweet about it, or share it with your friends!
370
- - Support this package by adding our badge to your README:
371
-
372
- ```markdown
373
- [![Static Badge](https://img.shields.io/badge/v2-autorel?label=autorel&labelColor=0ab5fc&color=grey&link=https%3A%2F%2Fgithub.com%2Fmhweiner%2Fautorel)](https://github.com/mhweiner/autorel)
374
- ```
375
-
376
- # Contributors & Maintainers Wanted!
377
-
378
- We are looking for contributors and maintainers to help with the project. If you are interested, please open an issue or PR. Together we can help bring automated releases to everyone!
369
+ - Issue a PR against `main` and request review. Make sure all tests pass and coverage is good.
370
+ - Write about this project in your blog, tweet about it, or share it with your friends!
379
371
 
380
372
  # Sponsorship
381
-
382
- Want to sponsor this project? [Reach out to me via email](mailto:mhweiner234@gmail.com?subject=I%20want%20to%20sponsor%20cjs-mock).
383
-
373
+ <br>
384
374
  <picture>
385
- <source srcset="docs/aeroview-logo-lockup-dark.svg" media="(prefers-color-scheme: dark)">
386
- <source srcset="docs/aeroview-logo-lockup.svg" media="(prefers-color-scheme: light)">
387
- <img src="docs/aeroview-logo-lockup.svg" alt="Logo" style="max-width: 150px;margin: 0 0 10px">
375
+ <source srcset="docs/aeroview-white.svg" media="(prefers-color-scheme: dark)">
376
+ <source srcset="docs/aeroview-black.svg" media="(prefers-color-scheme: light)">
377
+ <img src="docs/aeroview-black.svg" alt="Logo" height="20">
388
378
  </picture>
379
+ <br>
389
380
 
390
381
  Aeroview is a lightning-fast, developer-friendly, and AI-powered logging IDE. Get started for free at [https://aeroview.io](https://aeroview.io).
391
382
 
383
+ Want to sponsor this project? [Reach out](mailto:mhweiner234@gmail.com?subject=I%20want%20to%20sponsor%20autorel).
384
+
385
+ # Other useful libraries
386
+
387
+ - [brek](https://github.com/mhweiner/brek): powerful yet simple configuration library for Node.js. It’s structured, typed, and designed for dynamic configuration loading, making it perfect for securely managing secrets (e.g., AWS Secrets Manager).
388
+ - [hoare](https://github.com/mhweiner/hoare): An easy-to-use, fast, and defensive JS/TS test runner designed to help you to write simple, readable, and maintainable tests.
389
+ - [jsout](https://github.com/mhweiner/jsout): A Syslog-compatible, small, and simple logger for Typescript/Javascript projects.
390
+ - [cjs-mock](https://github.com/mhweiner/cjs-mock): NodeJS module mocking for CJS (CommonJS) modules for unit testing purposes.
391
+ - [typura](https://github.com/aeroview/typura): Simple and extensible runtime input validation for TS/JS, written in TS.
392
+
392
393
  # License
393
394
 
394
- MIT &copy; Marc H. Weiner
395
- [See full license](LICENSE)
395
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autorel",
3
- "version": "2.2.10",
3
+ "version": "2.2.11",
4
4
  "description": "Automate semantic releases based on conventional commits. Similar to semantic-release but much simpler.",
5
5
  "license": "MIT",
6
6
  "author": "Marc H. Weiner <mhweiner234@gmail.com> (https://mhweiner.com)",