reciple 7.6.4 → 7.7.0-dev.0
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 +6 -0
- package/bin/index.js +6 -0
- package/bin/index.js.map +1 -1
- package/package.json +3 -3
package/bin/index.d.ts
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
import yaml from 'yaml';
|
|
1
2
|
import { IConfig } from './classes/Config';
|
|
2
3
|
import { RecipleClient as Client, RecipleClientOptions } from '@reciple/client';
|
|
3
4
|
export * from '@reciple/client';
|
|
4
5
|
export * from './exports';
|
|
6
|
+
export {
|
|
7
|
+
/**
|
|
8
|
+
* Exports the `yaml` package used for parsing yml files
|
|
9
|
+
*/
|
|
10
|
+
yaml };
|
|
5
11
|
export declare class RecipleClient<Ready extends boolean = boolean> extends Client<Ready> {
|
|
6
12
|
config: RecipleClientOptions["recipleOptions"] & Partial<IConfig>;
|
|
7
13
|
}
|
package/bin/index.js
CHANGED
|
@@ -13,7 +13,13 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
13
13
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
+
};
|
|
16
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
exports.yaml = void 0;
|
|
21
|
+
const yaml_1 = __importDefault(require("yaml"));
|
|
22
|
+
exports.yaml = yaml_1.default;
|
|
17
23
|
const client_1 = require("@reciple/client");
|
|
18
24
|
__exportStar(require("@reciple/client"), exports);
|
|
19
25
|
__exportStar(require("./exports"), exports);
|
package/bin/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,gDAAwB;AAWpB,eAXG,cAAI,CAWH;AATR,4CAAgF;AAEhF,kDAAgC;AAChC,4CAA0B"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Reciple is a Discord.js bot framework",
|
|
4
4
|
"homepage": "https://reciple.js.org/docs/reciple",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
|
-
"version": "7.
|
|
6
|
+
"version": "7.7.0-dev.0",
|
|
7
7
|
"main": "./bin/index.js",
|
|
8
8
|
"module": "./bin/esm.mjs",
|
|
9
9
|
"types": "./bin/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"README.md"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@reciple/client": "^7.
|
|
40
|
+
"@reciple/client": "^7.6.0-dev.0",
|
|
41
41
|
"commander": "^10.0.1",
|
|
42
42
|
"dotenv": "^16.0.3",
|
|
43
43
|
"fallout-utility": "^2.5.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"discord.js": "^14.7.1"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "f078be6936292b907b4d10e9de33920bd4ab79bf"
|
|
63
63
|
}
|