chore(deps): update dependencies (#219)

This commit is contained in:
Konrad Szwarc 2023-05-01 20:47:14 +02:00 committed by GitHub
parent 32c27d4893
commit f110d9615a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 1492 additions and 1031 deletions

View file

@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.1.5] - 2023-05-01
### Dependencies
- chore(deps): update dependencies ([details](https://github.com/KonradSzwarc/devscard/pull/219))
## [0.1.4] - 2023-04-05
### Workflow

2471
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"name": "devscard",
"description": "Template for creating a comprehensive virtual CV for developers.",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"engines": {
"node": ">=14",
@ -25,38 +25,38 @@
"check": "concurrently npm:*:check"
},
"dependencies": {
"@floating-ui/dom": "1.2.5",
"@floating-ui/dom": "1.2.7",
"iconify-icon": "1.0.7",
"nanoid": "4.0.2"
},
"devDependencies": {
"@astrojs/image": "0.16.2",
"@astrojs/react": "2.1.0",
"@astrojs/image": "0.16.6",
"@astrojs/react": "2.1.1",
"@astrojs/tailwind": "3.1.1",
"@percy/cli": "1.21.0",
"@percy/cli": "1.24.0",
"@types/marked": "4.0.8",
"astro": "2.1.7",
"astro-compress": "1.1.35",
"concurrently": "7.6.0",
"date-fns": "2.29.3",
"favicons": "7.1.1",
"astro": "2.3.2",
"astro-compress": "1.1.42",
"concurrently": "8.0.1",
"date-fns": "2.30.0",
"favicons": "7.1.2",
"iconify-icon-names": "1.1.0",
"immer": "9.0.21",
"immer": "10.0.1",
"locales-ts": "1.0.0",
"marked": "4.3.0",
"move-file-cli": "3.0.0",
"photoswipe": "5.3.6",
"postcss": "8.4.21",
"prettier": "2.8.7",
"photoswipe": "5.3.7",
"postcss": "8.4.23",
"prettier": "2.8.8",
"prettier-plugin-astro": "0.8.0",
"prettier-plugin-tailwindcss": "0.2.5",
"puppeteer": "19.8.0",
"prettier-plugin-tailwindcss": "0.2.8",
"puppeteer": "19.11.1",
"puppeteer-report": "3.1.0",
"rollup-plugin-visualizer": "5.9.0",
"tailwindcss": "3.2.7",
"tailwindcss": "3.3.2",
"ts-node": "10.9.1",
"type-fest": "3.7.1",
"typescript": "5.0.2"
"type-fest": "3.9.0",
"typescript": "5.0.4"
},
"repository": {
"type": "git",

View file

@ -1,5 +1,5 @@
import type { Data } from '@/types/data';
import produce from 'immer';
import { produce } from 'immer';
import type { PreciseData } from './get-cv-data';
import type { DataTransformer } from './transformers';

View file

@ -1,4 +1,4 @@
<div class="flex items-center gap-4 pt-10 pb-5">
<div class="flex items-center gap-4 pb-5 pt-10">
<div class="whitespace-nowrap text-2xl font-extrabold text-gray-900"><slot /></div>
<hr class="w-full bg-gray-300" />
</div>

View file

@ -20,7 +20,7 @@ const { config, skillSets } = Astro.props;
return (
<div class="flex h-6 w-fit overflow-hidden rounded">
<div class="flex items-center bg-gray-100 pl-2.5 pr-2 font-medium">{skill.name}</div>
<div class="flex items-center bg-gray-200 pr-2.5 pl-2 font-normal">{skill.level}/5</div>
<div class="flex items-center bg-gray-200 pl-2 pr-2.5 font-normal">{skill.level}/5</div>
</div>
);
}
@ -31,7 +31,7 @@ const { config, skillSets } = Astro.props;
<div class="flex items-center bg-gray-100 pl-2.5 pr-2 font-medium">
{skill.name.split(' - ')[0]}
</div>
<div class="flex items-center bg-gray-200 pr-2.5 pl-2 font-normal">
<div class="flex items-center bg-gray-200 pl-2 pr-2.5 font-normal">
{skill.name.split(' - ')[1]}
</div>
</div>