autorel 2.5.19 → 2.5.22

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 +9 -9
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
1
  <picture>
2
- <source srcset="docs/autorel-logo-light.svg" media="(prefers-color-scheme: light)">
3
- <source srcset="docs/autorel-logo-dark.svg" media="(prefers-color-scheme: dark)">
4
- <img src="docs/autorel-logo-light.svg" alt="Logo">
5
- </picture>
2
+ <source srcset="docs/autorel-logo-light-smol.svg" media="(prefers-color-scheme: light)">
3
+ <source srcset="docs/autorel-logo-dark-smol.svg" media="(prefers-color-scheme: dark)">
4
+ <img src="docs/autorel-logo-light-smol.svg" alt="Logo">
5
+ </picture>
6
6
 
7
7
  [![build status](https://github.com/mhweiner/autorel/actions/workflows/release.yml/badge.svg)](https://github.com/mhweiner/autorel/actions)
8
8
  [![SemVer](https://img.shields.io/badge/SemVer-2.0.0-blue)]()
9
9
  [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
10
- [![AutoRel](https://img.shields.io/badge/AutoRel-1bd499)](https://github.com/mhweiner/autorel)
10
+ [![AutoRel](https://img.shields.io/badge/%F0%9F%9A%80%20AutoRel-2D4DDE)](https://github.com/mhweiner/autorel)
11
11
 
12
- **Autorel** is a fast, simple, and reliable tool for automating releases based on commit messages.
12
+ 🚀 **AutoRel** is a fast, simple, and reliable tool for automating releases based on commit messages.
13
13
 
14
14
  It follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Versioning](https://semver.org/) to do things like:
15
15
 
@@ -19,11 +19,11 @@ It follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/
19
19
  - Publish to npm registry (or other package managers)
20
20
  - Run custom scripts or commands with the new version number available as an environment variable
21
21
 
22
- 🚀 Like `semantic-release` or `release-please`, but faster, more reliable, and easier to use.
22
+ Like `semantic-release` or `release-please`, but faster, more reliable, and easier to use.
23
23
 
24
24
  Supports GitHub Actions and npm (Node.js) natively. You can add custom scripts for other languages and systems (or contribute built-in support).
25
25
 
26
- Use Autorel to save time, prevent broken releases, and ship with confidence.
26
+ Use AutoRel to save time, prevent broken releases, and ship with confidence.
27
27
 
28
28
  **✅ Conventional Commit & SemVer Compliant**
29
29
  - 100% compliant with Conventional Commits and SemVer out of the box, including "!" for breaking changes
@@ -40,7 +40,7 @@ Use Autorel to save time, prevent broken releases, and ship with confidence.
40
40
  - No need to install or configure a separate CI/CD system
41
41
  - Less broken builds and more time to focus on your code!
42
42
 
43
- [Read our FAQ on why you should use `autorel` and how it compares to other tools](docs/faq.md)
43
+ [Read our FAQ on why you should use AutoRel and how it compares to other tools](docs/faq.md)
44
44
 
45
45
  ## Table of Contents
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autorel",
3
- "version": "2.5.19",
3
+ "version": "2.5.22",
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)",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "scripts": {
24
24
  "prepare": "npm run build",
25
- "test": "npm run build && c8 hoare 'src/**/*.spec.ts' && c8 report -r text -r html",
25
+ "test": "npm run build && c8 kizu 'src/**/*.spec.ts' && c8 report -r text -r html",
26
26
  "lint": "eslint ./ --ext .js,.ts",
27
27
  "build": "rm -rf ./dist && tsc"
28
28
  },
@@ -51,7 +51,7 @@
51
51
  "c8": "^7.10.0",
52
52
  "cjs-mock": "3.0.1",
53
53
  "eslint": "^8.4.1",
54
- "hoare": "3.4.4",
54
+ "kizu": "3.6.7",
55
55
  "ts-node": "^10.4.0",
56
56
  "typescript": "^4.5.4"
57
57
  },