cleard 1.0.0__tar.gz
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.
- cleard-1.0.0/.releaserc.json +52 -0
- cleard-1.0.0/Cargo.lock +2083 -0
- cleard-1.0.0/Cargo.toml +57 -0
- cleard-1.0.0/PKG-INFO +216 -0
- cleard-1.0.0/README.md +193 -0
- cleard-1.0.0/pyproject.toml +37 -0
- cleard-1.0.0/rust-toolchain.toml +3 -0
- cleard-1.0.0/src/cli.rs +82 -0
- cleard-1.0.0/src/config.rs +72 -0
- cleard-1.0.0/src/delete.rs +80 -0
- cleard-1.0.0/src/main.rs +113 -0
- cleard-1.0.0/src/model.rs +232 -0
- cleard-1.0.0/src/rules.rs +186 -0
- cleard-1.0.0/src/scanner.rs +227 -0
- cleard-1.0.0/src/tui/events.rs +81 -0
- cleard-1.0.0/src/tui/mod.rs +241 -0
- cleard-1.0.0/src/tui/ui.rs +293 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"branches": [
|
|
3
|
+
"main"
|
|
4
|
+
],
|
|
5
|
+
"plugins": [
|
|
6
|
+
"@semantic-release/commit-analyzer",
|
|
7
|
+
"@semantic-release/release-notes-generator",
|
|
8
|
+
"@semantic-release/changelog",
|
|
9
|
+
[
|
|
10
|
+
"@semantic-release/exec",
|
|
11
|
+
{
|
|
12
|
+
"prepareCmd": "perl -i -pe \"s/(\\\\\\\"cleard-[^\\\\\\\"]+\\\\\\\": *)?\\\\\\\"?\\\\*\\\\\\\"?/\\1\\\\\\\"${nextRelease.version}\\\\\\\"/g\" packages/npm/cleard/package.json"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
"@semantic-release/npm",
|
|
17
|
+
{
|
|
18
|
+
"pkgRoot": "packages/npm/cleard"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
"@semantic-release/github",
|
|
23
|
+
{
|
|
24
|
+
"assets": [
|
|
25
|
+
{ "path": "cleard-linux-x86_64.tar.gz", "label": "Linux x86_64 binary" },
|
|
26
|
+
{ "path": "cleard-linux-arm64.tar.gz", "label": "Linux ARM64 binary" },
|
|
27
|
+
{ "path": "cleard-darwin-x86_64.tar.gz", "label": "macOS x86_64 binary" },
|
|
28
|
+
{ "path": "cleard-darwin-arm64.tar.gz", "label": "macOS ARM64 binary" },
|
|
29
|
+
{ "path": "cleard-windows-x86_64.zip", "label": "Windows x86_64 binary" },
|
|
30
|
+
{ "path": "cleard-windows-arm64.zip", "label": "Windows ARM64 binary" }
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
[
|
|
35
|
+
"@semantic-release/exec",
|
|
36
|
+
{
|
|
37
|
+
"prepareCmd": "sed -i.bak -E 's/^version = \"[^\"]+\"$/version = \"${nextRelease.version}\"/' Cargo.toml"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
[
|
|
41
|
+
"@semantic-release/git",
|
|
42
|
+
{
|
|
43
|
+
"assets": [
|
|
44
|
+
"CHANGELOG.md",
|
|
45
|
+
"Cargo.toml",
|
|
46
|
+
"packages/npm/cleard/package.json"
|
|
47
|
+
],
|
|
48
|
+
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
]
|
|
52
|
+
}
|