reciple 7.0.13-dev.11 → 7.0.13-dev.13
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/bin/index.d.ts +2 -2
- package/bin/index.js.map +1 -1
- package/package.json +2 -2
- package/static/config.yml +3 -0
package/bin/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IConfig } from './classes/Config';
|
|
2
|
-
import { RecipleClient as Client } from '@reciple/client';
|
|
2
|
+
import { RecipleClient as Client, RecipleClientOptions } from '@reciple/client';
|
|
3
3
|
export * from '@reciple/client';
|
|
4
4
|
export * from './exports';
|
|
5
5
|
export declare class RecipleClient<Ready extends boolean = boolean> extends Client<Ready> {
|
|
6
|
-
config: IConfig
|
|
6
|
+
config: RecipleClientOptions["recipleOptions"] & Partial<IConfig>;
|
|
7
7
|
}
|
package/bin/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,4CAAgF;AAEhF,kDAAgC;AAChC,4CAA0B"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Reciple is a Discord.js handler",
|
|
4
4
|
"homepage": "https://reciple.js.org/docs/reciple",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
|
-
"version": "7.0.13-dev.
|
|
6
|
+
"version": "7.0.13-dev.13",
|
|
7
7
|
"main": "./bin/index.js",
|
|
8
8
|
"module": "./bin/esm.mjs",
|
|
9
9
|
"types": "./bin/index.d.ts",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"optionalDependencies": {
|
|
62
62
|
"ts-interpreter.js": "^1.4.3"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "d5f32ab54afb35c0a74cfa30d330292618863cc4"
|
|
65
65
|
}
|
package/static/config.yml
CHANGED
|
@@ -85,6 +85,9 @@ modules:
|
|
|
85
85
|
exclude: []
|
|
86
86
|
# If false, the client will still load unsupported modules
|
|
87
87
|
disableModuleVersionCheck: false
|
|
88
|
+
# Resolve files in modules folder with ".ts" file extension
|
|
89
|
+
# This feature is experimental
|
|
90
|
+
resolveTypescriptModules: false
|
|
88
91
|
|
|
89
92
|
# Discord.js client options
|
|
90
93
|
client:
|