Skip to content
Draft
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
3 changes: 3 additions & 0 deletions .github/workflows/changeset-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
with:
fetch-depth: 0

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
Comment on lines +21 to +23
Copy link

Copilot AI Apr 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actions/setup-node pins Node 22 here, but the repo declares Node >=24 (package.json engines) and .nvmrc is 24.11.1. To keep CI consistent with the supported runtime, set this to Node 24 (ideally via node-version-file: .nvmrc).

Copilot uses AI. Check for mistakes.

- uses: oven-sh/setup-bun@v2
with:
Expand Down Expand Up @@ -52,6 +55,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
Comment on lines +58 to +60
Copy link

Copilot AI Apr 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same Node version mismatch as above: this job pins Node 22, but the repo’s declared Node version is >=24 / .nvmrc 24.11.1. Align this to Node 24 (prefer node-version-file: .nvmrc) to avoid runtime inconsistencies between local/dev and CI.

Copilot uses AI. Check for mistakes.

- uses: oven-sh/setup-bun@v2
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/example-snake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22

- name: Generate Snake Animation
uses: miccy/snake-evolution@v1
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/generate-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down
5 changes: 4 additions & 1 deletion apps/web/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ import { defineConfig } from "astro/config";
export default defineConfig({
site: "https://snake-evolution.dev",
vite: {
plugins: [tailwindcss()],
plugins: [
// @ts-expect-error
tailwindcss(),
],
},
integrations: [
starlight({
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"clean": "rm -rf dist .astro node_modules"
},
"dependencies": {
"@astrojs/starlight": "^0.37.4",
"@astrojs/starlight": "^0.38.3",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.17.0",
"astro": "^6.1.8",
"sharp": "^0.34.2",
"tailwindcss": "^4.1.18"
},
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
433 changes: 229 additions & 204 deletions bun.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@changesets/cli": "^2.29.8",
"@types/bun": "1.3.7",
"@biomejs/biome": "^2.4.12",
"@changesets/cli": "^2.31.0",
"@types/bun": "1.3.12",
"jsonc-parser": "^3.3.1",
"markdownlint-cli2": "^0.20.0",
"turbo": "^2.8.0",
"typescript": "5.9.3",
"yaml": "2.8.2"
"markdownlint-cli2": "^0.22.0",
"turbo": "^2.9.6",
"typescript": "6.0.3",
"yaml": "2.8.3"
},
"engines": {
"node": ">=24",
Expand Down
2 changes: 1 addition & 1 deletion packages/biome-config/biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
"root": false,
"linter": {
"enabled": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import type {
import type { GlassTheme } from "./themes";
import { getGlassFilterDefs, getTheme, isGlassTheme, themes } from "./themes";

export type { GlassTheme };
// Re-export themes
export { getTheme, isGlassTheme, themes };
export type { GlassTheme };

// ============================================
// Rendering Constants
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"declarationMap": true,
"noEmit": true,
"types": ["bun"],
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"@snake-evolution/types": ["./packages/types/src"],
Expand Down
Loading