mm_machine 2.4.7 → 2.4.8
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -577,7 +577,8 @@ Manager.prototype._initManager = function () {
|
|
|
577
577
|
*/
|
|
578
578
|
Manager.prototype._loadSources = async function () {
|
|
579
579
|
// 通过更新函数加载资源信息
|
|
580
|
-
await this.call('update');
|
|
580
|
+
await this.call('update', this.config.base_dir);
|
|
581
|
+
await this.call('update', this.config.dir, false);
|
|
581
582
|
};
|
|
582
583
|
|
|
583
584
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mm_machine",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.8",
|
|
4
4
|
"description": "A flexible Node.js plugin mechanism system for dynamic loading, management and execution of modules. Supports hot reload, lifecycle management, and modern JavaScript features.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|