create-commandkit 1.1.4-dev.20250609020912 → 1.1.4-dev.20250609135507

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-commandkit",
3
3
  "description": "Effortlessly create a CommandKit project",
4
- "version": "1.1.4-dev.20250609020912",
4
+ "version": "1.1.4-dev.20250609135507",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
7
7
  "bin": "./dist/index.js",
@@ -40,7 +40,7 @@
40
40
  "@types/node": "^22.0.0",
41
41
  "tsup": "^8.0.1",
42
42
  "typescript": "^5.3.3",
43
- "tsconfig": "0.0.0-dev.20250609020912"
43
+ "tsconfig": "0.0.0-dev.20250609135507"
44
44
  },
45
45
  "scripts": {
46
46
  "lint": "tsc --noEmit",
@@ -1,6 +1,8 @@
1
+ import { Logger } from 'commandkit/logger'
2
+
1
3
  /**
2
4
  * @param {import('discord.js').Client<true>} client
3
5
  */
4
6
  export default function log(client) {
5
- console.log(`Logged in as ${client.user.username}!`);
7
+ Logger.success(`Logged in as ${client.user.username}!`);
6
8
  }
@@ -1,5 +1,6 @@
1
1
  import type { Client } from 'discord.js';
2
+ import { Logger } from 'commandkit/logger';
2
3
 
3
4
  export default function log(client: Client<true>) {
4
- console.log(`Logged in as ${client.user.username}!`);
5
+ Logger.success(`Logged in as ${client.user.username}!`);
5
6
  }