Skip to content

Commit

Permalink
updated dependencies to latest version (#33)
Browse files Browse the repository at this point in the history
Upgraded all versions to latest except eslint which requires a migration for version 9
  • Loading branch information
Bullrich authored May 2, 2024
1 parent 48220d8 commit 5a6ec82
Show file tree
Hide file tree
Showing 3 changed files with 955 additions and 793 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,24 @@ jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18

- name: Use cached node_modules
uses: actions/cache@v1
with:
path: node_modules
key: node_modules+${{ hashFiles('**/yarn.lock') }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn install --frozen-lockfile
- name: Install
run: yarn install --frozen-lockfile

- name: Lint
run: yarn lint
- name: Lint
run: yarn lint
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@
"lint": "eslint '{*,**/*}.{cjs,ts,js}' && prettier --check '{*,**/*}.{json,html}'"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-svelte": "^2.32.4",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^3.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-svelte": "^2.37.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-compactify": "^0.1.6",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^3.54.0"
"prettier-plugin-svelte": "^3.2.3",
"svelte": "^4.2.15"
},
"devDependencies": {
"typescript": "^4.9.3"
"typescript": "^5.4.5"
}
}
Loading

0 comments on commit 5a6ec82

Please sign in to comment.