* health check

* Update Dockerfile

* simplifying the deployment

* Update Bot.js

makes the find team command public

* test (#9)

* Dev (#7)

* health check

* Update Dockerfile

* simplifying the deployment

* Dev (#8)

* health check

* Update Dockerfile

* simplifying the deployment

* Update Bot.js

makes the find team command public

* Update PlayerService.js

* massive update????

could break stuff

* Update Bot.js

update
This commit is contained in:
VinceC
2025-07-07 21:38:19 -05:00
committed by GitHub
parent 0c86148835
commit 3453be6947
1742 changed files with 28844 additions and 67711 deletions

View File

@@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file.
# [@sapphire/async-queue@1.5.4](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.3...@sapphire/async-queue@1.5.4) - (2024-11-02)
## 🏠 Refactor
- Resolve several sonar issues ([ba915f9](https://github.com/sapphiredev/utilities/commit/ba915f93ce0907828ba17b2d5ae009631ceb860d)) ([#823](https://github.com/sapphiredev/utilities/pull/823) by @favna)
## 🐛 Bug Fixes
- Move browser imports ([100ffb0](https://github.com/sapphiredev/utilities/commit/100ffb0a2471bb9f74cc580d282d11059e1a0a68)) ([#826](https://github.com/sapphiredev/utilities/pull/826) by @kyranet)
# [@sapphire/async-queue@1.5.3](https://github.com/sapphiredev/utilities/compare/@sapphire/async-queue@1.5.2...@sapphire/async-queue@1.5.3) - (2024-07-23)
## 🐛 Bug Fixes

View File

@@ -7,7 +7,6 @@
**Sequential asynchronous lock-based queue for promises.**
[![GitHub](https://img.shields.io/github/license/sapphiredev/utilities)](https://github.com/sapphiredev/utilities/blob/main/LICENSE.md)
[![codecov](https://codecov.io/gh/sapphiredev/utilities/branch/main/graph/badge.svg?token=OEGIV6RFDO)](https://codecov.io/gh/sapphiredev/utilities)
[![npm bundle size](https://img.shields.io/bundlephobia/min/@sapphire/async-queue?logo=webpack&style=flat-square)](https://bundlephobia.com/result?p=@sapphire/async-queue)
[![npm](https://img.shields.io/npm/v/@sapphire/async-queue?color=crimson&logo=npm&style=flat-square)](https://www.npmjs.com/package/@sapphire/async-queue)

File diff suppressed because one or more lines are too long

View File

@@ -15,7 +15,7 @@ declare class AsyncQueue {
/**
* The promises array
*/
private promises;
private readonly promises;
/**
* Waits for last promise and queues a new one
* @example

View File

@@ -15,7 +15,7 @@ declare class AsyncQueue {
/**
* The promises array
*/
private promises;
private readonly promises;
/**
* Waits for last promise and queues a new one
* @example

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "@sapphire/async-queue",
"version": "1.5.3",
"version": "1.5.5",
"description": "Sequential asynchronous lock-based queue for promises",
"author": "@sapphire",
"license": "MIT",
@@ -31,7 +31,7 @@
"prepack": "yarn build",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"gen-index": "tsx ../../scripts/gen-index.cts -w async-queue"
"gen-index": "tsx ../../scripts/gen-index.cts async-queue --write"
},
"repository": {
"type": "git",
@@ -62,13 +62,13 @@
"access": "public"
},
"devDependencies": {
"@favware/cliff-jumper": "^4.0.3",
"@vitest/coverage-v8": "^2.0.3",
"tsup": "^8.2.1",
"tsx": "^4.16.2",
"@favware/cliff-jumper": "^5.0.0",
"@vitest/coverage-v8": "^2.1.4",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typedoc": "^0.25.13",
"typedoc-json-parser": "^10.0.0",
"typedoc-json-parser": "^10.1.6",
"typescript": "~5.4.5",
"vitest": "^2.0.3"
"vitest": "^2.1.4"
}
}