Source: dev-mode/mock.cht-conf.nools-lib.js

  1. /**
  2. * This is a mocked version of cht-conf's nools lib.js which is an entry-point for cht-conf's compile-app-settings bundle.
  3. * https://github.com/medic/cht-conf/blob/master/src/nools/lib.js
  4. *
  5. * It behaves the same as the production version but can be run inside node require() instead of relying on the resolution aliasing provided by webpack.
  6. * @module mock.cht-conf.nools-lib
  7. */
  8. module.exports.pathToProject = undefined;
  9. module.exports = function(c, user, Utils, chtScriptApi, Task, Target, emit) {
  10. const cacheBefore = Object.keys(require.cache);
  11. try {
  12. global.Utils = Utils;
  13. global.user = user;
  14. global.cht = chtScriptApi;
  15. const tasks = require(`${module.exports.pathToProject}/tasks.js`);
  16. const targets = require(`${module.exports.pathToProject}/targets.js`);
  17. const taskEmitter = require(`${module.exports.pathToProject}/node_modules/cht-conf/src/nools/task-emitter`);
  18. const targetEmitter = require(`${module.exports.pathToProject}/node_modules/cht-conf/src/nools/target-emitter`);
  19. targetEmitter(targets, c, Utils, Target, emit);
  20. taskEmitter(tasks, c, Utils, Task, emit);
  21. emit('_complete', { _id: true });
  22. } finally {
  23. delete global.Utils;
  24. delete global.user;
  25. delete global.cht;
  26. const cacheAfter = Object.keys(require.cache).filter(key => !cacheBefore.includes(key));
  27. cacheAfter.forEach(key => { delete require.cache[key]; });
  28. }
  29. };