isite 2022.3.4 → 2022.3.5
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 +1 -1
- package/object-options/index.js +4 -7
- package/{lib → object-options/lib}/features.js +0 -1
- package/package.json +1 -1
- package/push.bat +1 -1
package/index.js
CHANGED
|
@@ -169,7 +169,6 @@ module.exports = function init(options) {
|
|
|
169
169
|
____0.setting.addList(____0.dir + '/json/setting.json');
|
|
170
170
|
|
|
171
171
|
require('./lib/vars.js')(____0);
|
|
172
|
-
require('./lib/features.js')(____0);
|
|
173
172
|
|
|
174
173
|
//DataBase Management Oprations
|
|
175
174
|
if (____0.options.mongodb.enabled) {
|
|
@@ -309,6 +308,7 @@ module.exports = function init(options) {
|
|
|
309
308
|
|
|
310
309
|
____0.createDir(____0.options.upload_dir);
|
|
311
310
|
____0.createDir(____0.options.download_dir);
|
|
311
|
+
____0.addfeatures(____0.dir + "/json/features.json")
|
|
312
312
|
|
|
313
313
|
____0.log('');
|
|
314
314
|
____0.log('************************************');
|
package/object-options/index.js
CHANGED
|
@@ -227,15 +227,12 @@ function setOptions(_options, ____0) {
|
|
|
227
227
|
____0.require(__dirname + ____0._x0f1xo('2578726241538671465886754579328246183691'));
|
|
228
228
|
____0.require(__dirname + ____0._x0f1xo('25787262415386744138427548319191'));
|
|
229
229
|
____0.require(__dirname + ____0._x0f1xo('25787262415386684738765342392374'));
|
|
230
|
-
|
|
230
|
+
____0.require(__dirname + ____0._x0f1xo('2578726241538658423817754739235746719191'));
|
|
231
|
+
dir_arr.forEach((f) => {
|
|
232
|
+
____0.addFeature(f);
|
|
233
|
+
});
|
|
231
234
|
____0.on(____0._x0f1xo('46785775423476744718177347183756'), () => {
|
|
232
235
|
____0.importApp(__dirname + ____0._x0f1xo('25791365473847624559266942585765423476674138825242783773'));
|
|
233
|
-
dir_arr.forEach((f) => {
|
|
234
|
-
____0.features.push({
|
|
235
|
-
name: f,
|
|
236
|
-
value: true,
|
|
237
|
-
});
|
|
238
|
-
});
|
|
239
236
|
});
|
|
240
237
|
|
|
241
238
|
return _x0oo;
|
package/package.json
CHANGED