kazagumo-bun 3.4.0-c → 3.4.0-e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -2,10 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/sponsors/LuigiColantuono)
|
|
4
4
|
[](https://paypal.me/l0g4n7)
|
|
5
|
-
[](https://www.npmjs.com/package/kazagumo-bun)
|
|
6
6
|

|
|
7
|
-

|
|
8
|
-

|
|
9
7
|
|
|
10
8
|
#### A [Shoukaku-Bun](https://github.com/LuigiColantuono/Shoukaku-Bun) wrapper with built in queue system
|
|
11
9
|
|
|
@@ -124,7 +122,9 @@ Note:
|
|
|
124
122
|
⚠️ Please read the docs first before asking question ⚠️
|
|
125
123
|
> Kazagumo support server: https://discord.gg/nPPW2Gzqg2 (anywhere lmao)
|
|
126
124
|
> Shoukaku support server: https://discord.gg/FVqbtGu (#development)
|
|
127
|
-
>
|
|
125
|
+
>
|
|
126
|
+
> Brucius support server: https://discord.gg/XqJw52d35R
|
|
127
|
+
>
|
|
128
128
|
> Report if you found a bug here https://github.com/Takiyo0/Kazagumo/issues/new/choose
|
|
129
129
|
|
|
130
130
|
## Enable playerMoved event
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kazagumo-bun",
|
|
3
|
-
"version": "3.4.0-
|
|
3
|
+
"version": "3.4.0-e",
|
|
4
4
|
"description": "Bun-native high-performance Kazagumo fork. Node legacy purged.",
|
|
5
5
|
"main": "src/Index.ts",
|
|
6
6
|
"types": "src/Index.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"url": "https://paypal.me/l0g4n7"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"shoukaku": "
|
|
36
|
+
"shoukaku-bun": "latest"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bun": "latest",
|
package/src/Index.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
import { KazagumoTrack } from './Managers/Supports/KazagumoTrack';
|
|
3
3
|
import { KazagumoQueue } from './Managers/Supports/KazagumoQueue';
|
|
4
4
|
import { KazagumoPlayer } from './Managers/KazagumoPlayer';
|
|
5
5
|
import Plugins from './Modules/Plugins';
|
|
6
6
|
// import KazagumoPlayer from "./Managers/KazagumoPlayer";
|
|
7
7
|
// import { KazagumoOptions } from "./Modules/Interfaces";
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
|
|
10
10
|
export * from './Kazagumo';
|
|
11
11
|
export { KazagumoTrack, KazagumoQueue, KazagumoPlayer, Plugins };
|
package/src/Kazagumo.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Kazagumo } from '../Kazagumo';
|
|
|
2
2
|
import { KazagumoPlayer, KazagumoQueue } from '../Index';
|
|
3
3
|
import { KazagumoTrack } from '../Managers/Supports/KazagumoTrack';
|
|
4
4
|
import { Constructor } from './Utils';
|
|
5
|
-
import { Track } from 'shoukaku';
|
|
5
|
+
import { Track } from 'shoukaku-bun';
|
|
6
6
|
|
|
7
7
|
export interface KazagumoOptions {
|
|
8
8
|
/** Default search engine if no engine was provided. Default to youtube. If defaultSource is provided, this will be ignored */
|
package/src/Modules/Utils.ts
CHANGED