@midwayjs/core 3.4.12 → 3.4.13

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.
@@ -70,12 +70,10 @@ let MidwayConfigService = class MidwayConfigService {
70
70
  else {
71
71
  // object add
72
72
  for (const env in dir) {
73
+ this.getEnvSet(env).add(dir[env]);
73
74
  if (this.aliasMap[env]) {
74
75
  this.getEnvSet(this.aliasMap[env]).add(dir[env]);
75
76
  }
76
- else {
77
- this.getEnvSet(env).add(dir[env]);
78
- }
79
77
  }
80
78
  }
81
79
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midwayjs/core",
3
- "version": "3.4.12",
3
+ "version": "3.4.13",
4
4
  "description": "midway core",
5
5
  "main": "dist/index",
6
6
  "typings": "dist/index.d.ts",
@@ -45,5 +45,5 @@
45
45
  "engines": {
46
46
  "node": ">=12"
47
47
  },
48
- "gitHead": "96425bbb3a39dbe8f66069facc5b7440886f9cfe"
48
+ "gitHead": "bde878f01df0a4b27919eea367d100b5ee5edb04"
49
49
  }