Skip to content

Commit 5789ce9

Browse files
committed
chore: wip
1 parent b83f35c commit 5789ce9

File tree

170 files changed

+380
-175
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+380
-175
lines changed

.vscode/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ bunfig
88
bunx
99
changelogen
1010
changelogithub
11+
chartjs
1112
chrisbbreuer
1213
codecov
1314
commitlint

bun.lock

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dashboard/src/App.vue

Lines changed: 0 additions & 53 deletions
This file was deleted.

dashboard/src/views/DashboardView.vue

Lines changed: 0 additions & 92 deletions
This file was deleted.

examples/advanced-features.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BatchProcessor, Queue, QueueGroup, QueueObservable } from '../src'
1+
import { BatchProcessor, Queue, QueueGroup, QueueObservable } from '../packages/bun-queue/src'
22

33
async function main() {
44
console.log('🚀 Advanced Features Example - Groups, Observables, and Batches')

examples/advanced.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Queue, RateLimiter } from '../src'
1+
import { Queue, RateLimiter } from '../packages/bun-queue/src'
22

33
// Define job data types
44
interface EmailJob {

examples/basic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Queue } from '../src'
1+
import { Queue } from '../packages/bun-queue/src'
22

33
// Define job data type
44
interface EmailJob {

examples/cron-jobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Queue } from '../src'
1+
import { Queue } from '../packages/bun-queue/src'
22

33
interface NotificationData {
44
title: string

examples/distributed-locks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Queue, DistributedLock } from '../src'
1+
import { Queue, DistributedLock } from '../packages/bun-queue/src'
22

33
interface TaskData {
44
id: string
@@ -141,4 +141,4 @@ async function main() {
141141
console.log('\n👋 All tasks completed, queue closed')
142142
}
143143

144-
main().catch(console.error)
144+
main().catch(console.error)

examples/key-rate-limiting.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Queue, RateLimiter } from '../src'
1+
import { Queue, RateLimiter } from '../packages/bun-queue/src'
22

33
interface EmailData {
44
userId: string
@@ -78,4 +78,4 @@ async function main() {
7878
main().catch(error => {
7979
console.error('Error in example:', error)
8080
process.exit(1)
81-
})
81+
})

0 commit comments

Comments
 (0)