not-node 6.3.82 → 6.3.84
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/package.json +1 -1
- package/src/const.js +2 -2
- package/src/manifest/const.js +1 -0
package/package.json
CHANGED
package/src/const.js
CHANGED
|
@@ -4,7 +4,7 @@ const DEFAULT_PATH_MODULES = "./modules";
|
|
|
4
4
|
const DEFAULT_PATH_WS = "./ws";
|
|
5
5
|
const DEFAULT_PATH_DB_DUMPS = "../../db.dumps";
|
|
6
6
|
|
|
7
|
-
const
|
|
7
|
+
const MANIFEST_CONSTS = require("./manifest/const");
|
|
8
8
|
|
|
9
9
|
module.exports = {
|
|
10
10
|
DEFAULT_PATH_WS,
|
|
@@ -12,5 +12,5 @@ module.exports = {
|
|
|
12
12
|
DEFAULT_PATH_STATIC,
|
|
13
13
|
DEFAULT_PATH_TMP,
|
|
14
14
|
DEFAULT_PATH_DB_DUMPS,
|
|
15
|
-
|
|
15
|
+
...MANIFEST_CONSTS,
|
|
16
16
|
};
|
package/src/manifest/const.js
CHANGED