Skip to content

Commit 5ed989d

Browse files
committed
chore: Update Repo Links
1 parent cbaf931 commit 5ed989d

File tree

10 files changed

+6156
-4854
lines changed

10 files changed

+6156
-4854
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
# Trigger the workflow every time you push to the `main` branch
77
# Using a different branch name? Replace `main` with your branch’s name
88
push:
9-
branches: [ main ]
9+
branches: [main]
1010
# Allows you to run this workflow manually from the Actions tab on GitHub.
1111
workflow_dispatch:
1212

@@ -26,8 +26,8 @@ jobs:
2626
uses: withastro/action@v2
2727
with:
2828
path: . # The root location of your Astro project inside the repository. (optional)
29-
node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
30-
package-manager: pnpm@8 # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
29+
node-version: 22 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
30+
package-manager: pnpm@10 # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
3131

3232
deploy:
3333
needs: build

.npmrc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ shamefully-hoist=true
1010

1111
# Use LTE Node version
1212
engine-strict=true
13-
node-version=20.10.0
14-
use-node-version=20.10.0
1513

1614
# Script Execution Configuration
1715
enable-pre-post-scripts=true

astro.config.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import mdx from "@astrojs/mdx";
22
import react from "@astrojs/react";
33
import sitemap from "@astrojs/sitemap";
4-
import tailwind from "@astrojs/tailwind";
4+
import tailwindcss from "@tailwindcss/vite";
55
import { defineConfig } from "astro/config";
66

77
// https://astro.build/config
@@ -16,9 +16,6 @@ export default defineConfig({
1616
}),
1717
sitemap(),
1818
react(),
19-
tailwind({
20-
applyBaseStyles: false,
21-
}),
2219
],
2320
prefetch: {
2421
prefetchAll: true,
@@ -27,4 +24,7 @@ export default defineConfig({
2724
redirects: {
2825
"/docs": "/docs/getting-started"
2926
},
27+
vite: {
28+
plugins: [tailwindcss()],
29+
},
3030
});

package.json

Lines changed: 40 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"description": "Documentation site for Operational Transformation Package",
55
"scripts": {
6-
"dev": "astro dev",
6+
"dev": "astro dev --host 0.0.0.0 --verbose",
77
"start": "astro dev",
88
"build": "astro build",
99
"preview": "astro preview",
@@ -16,50 +16,51 @@
1616
"url": "https://github.com/otjs-docs/otjs-docs.github.io"
1717
},
1818
"engines": {
19-
"node": ">= 20",
20-
"pnpm": ">= 8"
19+
"node": ">= 22",
20+
"pnpm": ">= 10"
2121
},
2222
"dependencies": {
23-
"@astrojs/mdx": "2.1.1",
24-
"@astrojs/react": "3.0.9",
25-
"@astrojs/rss": "4.0.4",
26-
"@astrojs/sitemap": "3.0.5",
27-
"@astrojs/tailwind": "5.1.0",
28-
"@radix-ui/react-accordion": "1.1.2",
29-
"@radix-ui/react-dialog": "1.0.5",
30-
"@radix-ui/react-navigation-menu": "1.1.4",
31-
"@radix-ui/react-scroll-area": "1.0.5",
32-
"@radix-ui/react-select": "2.0.0",
33-
"@radix-ui/react-slot": "1.0.2",
34-
"astro": "4.3.0",
35-
"astro-icon": "0.8.2",
23+
"@astrojs/mdx": "4.3.4",
24+
"@astrojs/react": "4.3.0",
25+
"@astrojs/rss": "4.0.12",
26+
"@astrojs/sitemap": "3.5.1",
27+
"@radix-ui/react-accordion": "1.2.12",
28+
"@radix-ui/react-dialog": "1.1.15",
29+
"@radix-ui/react-navigation-menu": "1.2.14",
30+
"@radix-ui/react-scroll-area": "1.2.10",
31+
"@radix-ui/react-select": "2.2.6",
32+
"@radix-ui/react-slot": "1.2.3",
33+
"@tailwindcss/vite": "4.1.12",
34+
"astro": "5.13.3",
35+
"astro-icon": "1.1.5",
3636
"balance-text": "3.3.1",
37-
"class-variance-authority": "0.7.0",
38-
"clsx": "2.1.0",
39-
"date-fns": "3.3.1",
40-
"framer-motion": "10.16.16",
41-
"lucide-react": "0.299.0",
42-
"react": "18.2.0",
43-
"react-dom": "18.2.0",
44-
"tailwind-merge": "2.2.1",
45-
"tailwindcss": "3.4.1",
37+
"class-variance-authority": "0.7.1",
38+
"clsx": "2.1.1",
39+
"date-fns": "4.1.0",
40+
"framer-motion": "12.23.12",
41+
"lucide-react": "0.541.0",
42+
"react": "19.1.1",
43+
"react-dom": "19.1.1",
44+
"tailwind-merge": "3.3.1",
45+
"tailwindcss": "4.1.12",
4646
"tailwindcss-animate": "1.0.7"
4747
},
4848
"devDependencies": {
49-
"@otjs/firebase-ace": "0.2.1",
50-
"@otjs/firebase-monaco": "0.2.1",
51-
"@tailwindcss/typography": "0.5.10",
52-
"@types/react": "18.2.51",
53-
"@types/react-dom": "18.2.18",
54-
"firebase": "9.15",
55-
"husky": "9.0.11",
56-
"lint-staged": "15.2.2",
57-
"mdast-util-toc": "7.0.0",
58-
"monaco-editor": "0.33.0",
59-
"prettier": "3.2.5",
60-
"prettier-plugin-astro": "0.13.0",
49+
"@otjs/firebase-ace": "0.2.2",
50+
"@otjs/firebase-monaco": "0.2.2",
51+
"@tailwindcss/typography": "0.5.16",
52+
"@types/react": "19.1.11",
53+
"@types/react-dom": "19.1.7",
54+
"firebase": "~12.1.0",
55+
"husky": "9.1.7",
56+
"lint-staged": "16.1.5",
57+
"mdast-util-toc": "7.1.0",
58+
"monaco-editor": "0.52.2",
59+
"prettier": "3.6.2",
60+
"prettier-plugin-astro": "0.14.1",
6161
"remark": "15.0.1",
62-
"sass": "1.71.1",
62+
"sass": "1.90.0",
6363
"unist-util-visit": "5.0.0"
64-
}
64+
},
65+
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
6566
}

0 commit comments

Comments
 (0)