Skip to content

Commit 69f4359

Browse files
committed
feat: 更新 build 命令为在打 npm 包的同时更新 vsix
1 parent 7ecc008 commit 69f4359

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.0.7] - 2026-05-20
8+
9+
### Changed
10+
- Unified the npm package and VS Code extension versions at `1.0.7`.
11+
- Updated the root build script to generate the VS Code `.vsix` package alongside the npm CLI bundle.
12+
713
## [1.0.4] - 2026-05-19
814

915
### Added

apps/vscode/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "frontagent",
33
"displayName": "FrontAgent",
44
"description": "Chat with FrontAgent from a VS Code sidebar.",
5-
"version": "1.0.6",
5+
"version": "1.0.7",
66
"publisher": "ceilf6",
77
"icon": "media/icon.png",
88
"license": "MIT",
@@ -205,6 +205,7 @@
205205
},
206206
"scripts": {
207207
"build": "tsc --noEmit && node build.mjs",
208+
"package": "pnpm dlx @vscode/vsce package --no-dependencies",
208209
"dev": "tsc --watch --noEmit",
209210
"test": "vitest run",
210211
"typecheck": "tsc --noEmit",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontagent",
3-
"version": "1.0.4",
3+
"version": "1.0.7",
44
"description": "FrontAgent CLI and VS Code extension for frontend AI engineering with SDD constraints, MCP-controlled execution, and RAG planning",
55
"type": "module",
66
"bin": {
@@ -18,7 +18,7 @@
1818
"LICENSE"
1919
],
2020
"scripts": {
21-
"build": "turbo build && node build.mjs",
21+
"build": "turbo build && node build.mjs && pnpm --dir apps/vscode package",
2222
"bundle": "node build.mjs",
2323
"dev": "turbo dev",
2424
"lint": "turbo lint",

0 commit comments

Comments
 (0)