3 Commits

Author SHA1 Message Date
74db94dd3b Update typescript-eslint monorepo to v8.39.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
test-build / build (pull_request) Successful in 1m6s
2025-08-06 00:01:52 +00:00
44e39d08d9 add catppuccin theme
All checks were successful
test-build / build (push) Successful in 29s
renovate / renovate (push) Successful in 52s
2025-08-01 20:35:32 -05:00
0ff0908e44 update node
All checks were successful
renovate / renovate (push) Successful in 24s
test-build / build (push) Successful in 35s
2025-08-01 20:22:50 -05:00
5 changed files with 185 additions and 516 deletions

View File

@@ -24,7 +24,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.17.1
node-version: 22.18.0
cache: pnpm
- name: Install Dependencies

View File

@@ -1,5 +1,5 @@
ARG REGISTRY=docker.io
FROM ${REGISTRY}/node:22.17.1-alpine3.22 AS base
FROM ${REGISTRY}/node:22.18.0-alpine3.22 AS base
LABEL version="0.0.1"
LABEL description="Astro based documentation website"

View File

@@ -1,10 +1,10 @@
// @ts-check
import { defineConfig } from "astro/config";
import tailwindcss from "@tailwindcss/vite";
import starlight from "@astrojs/starlight";
import react from "@astrojs/react";
import node from "@astrojs/node";
import tailwindcss from "@tailwindcss/vite";
import starlight from "@astrojs/starlight";
import catppuccin from "@catppuccin/starlight";
const getSiteURL = () => {
if (process.env.SITE_URL) {
@@ -16,9 +16,9 @@ const getSiteURL = () => {
// https://astro.build/config
export default defineConfig({
site: getSiteURL(),
integrations: [
tailwindcss(),
react(),
starlight({
title: "My Docs",
social: [
@@ -28,6 +28,12 @@ export default defineConfig({
href: "https://github.com/withastro/starlight",
},
],
plugins: [
catppuccin({
dark: { flavor: "macchiato", accent: "sapphire" },
light: { flavor: "latte", accent: "sky" }
})
],
sidebar: [
{
label: "Guides",

View File

@@ -12,31 +12,27 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "4.3.2",
"@astrojs/node": "9.3.2",
"@astrojs/react": "^4.3.0",
"@astrojs/mdx": "4.3.3",
"@astrojs/node": "9.3.3",
"@astrojs/starlight": "^0.35.2",
"@catppuccin/starlight": "1.0.1",
"@tailwindcss/postcss": "^4.1.8",
"@tailwindcss/vite": "^4.1.8",
"astro": "5.12.7",
"astro": "5.12.8",
"framer-motion": "^12.16.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hotkeys-hook": "^5.1.0",
"react-icons": "^5.5.0",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.2",
"tailwindcss": "^4.1.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@typescript-eslint/parser": "8.38.0",
"@typescript-eslint/parser": "8.39.0",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.3.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.12",
"typescript-eslint": "8.38.0"
"typescript-eslint": "8.39.0"
}
}

667
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff