feat(dependencies): fix versions

This commit is contained in:
Pihkaal
2024-09-12 17:49:31 +02:00
parent 912ce3a676
commit a2c11561bf
3 changed files with 435 additions and 431 deletions

View File

@@ -12,35 +12,35 @@
"format": "prettier --cache --write ." "format": "prettier --cache --write ."
}, },
"dependencies": { "dependencies": {
"clsx": "^2.1.0", "clsx": "2.1.0",
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"tailwind-merge": "^2.2.1" "tailwind-merge": "2.2.1"
}, },
"devDependencies": { "devDependencies": {
"@octokit/rest": "^21.0.0", "@octokit/rest": "21.0.0",
"@types/eslint": "^8.56.1", "@types/eslint": "8.56.1",
"@types/node": "^18.19.6", "@types/node": "18.19.6",
"@types/react": "^18.2.47", "@types/react": "18.2.47",
"@types/react-dom": "^18.2.18", "@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1", "@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "^6.18.1", "@typescript-eslint/parser": "6.18.1",
"@vitejs/plugin-react-swc": "^3.5.0", "@vitejs/plugin-react-swc": "3.5.0",
"autoprefixer": "^10.4.16", "autoprefixer": "10.4.16",
"dotenv": "^16.4.5", "dotenv": "16.4.5",
"eslint": "^8.56.0", "eslint": "8.56.0",
"eslint-config-next": "^14.0.4", "eslint-config-next": "14.0.4",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "^0.4.5", "eslint-plugin-react-refresh": "0.4.5",
"postcss": "^8.4.33", "postcss": "8.4.33",
"prettier": "^3.1.1", "prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11", "prettier-plugin-tailwindcss": "0.5.11",
"sass": "^1.70.0", "sass": "1.70.0",
"tailwindcss": "^3.4.1", "tailwindcss": "3.4.1",
"typescript": "^5.3.3", "typescript": "5.3.3",
"vite": "^5.0.12", "vite": "5.0.12",
"vite-tsconfig-paths": "^4.3.1", "vite-tsconfig-paths": "4.3.1",
"zod": "^3.23.8" "zod": "3.23.8"
}, },
"ct3aMetadata": { "ct3aMetadata": {
"initVersion": "7.25.1" "initVersion": "7.25.1"

814
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -47,7 +47,7 @@ const FrequencyBar = (props: {
bar += `${" ".repeat(WIDTH)}\n`.repeat(Math.max(emptyBlocksCount, 0)); bar += `${" ".repeat(WIDTH)}\n`.repeat(Math.max(emptyBlocksCount, 0));
if (remainderIndex > 0) { if (remainderIndex > 0) {
bar += `${GRADIENT[remainderIndex]!.repeat(WIDTH)}\n`; bar += `${GRADIENT[remainderIndex].repeat(WIDTH)}\n`;
} }
bar += `${FULL_BLOCK.repeat(WIDTH)}\n`.repeat(fullBlocksCount); bar += `${FULL_BLOCK.repeat(WIDTH)}\n`.repeat(fullBlocksCount);
} }