seyfert 2.2.1-dev-12530351009.0 → 2.2.1-dev-12540403006.0

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/lib/deps/mixer.js CHANGED
@@ -48,7 +48,7 @@ function Mixin(...args) {
48
48
  const ignoreOverwriteToString = Object.keys(Object.getOwnPropertyDescriptors(args[0].prototype)).includes('toString');
49
49
  function MixedClass(...constructorArgs) {
50
50
  for (const i of args) {
51
- const descriptors = getDescriptors(i).toReversed();
51
+ const descriptors = getDescriptors(i).reverse();
52
52
  for (const j of descriptors) {
53
53
  // @ts-expect-error
54
54
  Object.assign(this, new j.constructor.value(...constructorArgs));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seyfert",
3
- "version": "2.2.1-dev-12530351009.0",
3
+ "version": "2.2.1-dev-12540403006.0",
4
4
  "description": "The most advanced framework for discord bots",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",
@@ -22,6 +22,7 @@
22
22
  "license": "MIT",
23
23
  "devDependencies": {
24
24
  "@biomejs/biome": "1.9.4",
25
+ "@changesets/cli": "^2.27.11",
25
26
  "@commitlint/cli": "^19.6.1",
26
27
  "@commitlint/config-conventional": "^19.6.0",
27
28
  "@types/node": "^22.10.2",