Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4411bede02 |
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
|
||||||
@@ -1,3 +1,9 @@
|
|||||||
{
|
{
|
||||||
"scopes": ["commands", "changelog", "readme", "release", "config"]
|
"scopes": [
|
||||||
|
"commands",
|
||||||
|
"changelog",
|
||||||
|
"readme",
|
||||||
|
"release",
|
||||||
|
"config"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"cSpell.words": ["Resultium", "Acked", "johndoe", "outro", "rczrc"]
|
|
||||||
}
|
|
||||||
16
CHANGELOG.md
16
CHANGELOG.md
@@ -2,22 +2,6 @@
|
|||||||
|
|
||||||
Generation of this changelog is based on commits
|
Generation of this changelog is based on commits
|
||||||
|
|
||||||
## v1.6.0
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
- [a5626dbc5] - improve default 'stage all changes' behavior
|
|
||||||
|
|
||||||
### Miscellaneous
|
|
||||||
|
|
||||||
- [4c892e8b1] - **changelog**: generate for v1.5.2
|
|
||||||
|
|
||||||
## v1.5.2
|
|
||||||
|
|
||||||
### Fixes
|
|
||||||
|
|
||||||
- [8cb67f2cf] - **commands**: incorrect regex generation with specified scopes
|
|
||||||
|
|
||||||
## v1.5.1
|
## v1.5.1
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|||||||
14
cspell.json
Normal file
14
cspell.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2",
|
||||||
|
"ignorePaths": [],
|
||||||
|
"dictionaryDefinitions": [],
|
||||||
|
"dictionaries": [],
|
||||||
|
"words": [
|
||||||
|
"Acked",
|
||||||
|
"johndoe",
|
||||||
|
"outro",
|
||||||
|
"rczrc"
|
||||||
|
],
|
||||||
|
"ignoreWords": [],
|
||||||
|
"import": []
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@resultium/rcz",
|
"name": "@resultium/rcz",
|
||||||
"version": "1.6.0",
|
"version": "1.5.1",
|
||||||
"description": "Resultium commit standardization library, based on conventional commits",
|
"description": "Resultium commit standardization library, based on conventional commits",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
10
src/index.ts
10
src/index.ts
@@ -45,7 +45,7 @@ const program = new Command();
|
|||||||
program
|
program
|
||||||
.name("rcz")
|
.name("rcz")
|
||||||
.description("Resultium commit standardization command-line interface")
|
.description("Resultium commit standardization command-line interface")
|
||||||
.version("1.6.0");
|
.version("1.4.0");
|
||||||
|
|
||||||
program
|
program
|
||||||
.command("commit")
|
.command("commit")
|
||||||
@@ -69,11 +69,7 @@ program
|
|||||||
? null
|
? null
|
||||||
: await confirm({
|
: await confirm({
|
||||||
message: "Stage all changes?",
|
message: "Stage all changes?",
|
||||||
initialValue: (
|
initialValue: true,
|
||||||
await simpleGit().diff(["--name-only", "--cached"])
|
|
||||||
).toString()
|
|
||||||
? false
|
|
||||||
: true,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isCancel(stageAll)) {
|
if (isCancel(stageAll)) {
|
||||||
@@ -471,7 +467,7 @@ program
|
|||||||
config?.types?.map((type) => type.value).join("|") ||
|
config?.types?.map((type) => type.value).join("|") ||
|
||||||
"feat|fix|build|ci|docs|perf|refactor|chore"
|
"feat|fix|build|ci|docs|perf|refactor|chore"
|
||||||
})(\\((${
|
})(\\((${
|
||||||
config?.scopes ? [...config?.scopes, "release"].join("|") : "..*"
|
config?.scopes ? [...config?.scopes, "release"] : "..*"
|
||||||
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
|
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
|
||||||
"gm"
|
"gm"
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user