Skip to content

Commit

Permalink
chore(deps-dev): upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
metonym committed Sep 14, 2024
1 parent 411d8f8 commit d89a565
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
id: playwright-cache
with:
path: /Users/runner/Library/Caches/ms-playwright
key: ${{ runner.os }}-playwright-1.45.0
key: ${{ runner.os }}-playwright-1.47.1

- name: Install dependencies
run: bun install
Expand All @@ -23,10 +23,10 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true'

- name: Run unit tests
run: bun test:types
run: bun run test:types

- name: Run e2e tests
run: bun test:e2e
run: bun run test:e2e

- name: Build docs
if: github.ref == 'refs/heads/master'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
registry-url: "https://registry.npmjs.org"

- name: Build package
run: bun package
run: bun run package

- name: Publish package
env:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"format": "bun --bun prettier --write . --cache"
},
"devDependencies": {
"@playwright/experimental-ct-svelte": "1.45.0",
"@playwright/test": "1.45.0",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/bun": "^1.1.6",
"@playwright/experimental-ct-svelte": "1.47.1",
"@playwright/test": "1.47.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/bun": "^1.1.9",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "3.59.1",
"svelte-check": "^3.8.4",
"svelte": "3.59.2",
"svelte-check": "^3.8.6",
"svelte-readme": "^3.6.3",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"importsNotUsedAsValues": "error",
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleResolution": "node",
Expand Down

0 comments on commit d89a565

Please sign in to comment.