From 2d9ed06367516daa184ecf70bb0b2451c06da8d1 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 31 Jul 2025 01:25:24 -0400 Subject: [PATCH] ci: scripts --- .github/workflows/stats.yml | 2 +- package.json | 2 +- {scripts => script}/hooks | 0 {scripts => script}/hooks.bat | 0 {scripts => script}/publish.ts | 0 {scripts => script}/release | 0 {scripts => script}/stats.ts | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {scripts => script}/hooks (100%) rename {scripts => script}/hooks.bat (100%) rename {scripts => script}/publish.ts (100%) rename {scripts => script}/release (100%) rename {scripts => script}/stats.ts (100%) diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml index 188996aa..8ad02d25 100644 --- a/.github/workflows/stats.yml +++ b/.github/workflows/stats.yml @@ -21,7 +21,7 @@ jobs: bun-version: latest - name: Run stats script - run: bun scripts/stats.ts + run: bun script/stats.ts - name: Commit stats run: | diff --git a/package.json b/package.json index d1e51278..3120b1f8 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "dev": "bun run packages/opencode/src/index.ts", "typecheck": "bun run --filter='*' typecheck", "stainless": "./scripts/stainless", - "postinstall": "./scripts/hooks" + "postinstall": "./script/hooks" }, "workspaces": { "packages": [ diff --git a/scripts/hooks b/script/hooks similarity index 100% rename from scripts/hooks rename to script/hooks diff --git a/scripts/hooks.bat b/script/hooks.bat similarity index 100% rename from scripts/hooks.bat rename to script/hooks.bat diff --git a/scripts/publish.ts b/script/publish.ts similarity index 100% rename from scripts/publish.ts rename to script/publish.ts diff --git a/scripts/release b/script/release similarity index 100% rename from scripts/release rename to script/release diff --git a/scripts/stats.ts b/script/stats.ts similarity index 100% rename from scripts/stats.ts rename to script/stats.ts