Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/yarn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: npm install -g yarn
- run: corepack enable
- uses: actions/setup-node@v4
with:
cache: "yarn"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"lint": "yarn lint:biome && yarn lint:tsc && yarn lint:unused",
"lint:biome": "biome check .",
"lint:tsc": "tsc --noEmit",
"lint:unused": "ts-unused-exports tsconfig.json --ignoreFiles=vite/.*.ts"
"lint:unused": "ts-unused-exports tsconfig.json --ignoreFiles='vite/.*.ts'"
},
"dependencies": {
"@devtools-ds/object-inspector": "^1.2.1",
Expand Down Expand Up @@ -59,7 +59,7 @@
"vite": "^6.3.4",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-tsconfig-paths": "^5.1.4",
"web-ext": "^8.6.0",
"web-ext": "^8.7.1",
"yargs": "^17.7.2"
},
"resolutions": {
Expand Down
2 changes: 1 addition & 1 deletion src/panel/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const store: StateCreator<Store> = (set, get) => ({

export const useStore = create<Store>()(subscribeWithSelector(store));

runtime.onMessage.addListener(async (_msg) => {
runtime.onMessage.addListener(async (_msg: any) => {
const msg: any = _msg as any;
if (msg?.tabId !== tabId) return;

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.tsbuildinfo

Large diffs are not rendered by default.

Loading