autorel 2.5.21 → 2.5.23
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/README.md +5 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
|
-
<
|
|
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>
|
|
1
|
+
<img src="docs/autorel.svg" alt="AutoRel" title="AutoRel">
|
|
6
2
|
|
|
7
3
|
[](https://github.com/mhweiner/autorel/actions)
|
|
8
4
|
[]()
|
|
9
5
|
[](https://conventionalcommits.org)
|
|
10
|
-
[](https://github.com/mhweiner/autorel)
|
|
11
7
|
|
|
12
|
-
|
|
8
|
+
AutoRel is a fast, simple, and reliable tool for automating releases based on commit messages.
|
|
13
9
|
|
|
14
10
|
It follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Versioning](https://semver.org/) to do things like:
|
|
15
11
|
|
|
@@ -23,7 +19,7 @@ Like `semantic-release` or `release-please`, but faster, more reliable, and easi
|
|
|
23
19
|
|
|
24
20
|
Supports GitHub Actions and npm (Node.js) natively. You can add custom scripts for other languages and systems (or contribute built-in support).
|
|
25
21
|
|
|
26
|
-
Use
|
|
22
|
+
Use AutoRel to save time, prevent broken releases, and ship with confidence.
|
|
27
23
|
|
|
28
24
|
**✅ Conventional Commit & SemVer Compliant**
|
|
29
25
|
- 100% compliant with Conventional Commits and SemVer out of the box, including "!" for breaking changes
|
|
@@ -40,7 +36,7 @@ Use Autorel to save time, prevent broken releases, and ship with confidence.
|
|
|
40
36
|
- No need to install or configure a separate CI/CD system
|
|
41
37
|
- Less broken builds and more time to focus on your code!
|
|
42
38
|
|
|
43
|
-
[Read our FAQ on why you should use
|
|
39
|
+
[Read our FAQ on why you should use AutoRel and how it compares to other tools](docs/faq.md)
|
|
44
40
|
|
|
45
41
|
## Table of Contents
|
|
46
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autorel",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.23",
|
|
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
|
|
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
|
-
"
|
|
54
|
+
"kizu": "3.6.7",
|
|
55
55
|
"ts-node": "^10.4.0",
|
|
56
56
|
"typescript": "^4.5.4"
|
|
57
57
|
},
|