Skip to content

Commit

Permalink
chore(deps): update project dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Dec 26, 2024
1 parent a8931d3 commit b57b106
Show file tree
Hide file tree
Showing 9 changed files with 744 additions and 841 deletions.
6 changes: 3 additions & 3 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"vite": "^6.0.5",
"vue-tsc": "^2.1.10"
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vue-tsc": "^2.2.0"
}
}
4 changes: 2 additions & 2 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/eslint-config-typescript": "^14.2.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript-eslint": "^8.18.1"
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"tailwindcss-primeui": "^0.3.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/player/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"vite": "^6.0.5",
"vue-tsc": "^2.1.10"
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vue-tsc": "^2.2.0"
}
}
2 changes: 1 addition & 1 deletion packages/providers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"devDependencies": {
"@cq/config": "workspace:*",
"@types/node": "^22.10.2",
"typescript": "^5.6.3"
"typescript": "^5.7.2"
}
}
2 changes: 1 addition & 1 deletion packages/services/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"@cq/config": "workspace:*",
"@types/node": "^22.10.2",
"@types/tmi.js": "^1.8.6",
"typescript": "^5.6.3"
"typescript": "^5.7.2"
}
}
2 changes: 1 addition & 1 deletion packages/sources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"devDependencies": {
"@cq/config": "workspace:*",
"@types/node": "^22.10.2",
"typescript": "^5.6.3"
"typescript": "^5.7.2"
}
}
13 changes: 8 additions & 5 deletions packages/sources/src/__tests__/utils.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, expect, it } from 'vitest'

import { getAllURLsFromText, toSubmitterUUID } from '../utils'
import { ClipSource } from '../types'
import { getAllURLsFromText, toSubmitterUUID } from '../utils'

describe('utils.ts', () => {
it.each([
Expand All @@ -27,8 +27,11 @@ describe('utils.ts', () => {

it.each([
[ClipSource.APPLICATION, 'testuser', 'clip queue application:testuser'],
[ClipSource.TWITCH_CHAT, 'testuser', 'twitch chat:testuser'],
])('returns a uuid for a given clip', (source: ClipSource, submitter: string, expected: string) => {
expect(toSubmitterUUID(source, submitter)).toEqual(expected)
})
[ClipSource.TWITCH_CHAT, 'testuser', 'twitch chat:testuser']
])(
'returns a uuid for a given clip',
(source: ClipSource, submitter: string, expected: string) => {
expect(toSubmitterUUID(source, submitter)).toEqual(expected)
}
)
})
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"vite": "^6.0.5",
"vue-tsc": "^2.1.10"
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vue-tsc": "^2.2.0"
}
}
Loading

0 comments on commit b57b106

Please sign in to comment.