Skip to content

Commit

Permalink
fix: correct collection export
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza committed Jan 16, 2025
1 parent 60db918 commit 1b67050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/discord.js/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ exports.AttachmentFlagsBitField = require('./util/AttachmentFlagsBitField').Atta
exports.BaseManager = require('./managers/BaseManager').BaseManager;
exports.BitField = require('./util/BitField').BitField;
exports.ChannelFlagsBitField = require('./util/ChannelFlagsBitField').ChannelFlagsBitField;
exports.Collection = require('@discordjs/collection');
exports.Collection = require('@discordjs/collection').Collection;
exports.Colors = require('./util/Colors').Colors;
exports.Constants = require('./util/Constants');
exports.Events = require('./util/Events').Events;
Expand Down
2 changes: 1 addition & 1 deletion packages/discord.js/src/util/Transformers.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const { isJSONEncodable } = require('@discordjs/util');
const { snakeCase } = require('lodash.snakecase');
const snakeCase = require('lodash.snakecase');

/**
* Transforms camel-cased keys into snake cased keys
Expand Down

0 comments on commit 1b67050

Please sign in to comment.