From 9d0506d2c3a50d8ee7304ae7017ab9351a48a218 Mon Sep 17 00:00:00 2001 From: kawamataryo Date: Wed, 11 Oct 2023 07:34:17 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20remove=20unnecessary=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 4 ++-- scripts/client.ts | 20 -------------------- 2 files changed, 2 insertions(+), 22 deletions(-) delete mode 100644 scripts/client.ts diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 59f6b5a..36d2d3e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -66,8 +66,8 @@ jobs: - name: Build the extension run: npm run build && npm run build:firefox - - name: Package the extension into a zip artifact - run: npm run package && npm run package:firefox + # - name: Package the extension into a zip artifact + # run: npm run package && npm run package:firefox - name: Publish to Extension Store uses: PlasmoHQ/bpp@v3 diff --git a/scripts/client.ts b/scripts/client.ts deleted file mode 100644 index 0719f62..0000000 --- a/scripts/client.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { BskyClient } from "../src/lib/bskyClient" - -const searchBskyUsers = async () => { - const agent = await BskyClient.createAgent({ - identifier: process.env.BSKY_IDENTIFIER as string, - password: process.env.BSKY_PASSWORD as string, - }) - - const result = await agent.searchUser({ - term: "llamaindex", - limit: 3, - }) - - return result -} - -(async () => { - const result = await searchBskyUsers() - console.log(result) -})()