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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
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) {
|