Skip to content

Commit

Permalink
use latest stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pataar committed Feb 11, 2025
1 parent d265587 commit 8bf18c0
Show file tree
Hide file tree
Showing 16 changed files with 4,665 additions and 571 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store

.idea/
21 changes: 0 additions & 21 deletions .prettierrc.cjs

This file was deleted.

4 changes: 2 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
18 changes: 9 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
20 changes: 13 additions & 7 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "astro/config";

import react from "@astrojs/react";

// https://astro.build/config
export default defineConfig({
site: 'https://pieterwillekens.nl',
integrations: [tailwind({
applyBaseStyles: false
}), sitemap(), react()]
});
site: "https://pieterwillekens.nl",
integrations: [
tailwind({
applyBaseStyles: false,
}),
sitemap(),
react(),
],
vite: { plugins: [tailwindcss()] },
});
32 changes: 32 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
"files": { "ignoreUnknown": false, "ignore": ["src/styles/devicon.min.css"] },
"formatter": {
"enabled": true,
"useEditorconfig": true,
"formatWithErrors": false,
"indentStyle": "tab",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 120,
"attributePosition": "auto",
"bracketSpacing": true
},
"organizeImports": { "enabled": true },
"linter": { "enabled": true, "rules": { "recommended": true } },
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "asNeeded",
"bracketSameLine": false,
"quoteStyle": "double",
"attributePosition": "auto",
"bracketSpacing": true
}
},
"overrides": [{ "include": ["*.astro"] }]
}
703 changes: 227 additions & 476 deletions bun.lock

Large diffs are not rendered by default.

68 changes: 34 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name": "pale-parsec",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "4.2.0",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.5",
"@fortawesome/fontawesome-common-types": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"astro": "5.2.5",
"devicon": "^2.16.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"react-compiler-runtime": "^19.0.0-beta-201e55d-20241215",
"sharp": "^0.33.5"
}
}
"name": "pale-parsec",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "4.2.0",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "6.0.0",
"@fortawesome/fontawesome-common-types": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"astro": "5.2.5",
"devicon": "^2.16.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.6"
},
"devDependencies": {
"react-compiler-runtime": "^19.0.0-beta-e552027-20250112",
"sharp": "^0.33.5",
"@tailwindcss/vite": "^4.0.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@biomejs/biome": "^1.9.4"
}
}
Loading

0 comments on commit 8bf18c0

Please sign in to comment.