Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
node-version: 24
- uses: pnpm/action-setup@a0ea98b2dc7d387a59324835f7421c1d5f8357b4 # v6.0.5
- run: pnpm install --frozen-lockfile
- run: pnpm run ci
8 changes: 1 addition & 7 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
node-version: 24
- uses: pnpm/action-setup@a0ea98b2dc7d387a59324835f7421c1d5f8357b4 # v6.0.5
- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand All @@ -38,9 +38,3 @@ jobs:
run: pnpm run e2e
env:
E2E_BASE_URL: ${{ needs.test_setup.outputs.preview_url }}
# - uses: actions/upload-artifact@v4
# if: always()
# with:
# name: playwright-report
# path: playwright-report/
# retention-days: 30
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DS_Store
node_modules
/build
/public
/dist
/.svelte-kit
/package
.env
Expand All @@ -11,5 +11,7 @@ node_modules
/test-results/
/playwright-report/
/playwright/.cache/
/public/rss.xml

actions-runner
tsconfig.tsbuildinfo
Empty file modified .husky/pre-commit
100755 → 100644
Empty file.
6 changes: 6 additions & 0 deletions .oxfmtignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dist
node_modules
playwright-report
src/routeTree.gen.ts
test-results
tsconfig.tsbuildinfo
3 changes: 3 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["react", "jsx-a11y", "import"]
}
16 changes: 0 additions & 16 deletions .prettierignore

This file was deleted.

135 changes: 0 additions & 135 deletions eslint.config.js

This file was deleted.

18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="AJ Bienz's personal site for notes, projects, and professional context."
/>
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="preload" as="image" href="/family.webp" type="image/webp" fetchpriority="high" />
<title>AJ Bienz</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
87 changes: 42 additions & 45 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,58 +3,55 @@
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.0.8",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build": "node scripts/rss.mjs && vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync && husky",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin prettier-plugin-svelte --check . && eslint .",
"lint:fix": "prettier --plugin prettier-plugin-svelte --write . && eslint --fix .",
"ci": "pnpm run lint && pnpm run check && pnpm run build",
"prepare": "husky",
"check": "tsc",
"format": "oxfmt --ignore-path .oxfmtignore --write .",
"format:check": "oxfmt --ignore-path .oxfmtignore --check .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"ci": "pnpm run format:check && pnpm run lint && pnpm run check && pnpm run build",
"e2e": "playwright test"
},
"dependencies": {
"@tanstack/react-router": "1.169.2",
"@tanstack/react-router-devtools": "1.166.13",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@opentelemetry/api": "^1.9.1",
"@playwright/test": "^1.59.1",
"@sveltejs/adapter-static": "3.0.10",
"@sveltejs/kit": "2.59.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.2",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"autoprefixer": "^10.5.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"mdsvex": "^0.12.7",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"prism-themes": "^1.9.0",
"svelte": "^5.55.5",
"svelte-check": "^4.4.8",
"svelte-eslint-parser": "^1.6.1",
"tailwindcss": "^4.2.4",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vite": "^8.0.11"
"@playwright/test": "1.59.1",
"@tanstack/router-plugin": "1.167.35",
"@types/markdown-it": "14.1.2",
"@types/node": "25.6.2",
"@types/prismjs": "1.26.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"husky": "9.1.7",
"lint-staged": "17.0.4",
"markdown-it": "14.1.0",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"prismjs": "1.30.0",
"typescript": "6.0.3",
"vite": "8.0.11",
"vite-plugin-markdown": "2.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,cjs,mjs,svelte}": [
"bash -c 'pnpm run check'",
"prettier --plugin prettier-plugin-svelte --write",
"eslint --fix"
"*.{js,jsx,ts,tsx,json,cjs,mjs,css,md,yml,yaml,json}": [
"oxfmt --write"
],
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"bash -c 'pnpm run check'"
]
}
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.0.8"
}
4 changes: 1 addition & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,12 @@ const config: PlaywrightTestConfig = {
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
// workers: process.env.CI ? 1 : undefined,
reporter: "html",
use: {
actionTimeout: 0,
baseURL: process.env.E2E_BASE_URL ?? "http://localhost:4173",
trace: "on-first-retry",
},

projects: [
{
name: "chromium",
Expand Down Expand Up @@ -55,6 +52,7 @@ const config: PlaywrightTestConfig = {
webServer: {
command: "pnpm run build && pnpm run preview",
port: 4173,
reuseExistingServer: !process.env.CI,
},
};

Expand Down
Loading
Loading