Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install pnpm
run: npm install -g pnpm@9
- uses: oven-sh/setup-bun@v2

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: bun install --frozen-lockfile

- name: TypeScript check
run: npx tsc --noEmit --skipLibCheck
run: bunx tsc --noEmit --skipLibCheck

- name: Build
run: pnpm run build
run: bun run build

- name: Verify dist output
run: |
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,13 @@ jobs:
with:
python-version: "3.11"

- uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install pnpm
run: npm install -g pnpm@9
- uses: oven-sh/setup-bun@v2

- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
run: bun install --frozen-lockfile

- name: Build frontend
run: pnpm run build
run: bun run build

- name: Package plugin
run: |
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ refactor: simplify pairing flow

```bash
# Install dependencies
pnpm install # or npm install
bun install

# Build frontend
pnpm build # or npm run build
bun run build

# Watch mode
pnpm watch # or npm run watch
bun run watch

# Full build with ZIP packaging (Linux only)
./build.sh
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@ The plugin runs a WebSocket server that speaks the same protocol as the desktop

### Requirements

- Node.js 18+ (with npm or pnpm)
- [Bun](https://bun.sh/) (used by CI and the monorepo's build tooling)
- Python 3.11+ (for backend dependencies)

### Build

```bash
# Install frontend dependencies
pnpm install # or npm install
bun install

# Build frontend
pnpm build # or npm run build
bun run build

# Full build with Python deps and ZIP packaging (Linux only)
./build.sh
Expand All @@ -111,7 +111,7 @@ pnpm build # or npm run build

```bash
# Watch mode (auto-rebuild on changes)
pnpm watch # or npm run watch
bun run watch
```

### Project Structure
Expand Down
Loading
Loading