This commit is contained in:
Caner Karaca 2024-02-22 00:56:40 -07:00 committed by GitHub
commit 18d91fedad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 2478 additions and 2239 deletions

11
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"

View File

@ -5,6 +5,7 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
@ -13,14 +14,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
@ -33,7 +34,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
@ -53,7 +54,7 @@ jobs:
- name: Build asar
run: pnpm dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload artifact
# if: ${{ github.ref == 'refs/heads/main' }} # Only create artifacts when pushed to main
with:

View File

@ -27,7 +27,7 @@
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^10.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=14",

File diff suppressed because it is too large Load Diff

View File

@ -20,17 +20,17 @@
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.16.9",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.5.1",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-cli": "^11.0.0",
"postcss-csso": "^6.0.0",
"postcss-easy-import": "^4.0.0",
"postcss-loader": "^6.2.1",
"stylelint": "^14.3.0",
"stylelint-config-standard": "^24.0.0",
"postcss-loader": "^7.3.4",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"webpack": "^5.73.0"
},
"dependencies": {