From d19bb2a3e146c147f33e0fa3d47eaff7549ad644 Mon Sep 17 00:00:00 2001 From: danclay <18021681+danclay@users.noreply.github.com> Date: Fri, 16 Jun 2023 19:15:31 -0700 Subject: [PATCH 1/4] Update README.md Update README to redirect to new repo --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d7dfa4b..8adb95f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +**This repo will no longer be updated since eris-fleet has been moved to a monorepo to make adaptation of it for the [Oceanic library](https://github.com/OceanicJS/Oceanic) easier. This monorepo is [wumpus-navy](https://github.com/danclay/wumpus-navy). For the latest version see the monorepo. Eris-fleet is not deprecated and the npm package will be updated under the same name as before.** + +**The documentation has moved as well: [https://danclay.github.io/wumpus-navy/](https://danclay.github.io/wumpus-navy/)** +

Discord Library @@ -287,4 +291,4 @@ const Admiral = new Fleet(options); ## Using ES Modules -Instead of using the file path, you can use ES Modules by passing your BotWorker class to `options.BotWorker` and your ServiceWorker class to `ServiceWorker` in the `options.services` array. See [test/](https://github.com/danclay/eris-fleet/tree/master/test) for examples. \ No newline at end of file +Instead of using the file path, you can use ES Modules by passing your BotWorker class to `options.BotWorker` and your ServiceWorker class to `ServiceWorker` in the `options.services` array. See [test/](https://github.com/danclay/eris-fleet/tree/master/test) for examples. From 3231ecdcfb5839c773376be77df7a911dd26fb83 Mon Sep 17 00:00:00 2001 From: danclay <18021681+danclay@users.noreply.github.com> Date: Fri, 16 Jun 2023 19:18:44 -0700 Subject: [PATCH 2/4] Remove workflows and dependabot --- .github/dependabot.yml | 7 ------- .github/workflows/build-dev.yml | 34 --------------------------------- .github/workflows/ci.yml | 15 --------------- .github/workflows/publish.yml | 18 ----------------- 4 files changed, 74 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/build-dev.yml delete mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/publish.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 4872c5a..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: 2 -updates: -- package-ecosystem: npm - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 diff --git a/.github/workflows/build-dev.yml b/.github/workflows/build-dev.yml deleted file mode 100644 index 1921dff..0000000 --- a/.github/workflows/build-dev.yml +++ /dev/null @@ -1,34 +0,0 @@ -on: - push: - branches: - - development -name: Build Dev -jobs: - build: - name: Build dev package - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '14.x' - - run: yarn install - - run: yarn build - - name: Organize Directory - run: | - mkdir ./build - cp -r ./dist ./build - cp ./package.json ./build - cp ./yarn.lock ./build - echo "This is a built version of the [development branch](https://github.com/danclay/eris-fleet/tree/development). Please visit the development branch for documentation." >> ./build/README.md - git config user.name 'github-actions[bot]' - git config user.email 'github-actions[bot]@users.noreply.github.com' - - name: Deploy - uses: peaceiris/actions-gh-pages@v3.8.0 - with: - deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} - publish_branch: dev - publish_dir: ./build - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' - enable_jekyll: true \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index b1626b4..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Node.js CI -on: [push] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '14.x' - - run: yarn install --frozen-lockfile - - run: yarn build - - run: yarn test - env: - CI_CONFIG: ${{ secrets.CI_CONFIG }} \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index b7a6b11..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Publish Package -on: - release: - types: [created] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 - with: - node-version: '14.x' - registry-url: 'https://registry.npmjs.org' - - run: yarn - - run: yarn publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file From 41d4e7bfe3467c4c45bb7977c023becc85d90d3e Mon Sep 17 00:00:00 2001 From: danclay <18021681+danclay@users.noreply.github.com> Date: Fri, 16 Jun 2023 19:20:11 -0700 Subject: [PATCH 3/4] Update README.md add emoji :) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8adb95f..dd38b9a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -**This repo will no longer be updated since eris-fleet has been moved to a monorepo to make adaptation of it for the [Oceanic library](https://github.com/OceanicJS/Oceanic) easier. This monorepo is [wumpus-navy](https://github.com/danclay/wumpus-navy). For the latest version see the monorepo. Eris-fleet is not deprecated and the npm package will be updated under the same name as before.** +**⚠️ This repo will no longer be updated since eris-fleet has been moved to a monorepo to make adaptation of it for the [Oceanic library](https://github.com/OceanicJS/Oceanic) easier. This monorepo is [wumpus-navy](https://github.com/danclay/wumpus-navy). For the latest version see the monorepo. Eris-fleet is not deprecated and the npm package will be updated under the same name as before.** **The documentation has moved as well: [https://danclay.github.io/wumpus-navy/](https://danclay.github.io/wumpus-navy/)** From b47e383290027d3fef47a2aba53d16ea5b274f02 Mon Sep 17 00:00:00 2001 From: danclay <18021681+danclay@users.noreply.github.com> Date: Sun, 14 Jan 2024 20:44:19 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd38b9a..877bf3d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -**⚠️ This repo will no longer be updated since eris-fleet has been moved to a monorepo to make adaptation of it for the [Oceanic library](https://github.com/OceanicJS/Oceanic) easier. This monorepo is [wumpus-navy](https://github.com/danclay/wumpus-navy). For the latest version see the monorepo. Eris-fleet is not deprecated and the npm package will be updated under the same name as before.** +**⚠️ This repo will no longer be updated since eris-fleet has been moved to a monorepo to make adaptation of it for the [Oceanic library](https://github.com/OceanicJS/Oceanic) easier. This monorepo is [wumpus-navy](https://github.com/danclay/wumpus-navy). For the latest version see the monorepo. Eris-fleet the package is not deprecated and the npm package will be updated under the same name as before. This repo is deprecated.** **The documentation has moved as well: [https://danclay.github.io/wumpus-navy/](https://danclay.github.io/wumpus-navy/)**