From 0b89c62364bd35a7dab8044d451935a878906380 Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Wed, 28 Aug 2024 22:34:17 -0700 Subject: [PATCH] x --- .github/workflows/link_check.yml | 1 - package.json | 2 +- scripts/{check-links.js => check-links.cjs} | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename scripts/{check-links.js => check-links.cjs} (100%) diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml index 5d184372..4a910fff 100644 --- a/.github/workflows/link_check.yml +++ b/.github/workflows/link_check.yml @@ -54,5 +54,4 @@ jobs: env: CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} run: | - chmod +x scripts/check-links.js yarn check-links \ No newline at end of file diff --git a/package.json b/package.json index 12cac103..76591446 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "format": "turbo run format", "format:check": "turbo run format:check", "release": "node scripts/release_workspace.cjs --workspace", - "check-links": "node scripts/check-links.js" + "check-links": "node scripts/check-links.cjs" }, "author": "LangChain", "license": "MIT", diff --git a/scripts/check-links.js b/scripts/check-links.cjs similarity index 100% rename from scripts/check-links.js rename to scripts/check-links.cjs