Skip to content

Commit bcba769

Browse files
authored
Merge pull request #3 from nicepkg/dev
chore: release v1.0.6
1 parent 81c4ebf commit bcba769

20 files changed

Lines changed: 29 additions & 49 deletions

.changeset/four-dogs-fold09.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nicepkg/vsync": patch
3+
---
4+
5+
release first version 09

.github/workflows/preview-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
package:
2626
# When you add a new package, add a new line here
27-
- name: "vsync"
27+
- name: "@nicepkg/vsync"
2828
dir: "cli"
2929
display: "vsync (CLI)"
3030
# - name: "core"

.vibe-sync.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ flowchart TD
117117

118118
```bash
119119
# Option 1: Run directly with npx (no installation needed)
120-
npx vsync
120+
npx @nicepkg/vsync
121121

122122
# Option 2: Install globally with npm
123-
npm install -g vsync
123+
npm install -g @nicepkg/vsync
124124

125125
# Verify installation
126126
vsync --version

README_cn.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ flowchart TD
117117

118118
```bash
119119
# 方式 1: 使用 npx 直接运行 (无需安装)
120-
npx vsync
120+
npx @nicepkg/vsync
121121

122122
# 方式 2: 使用 npm 全局安装
123-
npm install -g vsync
123+
npm install -g @nicepkg/vsync
124124

125125
# 验证安装
126126
vsync --version

cli/.vibe-sync.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vsync",
2+
"name": "@nicepkg/vsync",
33
"version": "1.0.5",
44
"description": "CLI for vsync - AI coding tool config synchronizer",
55
"type": "module",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"build:website": "pnpm --filter website build",
1515
"start:website": "pnpm --filter website start",
1616
"start:static-website": "pnpm --filter website start:static",
17-
"dev:cli": "pnpm --filter vsync dev",
18-
"build:cli": "pnpm --filter vsync build",
17+
"dev:cli": "pnpm --filter @nicepkg/vsync dev",
18+
"build:cli": "pnpm --filter @nicepkg/vsync build",
1919
"test": "pnpm -r run test",
2020
"test:coverage": "pnpm -r run test:coverage",
2121
"lint": "pnpm -r run lint",

scripts/release-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
pnpm --filter vsync run build
4+
pnpm --filter @nicepkg/vsync run build
55
pnpm ci:publish
66
pnpm changeset tag

website/content/en/_meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default {
3535
},
3636
changelog: {
3737
title: "Changelog",
38-
href: "https://github.com/nicepkg/vsync/blob/main/CHANGELOG.md",
38+
href: "https://github.com/nicepkg/vsync/blob/main/cli/CHANGELOG.md",
3939
},
4040
release: {
4141
title: "Release",

0 commit comments

Comments
 (0)