Update all non-major dependencies (#142)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Konrad Szwarc <konrad.szwarc.dev@gmail.com>
This commit is contained in:
parent
7d734808cf
commit
b826372fbc
4 changed files with 716 additions and 333 deletions
2
.github/workflows/check-code-quality.yml
vendored
2
.github/workflows/check-code-quality.yml
vendored
|
|
@ -32,7 +32,7 @@ jobs:
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
- name: Run ESLint
|
- name: Run Prettier
|
||||||
run: npm run prettier:check
|
run: npm run prettier:check
|
||||||
|
|
||||||
typescript:
|
typescript:
|
||||||
|
|
|
||||||
1020
package-lock.json
generated
1020
package-lock.json
generated
File diff suppressed because it is too large
Load diff
22
package.json
22
package.json
|
|
@ -33,28 +33,28 @@
|
||||||
"@astrojs/tailwind": "2.1.3",
|
"@astrojs/tailwind": "2.1.3",
|
||||||
"@types/react": "18.0.26",
|
"@types/react": "18.0.26",
|
||||||
"@types/react-dom": "18.0.10",
|
"@types/react-dom": "18.0.10",
|
||||||
"@typescript-eslint/eslint-plugin": "5.47.1",
|
"@typescript-eslint/eslint-plugin": "5.48.1",
|
||||||
"@typescript-eslint/parser": "5.47.1",
|
"@typescript-eslint/parser": "5.48.1",
|
||||||
"astro": "1.8.0",
|
"astro": "1.9.2",
|
||||||
"concurrently": "7.6.0",
|
"concurrently": "7.6.0",
|
||||||
"eslint": "8.31.0",
|
"eslint": "8.31.0",
|
||||||
"eslint-config-airbnb": "19.0.4",
|
"eslint-config-airbnb": "19.0.4",
|
||||||
"eslint-config-airbnb-typescript": "17.0.0",
|
"eslint-config-airbnb-typescript": "17.0.0",
|
||||||
"eslint-config-prettier": "8.5.0",
|
"eslint-config-prettier": "8.6.0",
|
||||||
"eslint-import-resolver-typescript": "3.5.2",
|
"eslint-import-resolver-typescript": "3.5.3",
|
||||||
"eslint-plugin-astro": "0.21.1",
|
"eslint-plugin-astro": "0.21.1",
|
||||||
"eslint-plugin-eslint-comments": "3.2.0",
|
"eslint-plugin-eslint-comments": "3.2.0",
|
||||||
"eslint-plugin-file-progress": "1.3.0",
|
"eslint-plugin-file-progress": "1.3.0",
|
||||||
"eslint-plugin-import": "2.26.0",
|
"eslint-plugin-import": "2.27.4",
|
||||||
"eslint-plugin-jsx-a11y": "6.6.1",
|
"eslint-plugin-jsx-a11y": "6.7.1",
|
||||||
"eslint-plugin-react": "7.31.11",
|
"eslint-plugin-react": "7.32.0",
|
||||||
"eslint-plugin-react-hooks": "4.6.0",
|
"eslint-plugin-react-hooks": "4.6.0",
|
||||||
"eslint-plugin-simple-import-sort": "8.0.0",
|
"eslint-plugin-simple-import-sort": "8.0.0",
|
||||||
"iconify-icon-names": "1.1.0",
|
"iconify-icon-names": "1.1.0",
|
||||||
"locales-ts": "1.0.0",
|
"locales-ts": "1.0.0",
|
||||||
"postcss": "8.4.20",
|
"postcss": "8.4.21",
|
||||||
"prettier": "2.8.1",
|
"prettier": "2.8.2",
|
||||||
"prettier-plugin-astro": "0.7.0",
|
"prettier-plugin-astro": "0.7.2",
|
||||||
"prettier-plugin-tailwindcss": "0.2.1",
|
"prettier-plugin-tailwindcss": "0.2.1",
|
||||||
"tailwindcss": "3.2.4",
|
"tailwindcss": "3.2.4",
|
||||||
"typescript": "4.9.4"
|
"typescript": "4.9.4"
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,9 @@ const { job, i18n } = Astro.props;
|
||||||
<div class="flex flex-col gap-2 md:gap-0">
|
<div class="flex flex-col gap-2 md:gap-0">
|
||||||
<div class="flex w-full flex-row justify-between">
|
<div class="flex w-full flex-row justify-between">
|
||||||
<div>
|
<div>
|
||||||
<Typography variant="item-title"
|
<Typography variant="item-title">
|
||||||
>{job.role} <span class="font-medium"> — {job.company}</span>
|
{job.role}
|
||||||
|
<span class="font-medium"> — {job.company}</span>
|
||||||
</Typography>
|
</Typography>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-wrap gap-2">
|
<div class="flex flex-wrap gap-2">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue