Skip to content

Commit

Permalink
Upgraded non-breaking dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Azarattum committed Apr 21, 2024
1 parent 7a6ff43 commit d4a8c66
Show file tree
Hide file tree
Showing 21 changed files with 860 additions and 872 deletions.
8 changes: 4 additions & 4 deletions apps/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
"gretchen": "^1.5.1",
"libfun": "workspace:*",
"string-similarity-js": "^2.1.4",
"superstruct": "^1.0.3",
"superstruct": "^1.0.4",
"ws": "^8.16.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/ws": "^8.5.10",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-node-externals": "^7.0.1",
"vite": "5.1.1",
"vite-node": "1.2.2"
"rollup-plugin-node-externals": "^7.1.1",
"vite": "5.2.10",
"vite-node": "1.5.0"
}
}
6 changes: 3 additions & 3 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"@amadeus-music/protocol": "workspace:*",
"@amadeus-music/ui": "workspace:*",
"@amadeus-music/util": "workspace:*",
"@trpc/client": "^10.45.1",
"@trpc/server": "^10.45.1"
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2"
},
"devDependencies": {
"@sveltejs/adapter-static": "3.0.1",
"crstore": "^0.22.0",
"crstore": "^0.23.1",
"murmurhash": "^2.0.1"
}
}
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,35 +16,35 @@
"test": "turbo run test --parallel --no-daemon"
},
"devDependencies": {
"@sveltejs/kit": "2.5.0",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/node": "20.11.17",
"@sveltejs/kit": "2.5.7",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"@vitest/coverage-v8": "^1.5.0",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"postcss": "^8.4.35",
"postcss-import": "^16.0.0",
"eslint-plugin-svelte": "^2.37.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"prettier-plugin-sort-imports": "^1.8.1",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"prettier-plugin-sort-imports": "^1.8.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.5",
"rollup": "^4.10.0",
"rollup-plugin-node-externals": "^7.0.1",
"svelte": "^4.2.10",
"svelte-check": "^3.6.4",
"tailwindcss": "^3.4.1",
"rollup": "^4.16.0",
"rollup-plugin-node-externals": "^7.1.1",
"svelte": "^4.2.15",
"svelte-check": "^3.6.9",
"tailwindcss": "^3.4.3",
"tailwindcss-contain": "^0.1.1",
"tslib": "^2.6.2",
"turbo": "^1.12.3",
"typescript": "^5.3.3",
"vite": "5.1.1",
"vitest": "1.2.2"
"turbo": "^1.13.2",
"typescript": "^5.4.5",
"vite": "5.2.10",
"vitest": "1.5.0"
},
"dependencies": {
"@capacitor/core": "^5.7.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/crdata/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"dependencies": {
"@amadeus-music/protocol": "workspace:*",
"crstore": "^0.22.0",
"superstruct": "^1.0.3"
"crstore": "^0.23.1",
"superstruct": "^1.0.4"
}
}
2 changes: 1 addition & 1 deletion packages/libfun/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libfun",
"version": "1.8.2",
"version": "1.8.3",
"description": "Make functional programming fun!",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/libfun/pool/pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ function pools(options: Partial<Options<any>> = {}): Pools {
};
},
context(context) {
this.bind({ context });
this.bind({ context, group: "" });
},
bind(context: Override) {
if (context?.context) {
Expand Down Expand Up @@ -278,7 +278,7 @@ function pools(options: Partial<Options<any>> = {}): Pools {
function pool<T extends Fn = () => void, R = never>(
this: Override & { scope?: string },
global: {
options: Options<T>;
options: Options<Fn>;
prototype: object;
all: Map<string, Pool>;
catchers: Set<Catcher>;
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"dependencies": {
"@amadeus-music/util": "workspace:*",
"murmurhash": "^2.0.1",
"superstruct": "^1.0.3"
"superstruct": "^1.0.4"
}
}
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"dependencies": {
"@amadeus-music/util": "workspace:*",
"tailwind-merge": "^2.2.1"
"tailwind-merge": "^2.3.0"
}
}
2 changes: 1 addition & 1 deletion plugins/audd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"@amadeus-music/core": "workspace:*"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
2 changes: 1 addition & 1 deletion plugins/feed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"@amadeus-music/util": "workspace:*"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
Binary file modified plugins/sqlite/assets/arm64/sqlite.darwin.node
Binary file not shown.
Binary file modified plugins/sqlite/assets/x64/sqlite.linux.node
Binary file not shown.
Binary file modified plugins/sqlite/assets/x64/sqlite.win32.node
Binary file not shown.
2 changes: 1 addition & 1 deletion plugins/sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"@amadeus-music/crdata": "workspace:*"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
4 changes: 2 additions & 2 deletions plugins/telegram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"@amadeus-music/core": "workspace:*",
"@amadeus-music/protocol": "workspace:*",
"@amadeus-music/util": "workspace:*",
"crstore": "^0.22.0"
"crstore": "^0.23.1"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
6 changes: 3 additions & 3 deletions plugins/trpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"dependencies": {
"@amadeus-music/core": "workspace:*",
"@amadeus-music/protocol": "workspace:*",
"@trpc/server": "^10.45.1",
"superstruct": "^1.0.3"
"@trpc/server": "^10.45.2",
"superstruct": "^1.0.4"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
Binary file modified plugins/vk/assets/onnx.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions plugins/vk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"@amadeus-music/core": "workspace:*",
"@amadeus-music/protocol": "workspace:*",
"jpeg-js": "^0.4.4",
"onnxruntime-web": "^1.17.0"
"onnxruntime-web": "^1.17.3"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
2 changes: 1 addition & 1 deletion plugins/yandex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"@amadeus-music/core": "workspace:*"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
4 changes: 2 additions & 2 deletions plugins/youtube/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
},
"dependencies": {
"@amadeus-music/core": "workspace:*",
"youtubei.js": "^9.1.0"
"youtubei.js": "^9.3.0"
},
"devDependencies": {
"vite": "5.1.1"
"vite": "5.2.10"
}
}
Loading

0 comments on commit d4a8c66

Please sign in to comment.