Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sametcn99 committed Aug 4, 2024
1 parent 59debf9 commit ef6a323
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm ci
run: npm i
- name: build
run: npm run make

Expand All @@ -22,7 +22,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm ci
run: npm i
- name: build
run: npm run make

Expand All @@ -34,6 +34,6 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm ci
run: npm i
- name: build
run: npm run make
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm ci
run: npm i
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm ci
run: npm i
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,36 +47,36 @@
"@rollup/plugin-alias": "^5.1.0",
"@types/electron-localshortcut": "^3.1.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-vue": "^5.0.4",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/cli": "^5.0.8",
"autoprefixer": "^10.4.19",
"electron": "^30.0.9",
"eslint": "^8.57.0",
"autoprefixer": "^10.4.20",
"electron": "^31.3.1",
"eslint": "^9.8.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"htmlhint": "^1.1.4",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"tailwindcss": "^3.4.3",
"postcss": "^8.4.40",
"prettier": "3.3.3",
"tailwindcss": "^3.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.12"
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"dependencies": {
"@adobe/css-tools": "^4.4.0",
"@electron-forge/shared-types": "^7.4.0",
"@heroicons/vue": "^2.1.3",
"@heroicons/vue": "^2.1.5",
"electron-is": "^3.0.0",
"electron-localshortcut": "^3.2.1",
"electron-squirrel-startup": "^1.0.1",
"node-stream-zip": "^1.15.0",
"opml-to-json": "^1.0.1",
"rss-parser": "^3.13.0",
"systeminformation": "^5.22.9",
"systeminformation": "^5.23.3",
"update-electron-app": "^3.0.0",
"vue": "^3.4.27"
"vue": "^3.4.35"
}
}
}

0 comments on commit ef6a323

Please sign in to comment.