Skip to content

Commit

Permalink
Update: Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
CaffeeLake committed May 18, 2024
1 parent 2a1e4d3 commit 29c8015
Show file tree
Hide file tree
Showing 6 changed files with 1,466 additions and 1,233 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4.0.0
with:
version: 8
version: 9

- name: Install Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4.0.0
with:
version: 8
version: 9

- name: Install Node.js
uses: actions/setup-node@v4
Expand Down
11 changes: 8 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"overrides": [{
"files": ["*.ts", "*.tsx"]
}],
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
]
}
],
"printWidth": 160,
"tabWidth": 2,
"trailingComma": "all",
Expand Down
19 changes: 12 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bsky-electron",
"version": "v0.2.1",
"version": "v0.3.0",
"description": "Bluesky Electron Client",
"keywords": [
"Bluesky"
Expand All @@ -13,6 +13,7 @@
"author": "CaffeeLake <PascalCoffeeLake@gmail.com> (https://github.com/CaffeeLake/)",
"repository": "github:CaffeeLake/bsky-electron",
"main": "main/index.js",
"type": "module",
"scripts": {
"build": "tsc -p src",
"clean": "rimraf dist main",
Expand All @@ -25,14 +26,18 @@
"type-check": "tsc -p ./src/tsconfig.json"
},
"dependencies": {
"electron-store": "^8.1.0"
"electron-store": "^9.0.0"
},
"devDependencies": {
"electron": "^30.0.0",
"electron-builder": "^24.9.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
"electron": "^30.0.6",
"electron-builder": "^24.13.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"build": {
"appId": "com.caffeelake.bsky-electron",
Expand Down
Loading

0 comments on commit 29c8015

Please sign in to comment.