Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4411bede02 | |||
| 58f4dde9c9 | |||
| 9586a567de | |||
| 6c663cf7fc | |||
| 535a62857c | |||
| 03f68e2912 |
20
.gitea/issue_template/bug-template.md
Normal file
20
.gitea/issue_template/bug-template.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: "Bug Report"
|
||||
about: Report a reproducible bug or regression
|
||||
title: "Bug: "
|
||||
---
|
||||
|
||||
## Steps To Reproduce
|
||||
|
||||
<!-- Simple, clear, laconical, reproducible steps how to cause this bug in a development environment -->
|
||||
|
||||
1.
|
||||
2.
|
||||
|
||||
## The current behavior
|
||||
|
||||
<!-- It is recommended to provide an image or a video, if that is not possible a very concise text would suffice -->
|
||||
|
||||
## The expected behavior
|
||||
|
||||
<!-- Describe the expected behavior -->
|
||||
29
.gitea/issue_template/feature-request.md
Normal file
29
.gitea/issue_template/feature-request.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
name: "Feature Request"
|
||||
about: Standard feature request template.
|
||||
title: "Feature: "
|
||||
---
|
||||
|
||||
## Feature summary
|
||||
|
||||
<!-- e.g. -->
|
||||
|
||||
Add legal page to the website
|
||||
|
||||
## The expected behavior
|
||||
|
||||
<!-- e.g. -->
|
||||
|
||||
- Ability to select a language for legal page
|
||||
- Presence of a legal page in sitemap
|
||||
- Ability to add different legal documents in a .md format
|
||||
|
||||
## Helpful resources
|
||||
|
||||
<!-- e.g. -->
|
||||
|
||||
- [Svelte Markdown on NPM](https://www.npmjs.com/package/svelte-markdown)
|
||||
|
||||
## Notes
|
||||
|
||||
First two documents are going to be Privacy Policy and Terms of Service
|
||||
9
.gitea/issue_template/task.md
Normal file
9
.gitea/issue_template/task.md
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
name: "Task"
|
||||
about: "Staff task template "
|
||||
title: "Task: "
|
||||
---
|
||||
|
||||
<!-- Describe the task here, e.g. -->
|
||||
|
||||
Change pricing to medium standard
|
||||
17
CHANGELOG.md
17
CHANGELOG.md
@@ -2,6 +2,23 @@
|
||||
|
||||
Generation of this changelog is based on commits
|
||||
|
||||
## v1.5.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [6c663cf7f] - **commands**: allow chore type in validation regex
|
||||
|
||||
## v1.5.0
|
||||
|
||||
### Features
|
||||
|
||||
- [92f8126ab] - **commands**: add --amend option to commit sub-command
|
||||
- [5080d71fb] - **config**: allow more config file names
|
||||
|
||||
### Fixes
|
||||
|
||||
- [53bb1437a] - **commands**: allow chore type (#7)
|
||||
|
||||
## v1.4.0
|
||||
|
||||
### Features
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@resultium/rcz",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"description": "Resultium commit standardization library, based on conventional commits",
|
||||
"main": "./dist/index.js",
|
||||
"bin": {
|
||||
|
||||
@@ -465,7 +465,7 @@ program
|
||||
const testRegex = new RegExp(
|
||||
`(${
|
||||
config?.types?.map((type) => type.value).join("|") ||
|
||||
"feat|fix|build|ci|docs|perf|refactor"
|
||||
"feat|fix|build|ci|docs|perf|refactor|chore"
|
||||
})(\\((${
|
||||
config?.scopes ? [...config?.scopes, "release"] : "..*"
|
||||
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
|
||||
|
||||
Reference in New Issue
Block a user