@spaceflow/review-summary 0.25.0 → 0.26.0
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/CHANGELOG.md +6 -0
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/index.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.25.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review-summary@0.24.0...@spaceflow/review-summary@0.25.0) (2026-03-02)
|
|
4
|
+
|
|
5
|
+
### 新特性
|
|
6
|
+
|
|
7
|
+
* **review-summary:** 实现 review-summary 命令核心功能 ([5964eec](https://github.com/Lydanne/spaceflow/commit/5964eec0e2ee4ac46f74808466429b0edc0cbaa1))
|
|
8
|
+
|
|
3
9
|
## [0.24.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review-summary@0.23.0...@spaceflow/review-summary@0.24.0) (2026-03-02)
|
|
4
10
|
|
|
5
11
|
### 新特性
|
package/dist/index.js
CHANGED
|
@@ -805,15 +805,15 @@ const extension = defineExtension({
|
|
|
805
805
|
description: t("review-summary:description"),
|
|
806
806
|
options: [
|
|
807
807
|
{
|
|
808
|
-
flags: "--preset <preset>",
|
|
808
|
+
flags: "-p, --preset <preset>",
|
|
809
809
|
description: t("review-summary:options.preset")
|
|
810
810
|
},
|
|
811
811
|
{
|
|
812
|
-
flags: "--since <date>",
|
|
812
|
+
flags: "-s, --since <date>",
|
|
813
813
|
description: t("review-summary:options.since")
|
|
814
814
|
},
|
|
815
815
|
{
|
|
816
|
-
flags: "--until <date>",
|
|
816
|
+
flags: "-u, --until <date>",
|
|
817
817
|
description: t("review-summary:options.until")
|
|
818
818
|
},
|
|
819
819
|
{
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -17,15 +17,15 @@ export const extension = defineExtension({
|
|
|
17
17
|
description: t("review-summary:description"),
|
|
18
18
|
options: [
|
|
19
19
|
{
|
|
20
|
-
flags: "--preset <preset>",
|
|
20
|
+
flags: "-p, --preset <preset>",
|
|
21
21
|
description: t("review-summary:options.preset"),
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
flags: "--since <date>",
|
|
24
|
+
flags: "-s, --since <date>",
|
|
25
25
|
description: t("review-summary:options.since"),
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
flags: "--until <date>",
|
|
28
|
+
flags: "-u, --until <date>",
|
|
29
29
|
description: t("review-summary:options.until"),
|
|
30
30
|
},
|
|
31
31
|
{
|