diff --git a/.github/workflows/nestland.yml b/.github/workflows/nestland.yml deleted file mode 100644 index fbb97d5d9..000000000 --- a/.github/workflows/nestland.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Ship Nest.Land - -on: - create: - ref_type: "tag" - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Setup repo - uses: actions/checkout@v2 - - - name: Setup Deno - uses: denolib/setup-deno@v2 - - - name: Publish module - run: | - deno install -A --unstable https://x.nest.land/eggs@0.3.2/eggs.ts - eggs link ${{ secrets.NESTAPIKEY }} - eggs publish --yes --no-check --version $(git describe --tags $(git rev-list --tags --max-count=1)) diff --git a/README.md b/README.md index c48882517..ed048b88b 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,9 @@ > Discord API library for Deno -[![Discord](https://img.shields.io/discord/223909216866402304?color=7289da&logo=discord&logoColor=dark)](https://discord.gg/J4NqJ72) +[![Discord](https://img.shields.io/discord/785384884197392384?color=7289da&logo=discord&logoColor=dark)](https://discord.com/invite/5vBgXk3UcZ) ![Lint](https://github.com/discordeno/discordeno/workflows/Lint/badge.svg) ![Test](https://github.com/discordeno/discordeno/workflows/Test/badge.svg) -![nest badge](https://nest.land/badge.svg) - First-class TypeScript & JavaScript support - Security & stable @@ -32,7 +31,7 @@ If you do not wish to use a boilerplate, you may continue reading. Here's a minimal example to get started with: ```typescript -import StartBot, { sendMessage, Intents } from "https://x.nest.land/Discordeno@9.4.0/mod.ts"; +import StartBot, { sendMessage, Intents } from "https://deno.land/x/discordeno@9.4.0/mod.ts"; StartBot({ token: "BOT TOKEN", diff --git a/egg.yml b/egg.yml deleted file mode 100644 index 6a7a432fa..000000000 --- a/egg.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Discordeno -description: >- - Discord API library for Deno (officially vetted library by - Discord). -homepage: https://discordeno.mod.land -stable: true -entry: ./mod.ts -repository: 'https://github.com/Skillz4Killz/Discordeno' -files: - - ./src/**/* - - LICENSE - - README.md - - tsconfig.json - - ./deps.ts - - ./mod.ts -ignore: - - .git*/** - - .vscode/** - - eggs-debug.log -checkAll: false -unlisted: false