meocord 1.2.2 → 1.2.3
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 +6 -0
- package/dist/esm/package.json.js +1 -1
- package/package.json +10 -32
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.3] - 2026-04-09
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Move webpack build tools back to dependencies so `meocord start --dev` works automatically after `yarn add meocord` without requiring manual peer dependency installation.
|
|
13
|
+
|
|
8
14
|
## [1.2.2] - 2026-04-09
|
|
9
15
|
|
|
10
16
|
### Changed
|
package/dist/esm/package.json.js
CHANGED
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.
|
|
4
|
+
"version": "1.2.3",
|
|
5
5
|
"packageManager": "yarn@4.12.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
@@ -73,7 +73,12 @@
|
|
|
73
73
|
"lodash-es": "^4.18.1",
|
|
74
74
|
"nodemon": "^3.1.14",
|
|
75
75
|
"reflect-metadata": "^0.2.2",
|
|
76
|
-
"simple-git": "^3.35.2"
|
|
76
|
+
"simple-git": "^3.35.2",
|
|
77
|
+
"swc-loader": "^0.2.7",
|
|
78
|
+
"terser-webpack-plugin": "^5.4.0",
|
|
79
|
+
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
80
|
+
"webpack": "^5.106.0",
|
|
81
|
+
"webpack-node-externals": "^3.0.0"
|
|
77
82
|
},
|
|
78
83
|
"devDependencies": {
|
|
79
84
|
"@eslint/js": "^9.39.4",
|
|
@@ -84,7 +89,6 @@
|
|
|
84
89
|
"@types/lodash-es": "^4.17.12",
|
|
85
90
|
"@types/webpack-node-externals": "^3.0.4",
|
|
86
91
|
"@typescript-eslint/parser": "^8.58.1",
|
|
87
|
-
"discord.js": "^14.26.2",
|
|
88
92
|
"eslint": "^9.39.4",
|
|
89
93
|
"eslint-config-prettier": "^10.1.8",
|
|
90
94
|
"eslint-plugin-headers": "^1.3.4",
|
|
@@ -97,38 +101,12 @@
|
|
|
97
101
|
"rollup": "^4.60.1",
|
|
98
102
|
"rollup-plugin-copy": "^3.5.0",
|
|
99
103
|
"rollup-plugin-dts": "^6.4.1",
|
|
100
|
-
"terser-webpack-plugin": "^5.4.0",
|
|
101
|
-
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
102
104
|
"typescript": "^6.0.2",
|
|
103
|
-
"typescript-eslint": "^8.58.1"
|
|
104
|
-
"webpack": "^5.106.0",
|
|
105
|
-
"webpack-node-externals": "^3.0.0"
|
|
105
|
+
"typescript-eslint": "^8.58.1"
|
|
106
106
|
},
|
|
107
107
|
"peerDependencies": {
|
|
108
|
-
"discord.js": "^14.
|
|
109
|
-
"dotenv": "^16.4.7"
|
|
110
|
-
"swc-loader": "^0.2.7",
|
|
111
|
-
"terser-webpack-plugin": "^5.4.0",
|
|
112
|
-
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
113
|
-
"webpack": "^5.106.0",
|
|
114
|
-
"webpack-node-externals": "^3.0.0"
|
|
115
|
-
},
|
|
116
|
-
"peerDependenciesMeta": {
|
|
117
|
-
"swc-loader": {
|
|
118
|
-
"optional": false
|
|
119
|
-
},
|
|
120
|
-
"terser-webpack-plugin": {
|
|
121
|
-
"optional": false
|
|
122
|
-
},
|
|
123
|
-
"tsconfig-paths-webpack-plugin": {
|
|
124
|
-
"optional": false
|
|
125
|
-
},
|
|
126
|
-
"webpack": {
|
|
127
|
-
"optional": false
|
|
128
|
-
},
|
|
129
|
-
"webpack-node-externals": {
|
|
130
|
-
"optional": false
|
|
131
|
-
}
|
|
108
|
+
"discord.js": "^14.17.3",
|
|
109
|
+
"dotenv": "^16.4.7"
|
|
132
110
|
},
|
|
133
111
|
"keywords": [
|
|
134
112
|
"discord",
|