@xuda.io/notification_module 1.1.83 → 1.1.85
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 → index.mjs} +1 -1
- package/package.json +2 -2
package/{index.js → index.mjs}
RENAMED
|
@@ -4,7 +4,7 @@ global._conf = require(path.join(process.env.XUDA_HOME, process.env.XUDA_CONFIG)
|
|
|
4
4
|
|
|
5
5
|
const _ = require('lodash');
|
|
6
6
|
|
|
7
|
-
const _common = require(path.join(process.env.XUDA_HOME, 'common', 'xuda_node_common.
|
|
7
|
+
const _common = require(path.join(process.env.XUDA_HOME, 'common', 'xuda_node_common.mjs'));
|
|
8
8
|
const module_path = path.join(process.env.XUDA_HOME, 'cpi') + (!_conf.is_debug ? '/node_modules/@xuda.io' : '');
|
|
9
9
|
const db_module = require(`${module_path}/db_module`);
|
|
10
10
|
|
package/package.json
CHANGED