Skip to content

Commit 4b340e6

Browse files
committed
Merge branch 'main' into main
Signed-off-by: Juan Sebastian Solano <[email protected]>
2 parents af69e41 + ff726e4 commit 4b340e6

File tree

323 files changed

+2981
-1654
lines changed

Some content is hidden

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

323 files changed

+2981
-1654
lines changed

.bun-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.2
1+
1.3.3

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Install Dependencies
2626
uses: ./.github/workflows/actions/install-dependencies
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939

4040
- name: Install Dependencies
4141
uses: ./.github/workflows/actions/install-dependencies
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151

5252
- name: Install Dependencies
5353
uses: ./.github/workflows/actions/install-dependencies
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v5
62+
uses: actions/checkout@v6
6363

6464
- name: Install Dependencies
6565
uses: ./.github/workflows/actions/install-dependencies
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: Checkout
74-
uses: actions/checkout@v5
74+
uses: actions/checkout@v6
7575

7676
- name: Install Dependencies
7777
uses: ./.github/workflows/actions/install-dependencies
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v5
92+
uses: actions/checkout@v6
9393
with:
9494
fetch-depth: 0
9595

@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- name: Checkout
111-
uses: actions/checkout@v5
111+
uses: actions/checkout@v6
112112

113113
- name: Install Dependencies
114114
uses: ./.github/workflows/actions/install-dependencies

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ dist
3737
target
3838
schemas
3939

40+
# Wxt
41+
web-ext.config.ts
42+
4043
# Validators
4144
.surfpool
4245
test-ledger
@@ -52,3 +55,6 @@ tmp
5255
# React Native
5356
android
5457
ios
58+
59+
# IDEs
60+
.vscode

.npmrc

Whitespace-only changes.

.vscode/settings.json

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

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ it('should create a network', async () => {
7171
const input = testNetworkInputCreate()
7272

7373
// ACT
74-
const result = await dbNetworkCreate(db, input) // REQUIRED: Results must be called result, result1, etc...
74+
const result = await networkCreate(db, input) // REQUIRED: Results must be called result, result1, etc...
7575

7676
// ASSERT
7777
expect(result).toBeDefined()
@@ -93,7 +93,7 @@ it('should throw an error with an invalid key', async () => {
9393
})
9494

9595
// ACT & ASSERT
96-
await expect(dbNetworkCreate(db, input)).rejects.toThrow()
96+
await expect(networkCreate(db, input)).rejects.toThrow()
9797
})
9898
```
9999

apps/api/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ export default {
1818
MyApiLive,
1919
HttpApiBuilder.middlewareCors({
2020
allowedOrigins: env.CORS_ORIGINS?.split(',').map((origin) => origin.trim()) ?? [],
21-
credentials: true,
22-
maxAge: 86400,
2321
}),
2422
HttpServer.layerContext,
2523
),

apps/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
33
"@effect/cli": "0.72.1",
4-
"@effect/cluster": "0.52.11",
5-
"@effect/platform-bun": "0.83.0",
4+
"@effect/cluster": "0.53.5",
5+
"@effect/platform-bun": "0.84.0",
66
"@workspace/tui": "workspace:*",
77
"effect": "catalog:"
88
},

apps/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@wxt-dev/auto-icons": "^1.1.0",
1919
"@wxt-dev/module-react": "^1.1.3",
2020
"typescript": "catalog:",
21-
"wxt": "^0.20.6"
21+
"wxt": "catalog:"
2222
},
2323
"name": "extension",
2424
"private": true,

apps/extension/src/entrypoints/popup/main.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { ShellFeature } from '@workspace/shell/shell-feature'
22
import { StrictMode } from 'react'
33
import { createRoot } from 'react-dom/client'
4+
import { browser } from 'wxt/browser'
45

56
const root = document.getElementById('root')
67
if (!root) {
@@ -11,6 +12,6 @@ if (!root) {
1112
// Use at your own risk
1213
createRoot(root).render(
1314
<StrictMode>
14-
<ShellFeature context="Popup" />
15+
<ShellFeature browser={browser} context="Popup" />
1516
</StrictMode>,
1617
)

0 commit comments

Comments
 (0)