Skip to content

Commit 1ec89f0

Browse files
committed
chore: up
1 parent 11b0f92 commit 1ec89f0

14 files changed

Lines changed: 32 additions & 34 deletions

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
packages:
2-
- cli
3-
- plugins/*
4-
51
allowBuilds:
62
'@anthropic-ai/claude-code': true
73
'@sentry/cli': true
@@ -10,34 +6,34 @@ allowBuilds:
106
opencode-ai: true
117
simple-git-hooks: true
128
workerd: true
13-
149
auditConfig:
1510
ignoreGhsas:
1611
# false positive — matches npm "cli" package, not our "curl.md" workspace
1712
- GHSA-6cpc-mj5c-m9rq
18-
13+
blockExoticSubdeps: true
1914
catalog:
2015
hono: ^4.12.16
21-
2216
minimumReleaseAge: 1440
23-
2417
minimumReleaseAgeExclude:
2518
- incur
26-
2719
overrides:
2820
basic-ftp@<=5.3.0: 5.3.1
21+
fast-uri@<=3.1.1: 3.1.2
22+
fast-xml-builder@<=1.1.6: 1.1.7
2923
fast-xml-parser@<5.7.0: 5.7.0
3024
ip-address@<10.1.1: 10.1.1
3125
uuid@<14.0.0: 14.0.0
32-
26+
packages:
27+
- cli
28+
- plugins/*
3329
# TODO: Remove once issue is fixed
3430
# https://github.com/TanStack/router/pull/7115
3531
patchedDependencies:
3632
'@tanstack/react-router@1.168.25': config/patches/@tanstack__react-router@1.168.7.patch
3733
'@tanstack/router-core@1.168.17': config/patches/@tanstack__router-core@1.168.6.patch
38-
34+
strictDepBuilds: true
35+
strictPeerDependencies: true
3936
trustPolicy: no-downgrade
40-
4137
trustPolicyExclude:
4238
- effect@4.0.0-beta.48
4339
- react-redux@9.2.0

test/e2e.global.setup.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async function globalSetup() {
1212
console.log('e2e: started database')
1313

1414
console.log('e2e: starting github emulator')
15-
const emulator = await createEmulator({
15+
const gitHubEmulator = await createEmulator({
1616
service: 'github',
1717
port: await getAvailablePort(),
1818
seed: {
@@ -42,8 +42,8 @@ export default async function globalSetup() {
4242
console.log('e2e: starting dev server')
4343
const server = await startDevServer(container.getConnectionUri(), {
4444
...env,
45-
GH_API_URL: emulator.url,
46-
GH_URL: emulator.url,
45+
GH_API_URL: gitHubEmulator.url,
46+
GH_URL: gitHubEmulator.url,
4747
STRIPE_API_URL: stripeEmulator.url,
4848
})
4949
console.log('e2e: started dev server')
@@ -54,7 +54,7 @@ export default async function globalSetup() {
5454

5555
return async () => {
5656
server.stop()
57-
await emulator.close()
57+
await gitHubEmulator.close()
5858
await stripeEmulator.close()
5959
await container.stop()
6060
}
File renamed without changes.

test/e2e/auth-device.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from '@playwright/test'
2-
import { test } from '#test/e2e-utils.ts'
2+
import { test } from '#test/e2e.utils.ts'
33

44
test('redirects to login when not authenticated', async ({ page }) => {
55
await page.goto('/auth/device?user_code=ABCD1234')

test/e2e/create-org.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from '@playwright/test'
2-
import { test } from '#test/e2e-utils.ts'
2+
import { test } from '#test/e2e.utils.ts'
33

44
test('creates organization from account switcher', async ({ factory, page, setSession }) => {
55
const account = await factory.account.insert({})

test/e2e/credits-add.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from '@playwright/test'
2-
import { test } from '#test/e2e-utils.ts'
2+
import { test } from '#test/e2e.utils.ts'
33

44
test('invalid payment session shows not found', async ({ page }) => {
55
await page.goto('/credits/add/nonexistent-id')

test/e2e/dashboard.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from '@playwright/test'
2-
import { test } from '#test/e2e-utils.ts'
2+
import { test } from '#test/e2e.utils.ts'
33

44
test('shows stats with zero values for new account', async ({ factory, page, setSession }) => {
55
const account = await factory.account.insert({})

test/e2e/docs.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect } from '@playwright/test'
22
import * as Cookie from '#lib/cookie.ts'
3-
import { test } from '#test/e2e-utils.ts'
3+
import { test } from '#test/e2e.utils.ts'
44

55
test('/docs tab click keeps scroll position on first sync', async ({ page }) => {
66
await page.goto('/docs/dev/kitchen-sink')

test/e2e/entry-server.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from '@playwright/test'
2-
import { test } from '#test/e2e-utils.ts'
2+
import { test } from '#test/e2e.utils.ts'
33

44
test('/api/health passes through to the API handler', async ({ request }) => {
55
const res = await request.get('/api/health')

0 commit comments

Comments
 (0)