commandkit 0.1.5 → 0.1.6

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/dist/index.js CHANGED
@@ -809,6 +809,7 @@ var CommandKit = class {
809
809
  const validationHandler = new ValidationHandler({
810
810
  validationsPath: this.#data.validationsPath
811
811
  });
812
+ await validationHandler.init();
812
813
  this.#data.validationHandler = validationHandler;
813
814
  }
814
815
  if (this.#data.commandsPath) {
package/dist/index.mjs CHANGED
@@ -779,6 +779,7 @@ var CommandKit = class {
779
779
  const validationHandler = new ValidationHandler({
780
780
  validationsPath: this.#data.validationsPath
781
781
  });
782
+ await validationHandler.init();
782
783
  this.#data.validationHandler = validationHandler;
783
784
  }
784
785
  if (this.#data.commandsPath) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "commandkit",
3
3
  "description": "Beginner friendly command & event handler for Discord.js",
4
- "version": "0.1.5",
4
+ "version": "0.1.6",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",