mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
fix(build): add missing vite-plugin-solid dep and fix Uint8Array body type
- Add vite-plugin-solid to procrastination-buster plugin dependencies - Wrap Uint8Array in Blob for fetch body to fix TypeScript error with newer @types/node
This commit is contained in:
parent
73ee21fd6e
commit
63d11b3ac8
2 changed files with 4 additions and 4 deletions
|
|
@ -14,13 +14,13 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@solidjs/router": "^0.14.10",
|
||||
"@super-productivity/vite-plugin": "file:../../vite-plugin",
|
||||
"@types/node": "^22.15.33",
|
||||
"archiver": "^7.0.1",
|
||||
"solid-js": "^1.9.7",
|
||||
"typescript": "^5.8.3",
|
||||
"vite": "^7.2.0",
|
||||
"vite-plugin-solid": "^2.11.10",
|
||||
"archiver": "^7.0.1",
|
||||
"@super-productivity/vite-plugin": "file:../../vite-plugin"
|
||||
"vite-plugin-solid": "^2.11.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"@super-productivity/plugin-api": "file:../../plugin-api"
|
||||
|
|
|
|||
|
|
@ -430,7 +430,7 @@ export class SuperSyncProvider
|
|||
const response = await fetch(url, {
|
||||
method: 'POST',
|
||||
headers,
|
||||
body: compressedBody,
|
||||
body: new Blob([compressedBody as BlobPart]),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue