Skip to content

Commit

Permalink
fix: upgrade to latest ui package
Browse files Browse the repository at this point in the history
  • Loading branch information
paring-chan committed Dec 28, 2024
1 parent d4c6f3e commit b1211ff
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 24 deletions.
4 changes: 0 additions & 4 deletions .husky/commit-msg

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@
"lint:prettier": "prettier --check --plugin-search-dir=. .",
"lint:eslint": "eslint --max-warnings=0 .",
"format": "prettier --write --plugin-search-dir=. .",
"postinstall": "svelte-kit sync && husky install"
"postinstall": "svelte-kit sync"
},
"files": [
".svelte-kit",
"build",
"server.js"
],
"devDependencies": {
"@adofai-gg/ui": "1.2.0-beta.45",
"@adofai-gg/ui": "1.2.0-beta.59",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@fluent/bundle": "^0.18.0",
"@fontsource/ibm-plex-sans-kr": "^5.1.0",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.83.0",
"@playwright/test": "^1.40.1",
Expand All @@ -45,7 +46,6 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-svelte": "2.44.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
Expand Down
15 changes: 9 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
<script lang="ts">
import '$lib'
import '@adofai-gg/ui/dist/stylesheets/globals.scss'
import '@adofai-gg/ui/globals.scss'
import '@fontsource/ibm-plex-sans-kr/300.css'
import '@fontsource/ibm-plex-sans-kr/400.css'
import '@fontsource/ibm-plex-sans-kr/500.css'
import '@fontsource/ibm-plex-sans-kr/600.css'
import '@fontsource/ibm-plex-sans-kr/700.css'
import { IconProvider, Nav, Footer, setGlobalContext } from '@adofai-gg/ui'
import { env } from '$env/dynamic/public'
Expand Down
13 changes: 7 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2020", "DOM"],
"moduleResolution": "node",
"module": "es2020",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2020",
"types": ["vite-plugin-glob/client", "@types/youtube"]
"moduleResolution": "bundler"
}
}
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}

0 comments on commit b1211ff

Please sign in to comment.