@spaceflow/shell 0.8.0 → 0.10.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 +28 -0
- package/package.json +3 -3
- package/src/shell.service.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/shell@0.8.0...@spaceflow/shell@0.9.0) (2026-02-26)
|
|
4
|
+
|
|
5
|
+
### 修复BUG
|
|
6
|
+
|
|
7
|
+
* **cli:** 自动安装扩展时根据命令行参数动态设置 verbose 级别 ([d2da6f5](https://github.com/Lydanne/spaceflow/commit/d2da6f5eb30425e48bb4fd924c73bb9237a437ab))
|
|
8
|
+
|
|
9
|
+
### 其他修改
|
|
10
|
+
|
|
11
|
+
* **cli:** released version 0.29.0 [no ci] ([5fd87d3](https://github.com/Lydanne/spaceflow/commit/5fd87d31511d13d4937b1b1a247ad8a322d6fc9c))
|
|
12
|
+
* **publish:** released version 0.31.0 [no ci] ([e928d60](https://github.com/Lydanne/spaceflow/commit/e928d6061e05c03fc92303a246b2563a5100740b))
|
|
13
|
+
* **review-summary:** released version 0.9.0 [no ci] ([c1a2322](https://github.com/Lydanne/spaceflow/commit/c1a2322bb7535d15c63251ea515ee21ea7a4e1bf))
|
|
14
|
+
* **review:** released version 0.39.0 [no ci] ([0fbda14](https://github.com/Lydanne/spaceflow/commit/0fbda140982510f49c449eb35605b0dedd27c8cc))
|
|
15
|
+
* **scripts:** released version 0.9.0 [no ci] ([8db4c68](https://github.com/Lydanne/spaceflow/commit/8db4c681b6a00bb9717f05aa809bb4e13bbb7e53))
|
|
16
|
+
|
|
17
|
+
## [0.8.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/shell@0.7.0...@spaceflow/shell@0.8.0) (2026-02-26)
|
|
18
|
+
|
|
19
|
+
### 修复BUG
|
|
20
|
+
|
|
21
|
+
* **cli:** 修复扩展自动安装逻辑,优化 npm 包名解析 ([0271dd4](https://github.com/Lydanne/spaceflow/commit/0271dd48e0169ae5055cfab28e0656e777de10f4))
|
|
22
|
+
|
|
23
|
+
### 其他修改
|
|
24
|
+
|
|
25
|
+
* **cli:** released version 0.28.0 [no ci] ([944de26](https://github.com/Lydanne/spaceflow/commit/944de26607e91123818bad469ee7b7487473de5f))
|
|
26
|
+
* **publish:** released version 0.30.0 [no ci] ([2010489](https://github.com/Lydanne/spaceflow/commit/2010489a0d3cddb9ada1c0fc4e833cdeb0c1e706))
|
|
27
|
+
* **review-summary:** released version 0.8.0 [no ci] ([0e73a97](https://github.com/Lydanne/spaceflow/commit/0e73a97b035692b0fe7f59e36585cffccf6c6854))
|
|
28
|
+
* **review:** released version 0.38.0 [no ci] ([f8c96be](https://github.com/Lydanne/spaceflow/commit/f8c96bed623f24e6c21af389aaaaecf7c057ae5f))
|
|
29
|
+
* **scripts:** released version 0.8.0 [no ci] ([efea246](https://github.com/Lydanne/spaceflow/commit/efea246fe1bbd8815c7af44e8fd40df57a0219d6))
|
|
30
|
+
|
|
3
31
|
## [0.7.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/shell@0.6.0...@spaceflow/shell@0.7.0) (2026-02-26)
|
|
4
32
|
|
|
5
33
|
### 代码重构
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spaceflow/shell",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Spaceflow Shell 插件,用于在分支锁定/解锁之间执行 Shell 命令",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Lydanne",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "^22.15.0",
|
|
19
|
-
"@spaceflow/cli": "0.
|
|
19
|
+
"@spaceflow/cli": "0.30.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@spaceflow/core": "0.
|
|
22
|
+
"@spaceflow/core": "0.9.0"
|
|
23
23
|
},
|
|
24
24
|
"spaceflow": {
|
|
25
25
|
"type": "flow",
|
package/src/shell.service.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GitProviderService, BranchProtection, CiConfig } from "@spaceflow/core";
|
|
1
|
+
import { GitProviderService, type BranchProtection, type CiConfig } from "@spaceflow/core";
|
|
2
2
|
import type { IConfigReader } from "@spaceflow/core";
|
|
3
3
|
import { execSync } from "child_process";
|
|
4
4
|
|