-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(port-queue): move to deno 2 and refactor usages
- Loading branch information
1 parent
af4cca9
commit 2aca277
Showing
11 changed files
with
91 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
# README | ||
<h1 align="center">hyper-port-queue</h1> | ||
<p align="center">Port for the Queue Service in the <a href="https://hyper.io/">hyper</a> Service Framework</p> | ||
</p> | ||
<p align="center"> | ||
<a href="https://nest.land/package/hyper-port-queue"><img src="https://nest.land/badge.svg" alt="Nest Badge" /></a> | ||
<a href="https://jsr.io/@hyper63/port-queue"><img src="https://jsr.io/badges/@hyper63/port-queue" alt="" /></a> | ||
<a href="https://github.com/hyper63/hyper63/actions/workflows/port-queue.yml"><img src="https://github.com/hyper63/hyper63/actions/workflows/port-queue.yml/badge.svg" alt="Test" /></a> | ||
</p> | ||
|
||
Queue Port | ||
|
||
- Create a Queue | ||
- Delete a Queue | ||
- Post a JOB to a Queue | ||
- Get Jobs from a queue | ||
- Post a Job to a Queue | ||
- Get Jobs from a Queue | ||
- Cancel a Job | ||
- Retry a Job | ||
|
||
## Documentation | ||
<!-- toc --> | ||
|
||
https://docs.hyper63.com | ||
- [Test](#test) | ||
|
||
## Dev Environment | ||
<!-- tocstop --> | ||
|
||
### Build | ||
## Test | ||
|
||
``` | ||
yarn build | ||
``` | ||
|
||
### Test | ||
|
||
``` | ||
yarn test | ||
deno task test | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "@hyper63/port-queue", | ||
"version": "0.3.0", | ||
"exports": "./mod.ts", | ||
"tasks": { | ||
"test": "deno lint && deno fmt --check && deno test --no-check", | ||
"cache": "deno install --entrypoint mod.ts" | ||
}, | ||
"imports": { | ||
"zod": "npm:[email protected]", | ||
"@std/assert": "jsr:@std/assert@1" | ||
}, | ||
"fmt": { | ||
"include": ["./"], | ||
"lineWidth": 100, | ||
"singleQuote": true, | ||
"semiColons": false | ||
}, | ||
"lint": { | ||
"rules": { | ||
"exclude": [ | ||
"no-slow-types" | ||
] | ||
} | ||
}, | ||
"publish": { | ||
"include": [ | ||
"*" | ||
], | ||
"exclude": [ | ||
"**/*.test.ts" | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"$schema": "https://x.nest.land/[email protected]/src/schema.json", | ||
"name": "hyper-port-queue", | ||
"entry": "./mod.ts", | ||
"description": "Hyper service framework port for Queue adapters", | ||
"description": "Port for the Queue Service in the hyper Service Framework", | ||
"homepage": "https://github.com/hyper63/hyper", | ||
"repo": "https://github.com/hyper63/hyper", | ||
"version": "0.3.0", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters