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 Aug 8, 2024
1 parent 9544aa8 commit a8e3e7d
Show file tree
Hide file tree
Showing 18 changed files with 1,053 additions and 989 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ inputs:
node-version:
description: Node version to use
required: false
default: '18.x'
default: '20.x'
pnpm-version:
description: PNPM version to use
required: false
python-version:
description: Python version to use
required: false
default: '3.11'
default: '3.12'
poetry-version:
description: Poetry version to use
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [18.x, 20.x, 21.x]
node-version: [20.x, 22.x]
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: Setup Environment
uses: ./.github/actions/setup-environment
with:
node-version: 18.x
python-version: '3.11'
node-version: 20.x
python-version: '3.12'
- name: Install dependencies
run: pnpm install
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions apps/api/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
hooks:
- id: add-trailing-comma
- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py311-plus]
Expand All @@ -28,10 +28,10 @@ repos:
hooks:
- id: autopep8
- repo: https://github.com/PyCQA/flake8
rev: 7.1.0
rev: 7.1.1
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.11.1
hooks:
- id: mypy
12 changes: 6 additions & 6 deletions apps/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
"@tsconfig/svelte": "^5.0.4",
"@types/webextension-polyfill": "^0.10.7",
"@yd/config": "workspace:*",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.4",
"svelte-check": "^3.8.5",
"tailwindcss": "^3.4.8",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"wxt": "^0.18.12"
"typescript": "^5.5.4",
"wxt": "^0.19.4"
}
}
2 changes: 1 addition & 1 deletion apps/extension/src/lib/components/StatusBadge.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
};
$: text = status.postprocessor
? postProcessorLookup[status.postprocessor?.toLowerCase()] ?? status.state
? (postProcessorLookup[status.postprocessor?.toLowerCase()] ?? status.state)
: status.state;
</script>

Expand Down
4 changes: 2 additions & 2 deletions apps/extension/src/lib/context-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class ContextService {
await sendMessageIgnoreReturn('VideoChanged', { tab, video });
this.#loading = false;
return;
} catch (e) {
} catch {
this.#loading = false;
return;
}
Expand Down Expand Up @@ -218,7 +218,7 @@ class ContextService {
const session = await SessionService.getSessionValidate();
await browser.storage.sync.set({ [SESSION_ID_KEY]: session?.id });
this.#session = session;
} catch (err) {
} catch {
// Attempt to setup a new session until successful
let session: Session | undefined;
while (session === undefined) {
Expand Down
2 changes: 1 addition & 1 deletion apps/extension/src/lib/messaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export async function sendMessageIgnoreReturn<TType extends keyof MessagingMap>(
): Promise<void> {
try {
await sendMessage(type, data, tabId);
} catch (e) {
} catch {
// Ignore possible error when attempting to send the message.
}
}
4 changes: 3 additions & 1 deletion apps/extension/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import preset from '@yd/config/tailwind';

/** @type {import('tailwindcss').Config} */
export default {
presets: [require('@yd/config/tailwind')]
presets: [preset]
};
14 changes: 7 additions & 7 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/kit": "^2.5.20",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@yd/config": "workspace:*",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.4",
"svelte-check": "^3.8.5",
"tailwindcss": "^3.4.8",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3"
"typescript": "^5.5.4",
"vite": "^5.4.0"
}
}
2 changes: 1 addition & 1 deletion apps/web/src/lib/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function setupSession(): Promise<void> {
// Attempt to use existing session if present.
const session = await SessionService.getSessionValidate();
sessionStorage.setItem(SESSION_ID_KEY, session.id);
} catch (err) {
} catch {
// Attempt to setup a new session until successful
let success = false;
while (!success) {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/lib/components/StatusBadge.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
};
$: text = status.postprocessor
? postProcessorLookup[status.postprocessor?.toLowerCase()] ?? status.state
? (postProcessorLookup[status.postprocessor?.toLowerCase()] ?? status.state)
: status.state;
</script>

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"husky": "^9.0.11"
"husky": "^9.1.4"
},
"packageManager": "[email protected]+sha512.14e915759c11f77eac07faba4d019c193ec8637229e62ec99eefb7cf3c3b75c64447882b7c485142451ee3a6b408059cdfb7b7fa0341b975f12d0f7629c71195",
"engines": {
"pnpm": ">=8",
"node": ">=18"
"node": ">=20"
}
}
6 changes: 3 additions & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"format": "prettier --write ."
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.48.2",
"@hey-api/openapi-ts": "^0.52.3",
"@yd/api": "workspace:*",
"@yd/config": "workspace:*",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}
18 changes: 9 additions & 9 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
"format": "prettier --write ."
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tailwindcss/forms": "^0.5.7",
"eslint": "^9.6.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.41.0",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"eslint-plugin-svelte": "^2.43.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte-eslint-parser": "^0.39.2",
"tailwindcss": "^3.4.4",
"typescript-eslint": "^7.15.0"
"svelte-eslint-parser": "^0.41.0",
"tailwindcss": "^3.4.8",
"typescript-eslint": "^8.0.1"
}
}
16 changes: 8 additions & 8 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/kit": "^2.5.20",
"@sveltejs/package": "^2.3.2",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@yd/config": "workspace:*",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"publint": "^0.2.8",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"publint": "^0.2.9",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.4",
"svelte-check": "^3.8.5",
"tailwindcss": "^3.4.8",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3"
"typescript": "^5.5.4",
"vite": "^5.4.0"
}
}
4 changes: 3 additions & 1 deletion packages/ui/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import preset from '@yd/config/tailwind';

/** @type {import('tailwindcss').Config} */
export default {
presets: [require('@yd/config/tailwind')]
presets: [preset]
};
Loading

0 comments on commit a8e3e7d

Please sign in to comment.