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
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
with:
bun-version: latest

- run: bun install
- run: bun install --frozen-lockfile

- run: bun run typecheck

- run: bun test

Expand Down Expand Up @@ -67,7 +69,7 @@ jobs:
with:
bun-version: 1.3.11

- run: bun install
- run: bun install --frozen-lockfile

- name: Validate macOS signing configuration
if: ${{ matrix.sign }}
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"source.removeUnusedImports": "explicit",
"source.fixAll.biome": "explicit"
},
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
118 changes: 27 additions & 91 deletions bun.lock

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
"bin": "bin/cli.js",
"type": "module",
"scripts": {
"prepare": "effect-language-service patch",
"build": "tsup ./src/cli.ts --format esm --outDir bin",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "biome check --write ./src",
"build:binary": "bun build ./src/cli.ts --compile --outfile polar",
Expand All @@ -23,19 +25,18 @@
"license": "Apache-2.0",
"packageManager": "pnpm@10.5.2",
"dependencies": {
"@effect/cli": "^0.69.0",
"@effect/platform": "^0.90.2",
"@effect/platform-bun": "^0.87.1",
"@effect/platform-bun": "4.0.0-rc.112",
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
"@polar-sh/sdk": "^0.47.0",
"effect": "^3.17.7",
"effect": "4.0.0-rc.112",
"eventsource": "^4.1.0",
"open": "^10.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@effect/language-service": "^0.35.2",
"@effect/language-service": "^0.87.2",
"@sindresorhus/tsconfig": "^8.0.1",
"@types/bun": "^1.4.1",
"@types/node": "^24.2.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
Expand Down
Loading