seedcord 0.8.0 → 0.8.1
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.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1273,12 +1273,13 @@ var EmojiInjector = class {
|
|
|
1273
1273
|
if (emoji) {
|
|
1274
1274
|
emojiStorage[key] = `<${emoji.identifier}>`;
|
|
1275
1275
|
foundCount++;
|
|
1276
|
+
this.logger.debug(`${chalk3__default.default.bold.green("Found")}: ${chalk3__default.default.magenta.bold(emojiName)} (${emoji.id})`);
|
|
1276
1277
|
return;
|
|
1277
1278
|
}
|
|
1278
1279
|
emojiStorage[key] = emojiName;
|
|
1279
1280
|
this.logger.warn(`${chalk3__default.default.bold.yellow("Missing")}: ${chalk3__default.default.magenta.bold(emojiName)} (using configured value)`);
|
|
1280
1281
|
});
|
|
1281
|
-
this.logger.info(`${chalk3__default.default.bold.green("Loaded")}: ${chalk3__default.default.magenta.bold(foundCount)}
|
|
1282
|
+
this.logger.info(`${chalk3__default.default.bold.green("Loaded")}: ${chalk3__default.default.magenta.bold(foundCount)} emoji(s)`);
|
|
1282
1283
|
}
|
|
1283
1284
|
clearEmojis() {
|
|
1284
1285
|
for (const key of Object.keys(emojiStorage)) Reflect.deleteProperty(emojiStorage, key);
|