Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
chore: uprade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Nov 19, 2023
1 parent 80bd791 commit f62fcde
Show file tree
Hide file tree
Showing 5 changed files with 2,514 additions and 1,488 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18

Expand All @@ -30,13 +30,12 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18

- run: corepack enable
cache: pnpm

- name: Install
run: pnpm i
Expand Down
6 changes: 2 additions & 4 deletions components/App/Icon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ async function loadIcon(name?: string) {
<template>
<span
v-if="icon"
:class="[
'children-[svg]:h-full children-[svg]:w-full',
defaultStyles && 'inline-block h-[1em] w-[1em] align-middle',
]"
class="children-[svg]:h-full children-[svg]:w-full"
:class="[defaultStyles && 'inline-block h-[1em] w-[1em] align-middle']"
aria-hidden="true"
v-html="icon"
/>
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export default defineNuxtConfig({
experimental: {
typescriptBundlerResolution: true,
inlineSSRStyles: false,
headNext: true,
},

typescript: {
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"packageManager": "pnpm@8.7.6",
"packageManager": "pnpm@8.10.5",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
Expand All @@ -21,22 +21,22 @@
"pre-commit": "npx lint-staged"
},
"devDependencies": {
"@byjohann/eslint-config": "^0.2.2",
"@byjohann/eslint-config": "^0.3.0",
"@iconify-json/carbon": "^1.1.21",
"@julr/unocss-preset-forms": "^0.0.5",
"@pinia/nuxt": "^0.4.11",
"@types/node": "^20.6.5",
"@unocss/eslint-config": "^0.56.1",
"@unocss/nuxt": "^0.56.1",
"@vueuse/nuxt": "^10.4.1",
"eslint": "^8.50.0",
"lint-staged": "^14.0.1",
"nuxt": "^3.7.3",
"pinia": "^2.1.6",
"prettier": "^3.0.3",
"@julr/unocss-preset-forms": "^0.1.0",
"@pinia/nuxt": "^0.5.1",
"@types/node": "^20.9.2",
"@unocss/eslint-config": "^0.57.6",
"@unocss/nuxt": "^0.57.6",
"@vueuse/nuxt": "^10.6.1",
"eslint": "^8.54.0",
"lint-staged": "^15.1.0",
"nuxt": "^3.8.1",
"pinia": "^2.1.7",
"prettier": "^3.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unocss": "^0.56.1",
"vue-tsc": "^1.8.13"
"unocss": "^0.57.6",
"vue-tsc": "^1.8.22"
}
}
Loading

0 comments on commit f62fcde

Please sign in to comment.