commandkit 0.1.6-dev.20231209101128 → 0.1.6-dev.20231209110056

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
@@ -485,14 +485,14 @@ var CommandHandler = class {
485
485
  if (devOnlyCommands.length && !this.#data.devGuildIds.length) {
486
486
  console.log(
487
487
  colors_default.yellow(
488
- '\u2139\uFE0F Warning: You have commands marked as "devOnly" but "devGuildIds" has not been set.'
488
+ '\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devGuildIds" have not been set.'
489
489
  )
490
490
  );
491
491
  }
492
492
  if (devOnlyCommands.length && !this.#data.devUserIds.length && !this.#data.devRoleIds.length) {
493
493
  console.log(
494
494
  colors_default.yellow(
495
- '\u2139\uFE0F Warning: You have commands marked as "devOnly" but not "devUserIds" or "devRoleIds" were set.'
495
+ '\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devUserIds" or "devRoleIds" have not been set.'
496
496
  )
497
497
  );
498
498
  }
package/dist/index.mjs CHANGED
@@ -452,14 +452,14 @@ var CommandHandler = class {
452
452
  if (devOnlyCommands.length && !this.#data.devGuildIds.length) {
453
453
  console.log(
454
454
  colors_default.yellow(
455
- '\u2139\uFE0F Warning: You have commands marked as "devOnly" but "devGuildIds" has not been set.'
455
+ '\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devGuildIds" have not been set.'
456
456
  )
457
457
  );
458
458
  }
459
459
  if (devOnlyCommands.length && !this.#data.devUserIds.length && !this.#data.devRoleIds.length) {
460
460
  console.log(
461
461
  colors_default.yellow(
462
- '\u2139\uFE0F Warning: You have commands marked as "devOnly" but not "devUserIds" or "devRoleIds" were set.'
462
+ '\u2139\uFE0F Warning: You have commands marked as "devOnly", but "devUserIds" or "devRoleIds" have not been set.'
463
463
  )
464
464
  );
465
465
  }
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.6-dev.20231209101128",
4
+ "version": "0.1.6-dev.20231209110056",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",