xcraft-core-utils 4.3.3 → 4.3.6

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/lib/modules.js +0 -7
  2. package/package.json +1 -1
package/lib/modules.js CHANGED
@@ -93,13 +93,6 @@ exports.extractConfigDeps = (libDir, configJson) => {
93
93
 
94
94
  Object.keys(configJson).forEach((appId) => {
95
95
  const appCfg = configJson[appId];
96
- if (
97
- appCfg['xcraft-core-horde'] &&
98
- fse.existsSync(path.join(libDir, 'xcraft-core-horde'))
99
- ) {
100
- deps['xcraft-core-horde'] = true;
101
- }
102
-
103
96
  const serverCfg = appCfg['xcraft-core-server'];
104
97
  if (!serverCfg || !serverCfg.modules) {
105
98
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xcraft-core-utils",
3
- "version": "4.3.3",
3
+ "version": "4.3.6",
4
4
  "description": "Xcraft utils",
5
5
  "main": "index.js",
6
6
  "engines": {