Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump dependencies #83

Merged
merged 2 commits into from
Sep 2, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn build
- run: yarn test:unit
32 changes: 17 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.12.0",
"author": "ytakahashi",
"dependencies": {
"core-js": "^3.32.0",
"core-js": "^3.32.1",
"dayjs": "^1.11.9",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
Expand All @@ -16,26 +16,26 @@
},
"devDependencies": {
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-vue": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"concurrently": "^8.2.0",
"electron": "^26.0.0",
"concurrently": "^8.2.1",
"electron": "^26.1.0",
"electron-builder": "^24.6.3",
"eslint": "^8.47.0",
"eslint": "^8.48.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.2",
"sass": "^1.32.12",
"sass-loader": "^10.1.1",
"typescript": "~5.1.6",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"typescript": "~5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.2",
"vue-tsc": "^1.8.5"
"vitest": "^0.34.3",
"vue-tsc": "^1.8.8"
},
"license": "MIT",
"main": "dist/electron/main/main.js",
Expand All @@ -45,9 +45,11 @@
"url": "https://github.com/ytakahashi/miru"
},
"scripts": {
"electron:build": "yarn vite:build && yarn ts && electron-builder --config electron-builder.js",
"build": "yarn vite:build && yarn ts",
"electron:build": "yarn build && electron-builder --config electron-builder.js",
"electron:dev": "ELECTRON_DISABLE_SECURITY_WARNINGS=true yarn ts && concurrently vite \" electron --trace-warnings .\" \"yarn ts -w\"",
"electron:preview": "yarn vite:build && yarn ts && electron .",
"electron:preview": "yarn build && electron .",
"electron:release": "yarn build && electron-builder --config electron-builder.js --mac dmg --publish onTagOrDraft",
"lint": "NODE_ENV=production eslint -c .eslintrc.js --ext .ts ./src ./tests",
"rm-dist": "node -e 'fs.rmSync(`dist`, {recursive:true, force:true}); fs.rmSync(`dist_electron`, {recursive:true, force:true})'",
"test:unit": "vitest run",
Expand Down
Loading