Compare commits
3 Commits
0.0.1
...
renovate/t
Author | SHA1 | Date | |
---|---|---|---|
74db94dd3b
|
|||
44e39d08d9 | |||
0ff0908e44 |
@@ -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
|
||||
|
@@ -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"
|
||||
|
@@ -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",
|
||||
|
16
package.json
16
package.json
@@ -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
667
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user