@spaceflow/scripts 0.13.0 → 0.14.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/scripts@0.12.0...@spaceflow/scripts@0.13.0) (2026-02-27)
4
+
5
+ ### 新特性
6
+
7
+ * **cli:** 为 CLI 添加版本号支持,并在执行扩展时传递版本信息 ([cdcd311](https://github.com/Lydanne/spaceflow/commit/cdcd311ab9c44090b68ab594b67ca42f8e846a8a))
8
+ * **cli:** 支持通过 SPACEFLOW_CWD 环境变量指定工作目录 ([f24fe3c](https://github.com/Lydanne/spaceflow/commit/f24fe3ccfa0d219a2490585b6fd96c2f32019702))
9
+ * **core:** 在构建时注入核心版本号并支持在CLI中显示 ([8061cf8](https://github.com/Lydanne/spaceflow/commit/8061cf8af4ce22bbcdd2cce96472cef22c53a3b1))
10
+ * **publish:** 优化发布流程,在 after:bump 阶段增加构建步骤 ([9e1c859](https://github.com/Lydanne/spaceflow/commit/9e1c85977714cc43640e47c1a50c44d06e2af23c))
11
+
12
+ ### 其他修改
13
+
14
+ * **cli:** released version 0.33.0 [no ci] ([5a227d6](https://github.com/Lydanne/spaceflow/commit/5a227d6d964451096a3f08aaa7529902cd05a11b))
15
+ * **core:** released version 0.11.0 [no ci] ([6ea0b41](https://github.com/Lydanne/spaceflow/commit/6ea0b41fe64b0dad32ec33cad420620bfc02acdb))
16
+ * **publish:** released version 0.35.0 [no ci] ([c5a2c07](https://github.com/Lydanne/spaceflow/commit/c5a2c07a9e4e9274f2e7c650e69b8d3f84fc240f))
17
+ * **review-summary:** released version 0.13.0 [no ci] ([18f5e8a](https://github.com/Lydanne/spaceflow/commit/18f5e8aa62e680f6532f74b3a3c1613cf71d703f))
18
+ * **review:** released version 0.43.0 [no ci] ([559fbc7](https://github.com/Lydanne/spaceflow/commit/559fbc7f6a6f529f3e1999a88543c7e89392bb65))
19
+ * **shell:** released version 0.12.0 [no ci] ([415a373](https://github.com/Lydanne/spaceflow/commit/415a373a32e59e78d2607938dfb7d10d91062e73))
20
+
3
21
  ## [0.12.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/scripts@0.11.0...@spaceflow/scripts@0.12.0) (2026-02-27)
4
22
 
5
23
  ### 代码重构
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaceflow/scripts",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Spaceflow 脚本插件,用于在分支锁定/解锁之间执行 JS 语句",
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.33.0"
19
+ "@spaceflow/cli": "0.34.0"
20
20
  },
21
21
  "peerDependencies": {
22
- "@spaceflow/core": "0.11.0"
22
+ "@spaceflow/core": "0.12.0"
23
23
  },
24
24
  "spaceflow": {
25
25
  "type": "flow",