Skip to content

Commit

Permalink
Merge pull request #117 from botmaster/chore/no-ref/update-deps
Browse files Browse the repository at this point in the history
chore(deps): Update deps
  • Loading branch information
botmaster authored Oct 20, 2024
2 parents aeba6f4 + c22ddf2 commit 23397b4
Show file tree
Hide file tree
Showing 3 changed files with 854 additions and 716 deletions.
6 changes: 4 additions & 2 deletions assets/scss/base/_root.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
@use "sass:map";
@use "sass:meta";
@use '../abstracts/functions' as *;
@use '../abstracts/variables' as *;
@use '../abstracts/tokens' as *;
@use 'sass:color';

$mergedColors: map-merge($colors, (
$mergedColors: map.merge($colors, (
"body-background": $body-background,
"body-text": $body-text,
"muted-text": $text-muted-color,
Expand All @@ -16,7 +18,7 @@ $mergedColors: map-merge($colors, (
@each $name, $color in $map {
// if $color is a hex value, convert it to hsl
// otherwise, use the color as is
@if type-of($color) == "color" {
@if meta.type-of($color) == "color" {
--color-#{$name}-hex: #{$color};
--color-#{$name}: #{hexToHslValues($color)};
} @else {
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"version": "2.24.12",
"private": true,
"packageManager": "[email protected].0",
"packageManager": "[email protected].2",
"description": "Pascal Achard's personal website",
"author": "Pascal Achard",
"scripts": {
Expand All @@ -24,45 +24,45 @@
"@vueuse/nuxt": "^11.1.0",
"@vueuse/router": "^11.1.0",
"gsap": "^3.12.5",
"lenis": "^1.1.13",
"lenis": "^1.1.14",
"splitting": "^1.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@antfu/eslint-config": "^3.8.0",
"@eslint/eslintrc": "^3.1.0",
"@iconify-json/brandico": "^1.2.0",
"@iconify-json/cib": "^1.2.0",
"@iconify-json/eos-icons": "^1.2.0",
"@iconify-json/fluent": "^1.2.2",
"@iconify-json/logos": "^1.2.2",
"@iconify-json/material-symbols": "^1.2.2",
"@iconify-json/mdi": "^1.2.0",
"@iconify-json/pajamas": "^1.2.2",
"@nuxt/content": "^2.13.2",
"@nuxt/devtools": "^1.5.2",
"@nuxt/icon": "^1.5.4",
"@iconify-json/brandico": "^1.2.1",
"@iconify-json/cib": "^1.2.1",
"@iconify-json/eos-icons": "^1.2.1",
"@iconify-json/fluent": "^1.2.4",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/material-symbols": "^1.2.4",
"@iconify-json/mdi": "^1.2.1",
"@iconify-json/pajamas": "^1.2.3",
"@nuxt/content": "^2.13.4",
"@nuxt/devtools": "^1.6.0",
"@nuxt/icon": "^1.5.6",
"@nuxt/image": "^1.8.1",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/fontaine": "^0.4.3",
"@nuxtjs/i18n": "^8.5.5",
"@nuxtjs/robots": "^4.1.7",
"@nuxtjs/sitemap": "^6.1.1",
"@nuxtjs/tailwindcss": "^6.12.1",
"@nuxtjs/robots": "^4.1.9",
"@nuxtjs/sitemap": "^6.1.2",
"@nuxtjs/tailwindcss": "^6.12.2",
"@pinia/nuxt": "^0.5.5",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "^22.7.4",
"@types/node": "^22.7.7",
"@types/splitting": "^1.0.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.12.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-tailwindcss": "^3.17.5",
"nuxt": "^3.13.2",
"nuxt-headlessui": "^1.2.0",
"sass": "^1.79.4",
"typescript": "^5.6.2",
"sass": "^1.80.3",
"typescript": "^5.6.3",
"uuid": "^10.0.0",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.1.6"
Expand Down
Loading

0 comments on commit 23397b4

Please sign in to comment.