autorel 0.0.29 → 0.0.30
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 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,22 +10,22 @@
|
|
|
10
10
|
[](https://conventionalcommits.org)
|
|
11
11
|
[]()
|
|
12
12
|
|
|
13
|
-
Automate releases based on [SemVer](https://semver.org/) and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). Like `semantic-release` and `release-please` but simpler
|
|
13
|
+
Automate releases based on [SemVer](https://semver.org/) and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). Like `semantic-release` and `release-please` but simpler and faster.
|
|
14
14
|
|
|
15
15
|
Autorel automatically does the following, if appropriate:
|
|
16
16
|
|
|
17
17
|
- Bumps the version based on the commit messages
|
|
18
18
|
- Creates a new release on GitHub with Release Notes
|
|
19
19
|
- Publishes the release to NPM
|
|
20
|
-
-
|
|
20
|
+
- Runs any arbitrary command or bash script after the release is complete
|
|
21
21
|
|
|
22
22
|
**✅ Conventional Commit and SemVer Compliant**
|
|
23
|
-
|
|
23
|
+
-`autorel` is 100% compliant with Conventional Commits and SemVer out of the box, including "!" for breaking changes
|
|
24
24
|
|
|
25
25
|
**😃 Simple & Easy to Use**
|
|
26
26
|
- No confusing configuration files or complex setup
|
|
27
27
|
- Works with any CI/CD system, including GitHub Actions
|
|
28
|
-
-
|
|
28
|
+
- Built-in TypeScript and bash script support
|
|
29
29
|
|
|
30
30
|
**💪 Flexible & Powerful**
|
|
31
31
|
- Use via `npx`, or import as a library
|
|
@@ -77,7 +77,7 @@ autorel --publish
|
|
|
77
77
|
|
|
78
78
|
autorel({
|
|
79
79
|
publish: true
|
|
80
|
-
run: 'echo "
|
|
80
|
+
run: 'echo "Next version is ${NEXT_VERSION}"'
|
|
81
81
|
});
|
|
82
82
|
```
|
|
83
83
|
This will do the same as the CLI example above.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autorel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
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)",
|