mm_machine 2.9.2 → 2.9.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.
Files changed (2) hide show
  1. package/drive.js +1 -1
  2. package/package.json +4 -4
package/drive.js CHANGED
@@ -643,7 +643,7 @@ Drive.prototype._delArray = function (file, config, name) {
643
643
  config.splice(index, 1);
644
644
 
645
645
  if (config.length > 0) {
646
- file.saveText(JSON.stringify(config, null, 4));
646
+ file.saveText(JSON.stringify(config, null, 2));
647
647
  } else if (file.delFile) {
648
648
  file.delFile();
649
649
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_machine",
3
- "version": "2.9.2",
3
+ "version": "2.9.3",
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": {
@@ -34,12 +34,12 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@prettier/sync": "^0.6.1",
37
- "mm_config": "^2.4.4",
38
- "mm_hot_reload": "^1.4.1",
37
+ "mm_config": "^2.4.5",
38
+ "mm_hot_reload": "^1.4.2",
39
39
  "mm_tpl": "^2.6.3"
40
40
  },
41
41
  "devDependencies": {
42
- "eslint": "^10.6.0",
42
+ "eslint": "^10.7.0",
43
43
  "eslint-plugin-jsdoc": "^63.0.13",
44
44
  "mm_eslint": "^1.7.5"
45
45
  }