Skip to content

Commit 495baf6

Browse files
chore: update dependencies
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
1 parent 2748e8f commit 495baf6

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

bun.lockb

2.22 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@
4444
"watch": "npm run build:esbuild -- --watch",
4545
"build": "npm run build:bun && npm run types",
4646
"build:bun": "bun build ./src/index.ts --minify --outdir=lib --target=node --external:crypto --format=esm",
47-
"dev": "bun example/test.ts",
47+
"dev": "bun examples/index.ts",
4848
"test": "bun test",
4949
"release": "release-it",
5050
"types": "tsc -p tsconfig.build.json",
5151
"preversion": "npm run build"
5252
},
5353
"devDependencies": {
54-
"@biomejs/biome": "^1.4.1",
55-
"@biomejs/cli-linux-x64": "^1.4.1",
54+
"@biomejs/biome": "^1.5.0",
55+
"@biomejs/cli-linux-x64": "^1.5.0",
5656
"@types/spark-md5": "^3.0.4",
57-
"bun-types": "^1.0.15",
58-
"release-it": "^17.0.0",
57+
"bun-types": "^1.0.21",
58+
"release-it": "^17.0.1",
5959
"spark-md5": "^3.0.2"
6060
},
6161
"release-it": {
@@ -70,4 +70,4 @@
7070
"node": ">=18"
7171
},
7272
"engineStrict": false
73-
}
73+
}

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import type {
77
AlbumList2,
88
ArtistInfo,
99
ArtistInfo2,
10-
ArtistsID3,
1110
ArtistWithAlbumsID3,
11+
ArtistsID3,
1212
Bookmarks,
1313
ChatMessages,
1414
Directory,
@@ -19,9 +19,9 @@ import type {
1919
MusicFolders,
2020
NewestPodcasts,
2121
NowPlaying,
22+
PlayQueue,
2223
Playlist,
2324
Playlists,
24-
PlayQueue,
2525
Podcasts,
2626
ScanStatus,
2727
SearchResult2,

src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export function arrayBufferToBase64(bytes: Uint8Array) {
2-
if (typeof globalThis.Buffer !== "undefined" && Buffer.isEncoding('base64url')) {
2+
if (typeof globalThis.Buffer !== "undefined" && Buffer.isEncoding("base64url")) {
33
return Buffer.from(bytes).toString("base64url");
44
}
55

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"include": [
2626
"**/src/**/*",
2727
"**/__tests__/**/*",
28-
"example/**/*"
28+
"examples/**/*"
2929
],
3030
"exclude": [
3131
"node_modules",

0 commit comments

Comments
 (0)