🧹 remove unnecessary files

This commit is contained in:
kawamataryo 2023-10-11 07:34:17 +09:00
parent 50f296b39f
commit 9d0506d2c3
2 changed files with 2 additions and 22 deletions

View File

@ -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

View File

@ -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)
})()