node-karin 1.10.22 → 1.10.23
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 +7 -0
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.10.23](https://github.com/KarinJS/Karin/compare/core-v1.10.22...core-v1.10.23) (2025-09-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **core:** 修复环境变量加载时未覆盖现有值的问题 close [#522](https://github.com/KarinJS/Karin/issues/522) ([4566185](https://github.com/KarinJS/Karin/commit/4566185705baa4709f62c23eaf9b10867b7d5c4f))
|
|
9
|
+
|
|
3
10
|
## [1.10.22](https://github.com/KarinJS/Karin/compare/core-v1.10.21...core-v1.10.22) (2025-09-06)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.mjs
CHANGED
|
@@ -28126,7 +28126,10 @@ var start2 = async () => {
|
|
|
28126
28126
|
return;
|
|
28127
28127
|
}
|
|
28128
28128
|
isStart = true;
|
|
28129
|
-
dotenv_default.config({
|
|
28129
|
+
dotenv_default.config({
|
|
28130
|
+
path: `${path4.resolve(process.cwd(), process.env.EBV_FILE)}`,
|
|
28131
|
+
override: true
|
|
28132
|
+
});
|
|
28130
28133
|
await initConfig2(root_default);
|
|
28131
28134
|
printStartLog(process.env.KARIN_VERSION);
|
|
28132
28135
|
await initProcess(+process.env.HTTP_PORT);
|