meocord 1.2.5 → 1.2.6

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.6] - 2026-04-09
9
+
10
+ ### Fixed
11
+
12
+ - Compile config on `meocord start --dev` before watch mode to prevent stale `dist/meocord.config.mjs` from loading the wrong env file. ([72001dc](https://github.com/l7aromeo/meocord/commit/72001dc))
13
+
8
14
  ## [1.2.5] - 2026-04-09
9
15
 
10
16
  ### Fixed
@@ -287,6 +287,7 @@ For full license details, refer to:
287
287
  try {
288
288
  this.clearConsole();
289
289
  this.logger.log('Starting watch mode...');
290
+ await this.compileConfig();
290
291
  const webpackConfig = (await import(this.webpackConfigPath)).default;
291
292
  const compiler = webpack({
292
293
  ...webpackConfig,
@@ -1,4 +1,4 @@
1
- var version = "1.2.4";
1
+ var version = "1.2.5";
2
2
  var packageJson = {
3
3
  version: version};
4
4
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "meocord",
3
3
  "description": "MeoCord is a lightweight and modular framework for building scalable Discord bots using TypeScript and Discord.js. It simplifies bot development with an extensible architecture, TypeScript-first approach, and powerful CLI tools.",
4
- "version": "1.2.5",
4
+ "version": "1.2.6",
5
5
  "packageManager": "yarn@4.12.0",
6
6
  "type": "module",
7
7
  "scripts": {