@maka/maka-cli 4.6.3 → 4.6.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.
Files changed (138) hide show
  1. package/README.md +0 -10
  2. package/bundle/obf/package.json +1 -1
  3. package/bundle/obf/src/README.md +0 -10
  4. package/bundle/obf/src/command.js +1 -1
  5. package/bundle/obf/src/commands/_index.js +1 -1
  6. package/bundle/obf/src/commands/ai.js +1 -1
  7. package/bundle/obf/src/commands/aws/_index.js +1 -1
  8. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  9. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  20. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  21. package/bundle/obf/src/commands/build/_index.js +1 -1
  22. package/bundle/obf/src/commands/build/build.js +1 -1
  23. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  24. package/bundle/obf/src/commands/create.js +1 -1
  25. package/bundle/obf/src/commands/debug.js +1 -1
  26. package/bundle/obf/src/commands/deploy.js +1 -1
  27. package/bundle/obf/src/commands/game/_index.js +1 -1
  28. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  29. package/bundle/obf/src/commands/game/play.command.js +1 -1
  30. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  31. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  32. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  33. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  65. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  66. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  67. package/bundle/obf/src/commands/generate.js +1 -1
  68. package/bundle/obf/src/commands/get/_index.js +1 -1
  69. package/bundle/obf/src/commands/get/get.command.js +1 -1
  70. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  71. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/help.js +1 -1
  74. package/bundle/obf/src/commands/install.js +1 -1
  75. package/bundle/obf/src/commands/jsdoc.js +1 -1
  76. package/bundle/obf/src/commands/lint.js +1 -1
  77. package/bundle/obf/src/commands/login.js +1 -1
  78. package/bundle/obf/src/commands/logout.js +1 -1
  79. package/bundle/obf/src/commands/logs.js +1 -1
  80. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  81. package/bundle/obf/src/commands/murder.js +1 -1
  82. package/bundle/obf/src/commands/proxy.js +1 -1
  83. package/bundle/obf/src/commands/reconfig.js +1 -1
  84. package/bundle/obf/src/commands/run/_index.js +1 -1
  85. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  86. package/bundle/obf/src/commands/run/run.command.js +1 -1
  87. package/bundle/obf/src/commands/set/_index.js +1 -1
  88. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  89. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  90. package/bundle/obf/src/commands/set/set.command.js +1 -1
  91. package/bundle/obf/src/commands/ssh.js +1 -1
  92. package/bundle/obf/src/commands/ssl.js +1 -1
  93. package/bundle/obf/src/commands/test.js +1 -1
  94. package/bundle/obf/src/commands/version.js +1 -1
  95. package/bundle/obf/src/error.js +1 -1
  96. package/bundle/obf/src/exec.js +1 -1
  97. package/bundle/obf/src/generator.js +1 -1
  98. package/bundle/obf/src/generators/_index.js +1 -1
  99. package/bundle/obf/src/generators/api.js +1 -1
  100. package/bundle/obf/src/generators/collection.js +1 -1
  101. package/bundle/obf/src/generators/component.js +1 -1
  102. package/bundle/obf/src/generators/config.js +1 -1
  103. package/bundle/obf/src/generators/dbc.js +1 -1
  104. package/bundle/obf/src/generators/dockerfile.js +1 -1
  105. package/bundle/obf/src/generators/hook.js +1 -1
  106. package/bundle/obf/src/generators/kit.js +1 -1
  107. package/bundle/obf/src/generators/layout.js +1 -1
  108. package/bundle/obf/src/generators/maka.gen.js +1 -1
  109. package/bundle/obf/src/generators/methods.js +1 -1
  110. package/bundle/obf/src/generators/package.js +1 -1
  111. package/bundle/obf/src/generators/page.js +1 -1
  112. package/bundle/obf/src/generators/publish.js +1 -1
  113. package/bundle/obf/src/generators/route.js +1 -1
  114. package/bundle/obf/src/generators/service.js +1 -1
  115. package/bundle/obf/src/generators/services/_index.js +1 -1
  116. package/bundle/obf/src/generators/services/openssl.js +1 -1
  117. package/bundle/obf/src/generators/services/translation.js +1 -1
  118. package/bundle/obf/src/maka.js +1 -1
  119. package/bundle/obf/src/tool.js +1 -1
  120. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  121. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  122. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  123. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  124. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  125. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  126. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  127. package/bundle/obf/src/tools/https/https.class.js +1 -1
  128. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  129. package/bundle/obf/src/tools/https/progress.class.js +1 -1
  130. package/bundle/obf/src/tools/log/log.class.js +1 -1
  131. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  132. package/bundle/obf/src/tools/options/options.class.js +1 -1
  133. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  134. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  136. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  137. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  138. package/package.json +1 -1
@@ -1 +1 @@
1
- const a75o=a75d;(function(a,b){const l=a75d,c=a();while(!![]){try{const d=parseInt(l(0x1dc))/0x1*(parseInt(l(0x1be))/0x2)+parseInt(l(0x1ca))/0x3+-parseInt(l(0x1e4))/0x4+-parseInt(l(0x1d1))/0x5+-parseInt(l(0x1e9))/0x6*(parseInt(l(0x1e3))/0x7)+-parseInt(l(0x1c9))/0x8*(parseInt(l(0x1e7))/0x9)+parseInt(l(0x1bf))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x27cc6));function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x1be;let f=c[d];return f;},a75d(a,b);}function a75c(){const q=['notice','www.maka-cli.com','post','token','withSpinner','logout','6671SSLyEy','338064TDQOWq','assign','start','18iKjcTH','search','1644jxXxiY','success','localhost','maka\x20logout','12aXGWzq','7196560iQRnlO','(((.+)+)+)+$','/api/v1/status','apply','/api/v1/logoutAll','failure','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','env','error','cert','1108136OGoVLl','195030lROQpz','fsi','constructor','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','Logging\x20out\x20of\x20https://','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','authToken','34350FgWLXp','getGlobalConfig','exit','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','MAKA_DEV','toString','Logging\x20out','isFile','True','cacert','Preflight\x20Check','1315tzUqMX'];a75c=function(){return q;};return a75c();}const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a75d;if(c){const e=c[m(0x1c2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const n=a75d;return a75a[n(0x1d6)]()[n(0x1e8)]('(((.+)+)+)+$')[n(0x1d6)]()[n(0x1cc)](a75a)[n(0x1e8)](n(0x1c0));});a75a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a75o(0x1c6)][a75o(0x1d5)]===a75o(0x1d9)?a75o(0x1eb):a75o(0x1de);Command['create']({'name':a75o(0x1e2),'validOpts':['cacert'],'usage':a75o(0x1ec),'maxArgLength':0x2,'shortDesc':'Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','disableAuthCheck':!![],'examples':[a75o(0x1ec)]},async function(a,b){const p=a75o,c=Log[p(0x1e1)]();try{let d='';b['cacert']&&(this['fsi'][p(0x1d8)](b[p(0x1da)])?(d=b[p(0x1da)],Log[p(0x1dd)]('Using\x20CA\x20Cert\x20'+d)):Log['error'](p(0x1c5)+d));const f=await this[p(0x1cb)][p(0x1d2)]();if(f['cert']){if(this['fsi'][p(0x1d8)](f['cert']))d=f[p(0x1c8)];else{c[p(0x1c4)]();throw Log[p(0x1c7)](p(0x1cd)+d);}}Log['header'](p(0x1ce)+hostname);const g={'url':'https://'+hostname+p(0x1c1)};b[p(0x1da)]&&Object[p(0x1e5)](g,{'cert':d});c[p(0x1e6)](p(0x1db));const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c[p(0x1c4)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}c[p(0x1ea)]();if(h!==0xc8){c[p(0x1c4)]();throw p(0x1d4);}if(!f?.[p(0x1e0)]?.[p(0x1d0)])throw Log['error']('Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?');c['start'](p(0x1d7));const i={'hostname':hostname,'path':p(0x1c3),'data':{},'headers':{'x-auth-token':f[p(0x1e0)]['authToken']}};b[p(0x1da)]&&Object[p(0x1e5)](i,{'cert':d});const {statusCode:j}=await HTTPS[p(0x1df)](i);if(j===0x198){c[p(0x1c4)]('\x0a');throw p(0x1cf);}this['fsi']['setGlobalConfig']({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[p(0x1ea)]();}catch(k){k&&console['error'](k),process[p(0x1d3)](0x0);}});
1
+ const a75o=a75d;(function(a,b){const l=a75d,c=a();while(!![]){try{const d=parseInt(l(0xa7))/0x1+-parseInt(l(0x99))/0x2+-parseInt(l(0x93))/0x3+parseInt(l(0xa5))/0x4+-parseInt(l(0x8e))/0x5+-parseInt(l(0x95))/0x6+parseInt(l(0x8a))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x78f47));function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x80;let f=c[d];return f;},a75d(a,b);}const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a75d;if(c){const e=c[m(0x9e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const n=a75d;return a75a[n(0xa9)]()[n(0x84)](n(0x90))[n(0xa9)]()[n(0x96)](a75a)['search'](n(0x90));});a75a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process['env'][a75o(0x8f)]===a75o(0xa3)?a75o(0xa4):a75o(0xad);function a75c(){const q=['5738736fZmRTm','constructor','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','assign','381096UivUGJ','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','authToken','header','apply','exit','getGlobalConfig','token','failure','True','localhost','413928jziGMO','cert','298459EYLIUL','Logging\x20out\x20of\x20https://','toString','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','error','fsi','www.maka-cli.com','start','setGlobalConfig','logout','cacert','search','post','create','https://','Using\x20CA\x20Cert\x20','/api/v1/logoutAll','11436516FwFkDq','maka\x20logout','get','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','351205xblSwk','MAKA_DEV','(((.+)+)+)+$','isFile','/api/v1/status','969159XpuZkC','Logging\x20out'];a75c=function(){return q;};return a75c();}Command[a75o(0x86)]({'name':a75o(0x82),'validOpts':[a75o(0x83)],'usage':'maka\x20logout','maxArgLength':0x2,'shortDesc':a75o(0x9a),'disableAuthCheck':!![],'examples':[a75o(0x8b)]},async function(a,b){const p=a75o,c=Log['withSpinner']();try{let d='';b[p(0x83)]&&(this['fsi'][p(0x91)](b[p(0x83)])?(d=b[p(0x83)],Log['notice'](p(0x88)+d)):Log[p(0xab)](p(0x9b)+d));const f=await this[p(0xac)][p(0xa0)]();if(f[p(0xa6)]){if(this['fsi'][p(0x91)](f[p(0xa6)]))d=f[p(0xa6)];else{c['failure']();throw Log[p(0xab)](p(0x97)+d);}}Log[p(0x9d)](p(0xa8)+hostname);const g={'url':p(0x87)+hostname+p(0x92)};b[p(0x83)]&&Object[p(0x98)](g,{'cert':d});c[p(0x80)]('Preflight\x20Check');const {statusCode:h}=await HTTPS[p(0x8c)](g);if(h===0x198){c['failure']();throw p(0xaa);}c['success']();if(h!==0xc8){c[p(0xa2)]();throw'https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli';}if(!f?.[p(0xa1)]?.[p(0x9c)])throw Log[p(0xab)](p(0x8d));c[p(0x80)](p(0x94));const i={'hostname':hostname,'path':p(0x89),'data':{},'headers':{'x-auth-token':f[p(0xa1)][p(0x9c)]}};b[p(0x83)]&&Object['assign'](i,{'cert':d});const {statusCode:j}=await HTTPS[p(0x85)](i);if(j===0x198){c['failure']('\x0a');throw p(0xaa);}this[p(0xac)][p(0x81)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c['success']();}catch(k){k&&console[p(0xab)](k),process[p(0x9f)](0x0);}});
@@ -1 +1 @@
1
- const a76j=a76d;(function(a,b){const h=a76d,c=a();while(!![]){try{const d=-parseInt(h(0x122))/0x1*(-parseInt(h(0x135))/0x2)+-parseInt(h(0x12b))/0x3*(parseInt(h(0x11d))/0x4)+-parseInt(h(0x134))/0x5*(parseInt(h(0x12d))/0x6)+parseInt(h(0x124))/0x7+-parseInt(h(0x126))/0x8*(parseInt(h(0x128))/0x9)+parseInt(h(0x132))/0xa*(parseInt(h(0x123))/0xb)+parseInt(h(0x130))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0xdfcef));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const i=a76d;return a76a[i(0x131)]()[i(0x11c)](i(0x120))['toString']()[i(0x12f)](a76a)['search'](i(0x120));});a76a();import a76e from'fs';import a76f from'path';import{Command}from'../command.js';function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x11a;let f=c[d];return f;},a76d(a,b);}function a76c(){const l=['logs','40450itJRQE','2825852rYvMJK','env','maka\x20logs','search','4OiOUQX','verbose','maka\x20logs\x20--env\x20staging','(((.+)+)+)+$','log','1aQKHXR','33XNPzQa','6270411GJAYdq','ssh.json','8395232zjsibY','getConfigPath','9SOTBmI','readFileSync','join','4425063Ixwfrv','sshSync','588CvhkQI','create','constructor','15659928BgjnUu','toString','2067570YHQbTP'];a76c=function(){return l;};return a76c();}import{SSH}from'../tools/ssh/ssh.class.js';Command[a76j(0x12e)]({'name':a76j(0x133),'aliases':['l',a76j(0x121)],'usage':a76j(0x11b),'requiredOpts':[a76j(0x11a)],'mustBeInMakaProject':!![],'validOpts':[a76j(0x11e)],'shortDesc':'View\x20the\x20PM2\x20logs','examples':['maka\x20logs\x20--env\x20dev',a76j(0x11f),'maka\x20l\x20-e\x20p']},function(a,b){const k=a76j,c='pm2\x20logs',d=this['fsi'][k(0x127)](b[k(0x11a)]),e=a76f[k(0x12a)](d,k(0x125)),f=a76e[k(0x129)](e),g=JSON['parse'](f['toString']());Object['assign'](g,{'env':d}),SSH[k(0x12c)](c,g,{'tty':!![],'verbose':!![]});});
1
+ const a76k=a76d;(function(a,b){const h=a76d,c=a();while(!![]){try{const d=parseInt(h(0x1fc))/0x1+-parseInt(h(0x1fd))/0x2*(parseInt(h(0x1f6))/0x3)+parseInt(h(0x1f9))/0x4+-parseInt(h(0x1ff))/0x5*(-parseInt(h(0x201))/0x6)+-parseInt(h(0x207))/0x7+parseInt(h(0x20c))/0x8+parseInt(h(0x208))/0x9*(-parseInt(h(0x1f7))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x266c1));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a76d;if(c){const e=c[i(0x1f3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const j=a76d;return a76a[j(0x205)]()['search']('(((.+)+)+)+$')[j(0x205)]()[j(0x1fe)](a76a)[j(0x1f2)]('(((.+)+)+)+$');});function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x1f2;let f=c[d];return f;},a76d(a,b);}a76a();import a76e from'fs';import a76f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';function a76c(){const m=['env','maka\x20logs\x20--env\x20dev','7441KWOikq','58ubqbVD','constructor','10zHMqan','fsi','719382PLHJDR','assign','getConfigPath','join','toString','pm2\x20logs','1199037LAQeKb','804582QvkRWd','sshSync','ssh.json','readFileSync','845016vBqxTa','maka\x20l\x20-e\x20p','maka\x20logs\x20--env\x20staging','log','logs','search','apply','create','verbose','15591SpZBwM','10tqxnLN','parse','863668XuUMqZ'];a76c=function(){return m;};return a76c();}Command[a76k(0x1f4)]({'name':a76k(0x210),'aliases':['l',a76k(0x20f)],'usage':'maka\x20logs','requiredOpts':[a76k(0x1fa)],'mustBeInMakaProject':!![],'validOpts':[a76k(0x1f5)],'shortDesc':'View\x20the\x20PM2\x20logs','examples':[a76k(0x1fb),a76k(0x20e),a76k(0x20d)]},function(a,b){const l=a76k,c=l(0x206),d=this[l(0x200)][l(0x203)](b[l(0x1fa)]),e=a76f[l(0x204)](d,l(0x20a)),f=a76e[l(0x20b)](e),g=JSON[l(0x1f8)](f[l(0x205)]());Object[l(0x202)](g,{'env':d}),SSH[l(0x209)](c,g,{'tty':!![],'verbose':!![]});});
@@ -1 +1 @@
1
- const a77j=a77d;(function(a,b){const g=a77d,c=a();while(!![]){try{const d=-parseInt(g(0x1e9))/0x1+-parseInt(g(0x200))/0x2*(parseInt(g(0x1f2))/0x3)+-parseInt(g(0x1f6))/0x4*(-parseInt(g(0x1fc))/0x5)+parseInt(g(0x1f7))/0x6+parseInt(g(0x1e8))/0x7*(-parseInt(g(0x1fb))/0x8)+-parseInt(g(0x1eb))/0x9*(-parseInt(g(0x1ff))/0xa)+parseInt(g(0x1fe))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x939da));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a77d;if(c){const e=c[h(0x1ed)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const i=a77d;return a77a[i(0x1f5)]()[i(0x1ee)](i(0x1ea))['toString']()[i(0x1fa)](a77a)[i(0x1ee)](i(0x1ea));});function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x1e7;let f=c[d];return f;},a77d(a,b);}a77a();import{Command}from'../command.js';const Maka=new Command({'name':a77j(0x1ec),'minArgLength':0x1,'shortDesc':a77j(0x1fd),'validOpts':[],'usage':a77j(0x1e7),'disableAuthCheck':!![],'examples':['maka\x20--help','maka\x20install\x20meteor',a77j(0x1f9),'maka\x20run'],'description':a77j(0x1f0)},async function(a,b){const k=a77j;try{const c=a[0x0],d=this['findSubCommand'](c);d?this[k(0x1f1)](c,a[k(0x1f8)](0x1),b):this[k(0x1f3)][k(0x1f4)]();}catch(f){console['error'](f),process[k(0x1ef)](0x1);}});export default Maka;function a77c(){const l=['maka\x20<command>\x20[<args>]\x20[<opts>]','63sgRzQd','281543rVJlAS','(((.+)+)+)+$','9gSPota','maka','apply','search','exit','\x0a\x0a\x20\x20Scaffold\x20Web\x20Applications\x20with\x20Meteor\x20and\x20Maka-CLI\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.-:\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20:-.\x20\x20\x20\x20\x20:--\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::\x20\x20::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::::::\x20.:::::::\x20..\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20..:.....\x20.::..::.\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20.::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::::::\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20\x20::::::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::..-::.\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::....\x20\x20::..---:..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20.\x20.:::::::\x20\x20::..::.\x20..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20\x20:.\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:--\x20\x20\x20\x20\x20\x20\x20\x20\x20.--.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-:\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20:\x0a.:..::...::.\x20\x20\x20....:\x20\x20\x20.:\x20\x20\x20::\x20\x20....:.\x20\x20\x20\x20\x20\x20\x20\x20.::::\x20\x20.:\x20\x20::\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20\x20....:-\x20\x20.-..:.\x20\x20\x20....:-\x20\x20...\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20.:\x20\x20\x20:-\x20\x20.-\x20\x20.:\x20\x20.:\x20\x20\x20:-\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a.:.\x20\x20\x20:.\x20\x20\x20.:\x20\x20....\x20:.\x20.:.\x20\x20..\x20\x20....\x20:.\x20\x20\x20\x20\x20\x20\x20.....\x20\x20.:.\x20.:.\x0a\x0a\x20\x20','runSubCommand','28206qiIyZS','fsi','maybeProxyCommandToMeteor','toString','534908AtsGEr','4996698jAljiQ','slice','maka\x20create\x20Todo','constructor','1027576ZLTuMj','40STppMy','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','731808lrRJwb','918770aeohqz','4FYmtyo'];a77c=function(){return l;};return a77c();}
1
+ const a77j=a77d;function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x1b5;let f=c[d];return f;},a77d(a,b);}(function(a,b){const g=a77d,c=a();while(!![]){try{const d=-parseInt(g(0x1b7))/0x1*(parseInt(g(0x1bf))/0x2)+-parseInt(g(0x1c7))/0x3+-parseInt(g(0x1c6))/0x4*(parseInt(g(0x1cc))/0x5)+parseInt(g(0x1c5))/0x6+parseInt(g(0x1ca))/0x7+-parseInt(g(0x1b9))/0x8*(-parseInt(g(0x1cb))/0x9)+parseInt(g(0x1bc))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0xc177e));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a77d;if(c){const e=c[h(0x1c9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const i=a77d;return a77a['toString']()[i(0x1c3)](i(0x1be))[i(0x1b8)]()[i(0x1c2)](a77a)[i(0x1c3)]('(((.+)+)+)+$');});a77a();function a77c(){const l=['maka','8433350tOrpLs','maybeProxyCommandToMeteor','(((.+)+)+)+$','2aoiGis','maka\x20--help','runSubCommand','constructor','search','fsi','9329214wbxqvm','1817068ZuGCcu','2779125cBLfwy','maka\x20create\x20Todo','apply','564368PIPigK','315guKyjn','15UNKRIe','slice','exit','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','maka\x20install\x20meteor','maka\x20run','444196ncmnwv','toString','239312firIhn','\x0a\x0a\x20\x20Scaffold\x20Web\x20Applications\x20with\x20Meteor\x20and\x20Maka-CLI\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.-:\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20:-.\x20\x20\x20\x20\x20:--\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::\x20\x20::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::::::\x20.:::::::\x20..\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20..:.....\x20.::..::.\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20.::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::::::\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20\x20::::::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::..-::.\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::....\x20\x20::..---:..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20.\x20.:::::::\x20\x20::..::.\x20..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20\x20:.\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:--\x20\x20\x20\x20\x20\x20\x20\x20\x20.--.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-:\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20:\x0a.:..::...::.\x20\x20\x20....:\x20\x20\x20.:\x20\x20\x20::\x20\x20....:.\x20\x20\x20\x20\x20\x20\x20\x20.::::\x20\x20.:\x20\x20::\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20\x20....:-\x20\x20.-..:.\x20\x20\x20....:-\x20\x20...\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20.:\x20\x20\x20:-\x20\x20.-\x20\x20.:\x20\x20.:\x20\x20\x20:-\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a.:.\x20\x20\x20:.\x20\x20\x20.:\x20\x20....\x20:.\x20.:.\x20\x20..\x20\x20....\x20:.\x20\x20\x20\x20\x20\x20\x20.....\x20\x20.:.\x20.:.\x0a\x0a\x20\x20'];a77c=function(){return l;};return a77c();}import{Command}from'../command.js';const Maka=new Command({'name':a77j(0x1bb),'minArgLength':0x1,'shortDesc':a77j(0x1cf),'validOpts':[],'usage':'maka\x20<command>\x20[<args>]\x20[<opts>]','disableAuthCheck':!![],'examples':[a77j(0x1c0),a77j(0x1b5),a77j(0x1c8),a77j(0x1b6)],'description':a77j(0x1ba)},async function(a,b){const k=a77j;try{const c=a[0x0],d=this['findSubCommand'](c);d?this[k(0x1c1)](c,a[k(0x1cd)](0x1),b):this[k(0x1c4)][k(0x1bd)]();}catch(f){console['error'](f),process[k(0x1ce)](0x1);}});export default Maka;
@@ -1 +1 @@
1
- function a78c(){var k=['44746031dlXEUe','1006184xKnkLG','399CfOfMs','%c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.___.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20/)\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20,-^\x20\x20\x20\x20\x20^-.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20/\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x0a.-------|\x20|--------------/\x20\x20__\x20\x20\x20\x20\x20__\x20\x20\x5c-------------------.__\x0a|WMWMWMW|\x20|>>>>>>>>>>>>>\x20|\x20/>>\x5c\x20\x20\x20/>>\x5c\x20|>>>>>>>>>>>>>>>>>>>>>>:>\x0a`-------|\x20|--------------|\x20\x5c__/\x20\x20\x20\x5c__/\x20|-------------------\x27^^\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x5c\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x20/|\x5c\x20\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c)\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x5c_/\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20|\x20\x20\x20\x20\x20\x20\x20|\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20|+H+H+H+|\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x20\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20^-----^\x0a\x0a','5OZGPyD','error','apply','635410gTsqus','murder','10lEXQAn','Murrrrderrrrr','183846krrypN','toString','5352592NgmOQP','create','exit','10504600pMOZjx','search','log','constructor','323067KzgONk','135ZxxEew','(((.+)+)+)+$'];a78c=function(){return k;};return a78c();}var a78i=a78d;(function(a,b){var f=a78d,c=a();while(!![]){try{var d=parseInt(f(0x7f))/0x1+-parseInt(f(0x70))/0x2*(-parseInt(f(0x7b))/0x3)+parseInt(f(0x74))/0x4*(parseInt(f(0x82))/0x5)+-parseInt(f(0x72))/0x6*(-parseInt(f(0x80))/0x7)+parseInt(f(0x77))/0x8+-parseInt(f(0x7c))/0x9*(parseInt(f(0x85))/0xa)+-parseInt(f(0x7e))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0xe0f6d));function a78d(a,b){var c=a78c();return a78d=function(d,e){d=d-0x70;var f=c[d];return f;},a78d(a,b);}var a78b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a78d;if(c){var e=c[g(0x84)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){var h=a78d;return a78a[h(0x73)]()['search']('(((.+)+)+)+$')[h(0x73)]()[h(0x7a)](a78a)[h(0x78)](h(0x7d));});a78a();import{Command}from'../command.js';Command[a78i(0x75)]({'name':a78i(0x86),'usage':'maka\x20murder','maxArgLength':0x1,'shortDesc':a78i(0x71),'validOpts':[]},async function(){var j=a78i;try{console[j(0x79)](j(0x81),'font-family:\x20monospace');}catch(a){console[j(0x83)](a),process[j(0x76)](0x0);}});
1
+ function a78c(){var k=['667010ihNpng','1148iiVoaa','apply','30cnucXd','font-family:\x20monospace','268147keJskp','search','5844684ylBAfx','11886fuYLYx','maka\x20murder','error','122877ViGAxw','5904CXoFXo','toString','104qqSNdl','148920znYafJ','22xwUALz','(((.+)+)+)+$','create','%c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.___.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20/)\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20,-^\x20\x20\x20\x20\x20^-.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20/\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x0a.-------|\x20|--------------/\x20\x20__\x20\x20\x20\x20\x20__\x20\x20\x5c-------------------.__\x0a|WMWMWMW|\x20|>>>>>>>>>>>>>\x20|\x20/>>\x5c\x20\x20\x20/>>\x5c\x20|>>>>>>>>>>>>>>>>>>>>>>:>\x0a`-------|\x20|--------------|\x20\x5c__/\x20\x20\x20\x5c__/\x20|-------------------\x27^^\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x5c\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x20/|\x5c\x20\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c)\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x5c_/\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20|\x20\x20\x20\x20\x20\x20\x20|\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20|+H+H+H+|\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x20\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20^-----^\x0a\x0a','87wUjxZJ','log','constructor'];a78c=function(){return k;};return a78c();}function a78d(a,b){var c=a78c();return a78d=function(d,e){d=d-0x1df;var f=c[d];return f;},a78d(a,b);}var a78i=a78d;(function(a,b){var f=a78d,c=a();while(!![]){try{var d=parseInt(f(0x1e2))/0x1+parseInt(f(0x1e9))/0x2*(parseInt(f(0x1f1))/0x3)+-parseInt(f(0x1ec))/0x4*(parseInt(f(0x1e0))/0x5)+parseInt(f(0x1e5))/0x6*(parseInt(f(0x1f5))/0x7)+parseInt(f(0x1eb))/0x8*(parseInt(f(0x1e8))/0x9)+-parseInt(f(0x1f4))/0xa*(-parseInt(f(0x1ed))/0xb)+-parseInt(f(0x1e4))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x44235));var a78b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a78d;if(c){var e=c[g(0x1df)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){var h=a78d;return a78a[h(0x1ea)]()[h(0x1e3)](h(0x1ee))[h(0x1ea)]()[h(0x1f3)](a78a)[h(0x1e3)](h(0x1ee));});a78a();import{Command}from'../command.js';Command[a78i(0x1ef)]({'name':'murder','usage':a78i(0x1e6),'maxArgLength':0x1,'shortDesc':'Murrrrderrrrr','validOpts':[]},async function(){var j=a78i;try{console[j(0x1f2)](j(0x1f0),j(0x1e1));}catch(a){console[j(0x1e7)](a),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a79q=a79d;(function(a,b){const n=a79d,c=a();while(!![]){try{const d=-parseInt(n(0x149))/0x1*(parseInt(n(0x153))/0x2)+parseInt(n(0x14d))/0x3*(-parseInt(n(0x15a))/0x4)+parseInt(n(0x14a))/0x5*(-parseInt(n(0x166))/0x6)+-parseInt(n(0x16b))/0x7*(-parseInt(n(0x143))/0x8)+-parseInt(n(0x148))/0x9*(-parseInt(n(0x140))/0xa)+-parseInt(n(0x14f))/0xb+parseInt(n(0x14c))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0xb03a5));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a79d;if(c){const e=c[o(0x16d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const p=a79d;return a79a[p(0x145)]()['search']('(((.+)+)+)+$')[p(0x145)]()[p(0x16a)](a79a)[p(0x16c)]('(((.+)+)+)+$');});a79a();import a79e from'fs';import a79f from'path';import a79g from'http-proxy';function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x140;let f=c[d];return f;},a79d(a,b);}import{Command}from'../command.js';function a79c(){const s=['Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','genSSC','targetHost','.csr','listenPort','create','genCSR','246yOaxEq','isFile','maka\x20proxy\x20--target-host\x20http://192.168.1.20','.key','constructor','607551XBfKVW','search','apply','10QSzOet','\x20to\x20','listen','96eFRcJv','utf8','toString','fsi','error','6442641eHsOth','8887CqwMNQ','121455lWZsqN','getConfigPath','42012960bsycfN','267PZiddQ','maka\x20proxy','14273039rthpjf','join','development','findGenerator','318hEfowL','readFileSync','getProjectConfig','help','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','.crt','bright','37308lGVlAg','sslconfig','\x0a\x20\x20If\x20you\x27re\x20running\x20your\x20Meteor\x20service,\x20and\x20need\x20to\x20stand\x20up\x20an\x20SSL\x0a\x20\x20Proxy,\x20this\x20command\x20will\x20automatically\x20create\x20a\x20key\x20pair\x20for\x20use\x20in\x20an\x20HTTPS\x0a\x20\x20proxy.\x0a\x0a\x20\x20For\x20example,\x20you\x27re\x20running\x20http://localhost:3000\x20with\x20\x22maka\x20run\x22\x20then\x20open\x20a\x20new\x0a\x20\x20terminal\x20and\x20run\x20\x22maka\x20proxy\x22\x20to\x20standup\x20https://localhost:3443.\x0a\x20\x20Then\x20open\x20your\x20browser\x20to\x20that\x20URL\x20(you\x20may\x20need\x20to\x20trust\x20the\x20certificates\x0a\x20\x20because\x20they\x20are\x20self-signed)\x20and\x20you\x27ll\x20have\x20an\x20SSL\x20connection\x20to\x20your\x0a\x20\x20http://localhost:3000.\x0a\x0a\x20\x20To\x20avoid\x20possibly\x20overwriting\x20PKI\x20files\x20in\x20higher\x20environments,\x20\x22maka\x20proxy\x22\x0a\x20\x20will\x20try\x20to\x20only\x20generate\x20/\x20store\x20PKI\x20keys\x20in\x20the\x20development\x20environment.\x0a\x20\x20','targetPort','appName'];a79c=function(){return s;};return a79c();}import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';import{SSL}from'../tools/ssl/ssl.class.js';import a79h from'../generators/maka.gen.js';Command[a79q(0x164)]({'name':'proxy','usage':a79q(0x14e),'mustBeInMakaProject':!![],'validOpts':[a79q(0x156),a79q(0x15d),a79q(0x163),a79q(0x161)],'maxArgLength':0x1,'shortDesc':a79q(0x157),'description':a79q(0x15c),'examples':['maka\x20proxy','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000',a79q(0x168)]},async function(a,b){const r=a79q,c=this[r(0x146)][r(0x155)](),d=r(0x151),e=this[r(0x146)][r(0x14b)](d),f=this[r(0x146)]['mkKeysDir']({'configPath':e}),g=b['targetPort']?Number(b['targetPort']):0xbb8,h=b[r(0x163)]?Number(b[r(0x163)]):0xd73,i=b[r(0x161)]?b[r(0x161)]:'localhost',j=a79f[r(0x150)](f,c[r(0x15e)]+'.key'),k=a79f[r(0x150)](f,c[r(0x15e)]+r(0x158));if(!this[r(0x146)][r(0x167)](j)||!this[r(0x146)]['isFile'](k)){const m=a79h[r(0x152)](r(0x15b));m&&await m['invoke']([r(0x15b)],{'env':d}),SSL[r(0x165)]({'keyName':c[r(0x15e)]+r(0x169),'csrName':c['appName']+r(0x162),'cwd':f}),SSL[r(0x160)]({'keyName':c[r(0x15e)]+r(0x169),'crtName':c[r(0x15e)]+r(0x158),'cwd':f});}if(g===h){Log[r(0x147)](r(0x15f));throw new UsageError();}const l={'ssl':{'key':a79e[r(0x154)](j,r(0x144)),'cert':a79e[r(0x154)](k,r(0x144))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a79g['createProxyServer'](l)[r(0x142)](Number(h)),Log[r(0x159)]('=>\x20SSL\x20Proxy\x20forwarding\x20'+h+r(0x141)+g);});
1
+ const a79p=a79d;function a79c(){const r=['development','isFile','647916hxocbt','855519DMokGY','invoke','5JrMAAr','=>\x20SSL\x20Proxy\x20forwarding\x20','sslconfig','923768vnMLPp','targetPort','.csr','(((.+)+)+)+$','2606746DypfVI','join','421288aWUPwL','5043260FUSjSa','proxy','.key','listenPort','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','targetHost','bright','search','findGenerator','listen','mkKeysDir','77cPIafE','appName','readFileSync','createProxyServer','fsi','localhost','getProjectConfig','error','maka\x20proxy\x20--target-host\x20http://192.168.1.20','toString','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','.crt','create','maka\x20proxy','utf8','13811688JIBdjE','9vHWtyt','genCSR','3veGKje','\x20to\x20'];a79c=function(){return r;};return a79c();}function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x191;let f=c[d];return f;},a79d(a,b);}(function(a,b){const n=a79d,c=a();while(!![]){try{const d=-parseInt(n(0x1bd))/0x1+-parseInt(n(0x198))/0x2*(-parseInt(n(0x1b8))/0x3)+parseInt(n(0x19a))/0x4*(-parseInt(n(0x191))/0x5)+-parseInt(n(0x1bc))/0x6+-parseInt(n(0x1a6))/0x7*(-parseInt(n(0x194))/0x8)+parseInt(n(0x1b6))/0x9*(parseInt(n(0x19b))/0xa)+-parseInt(n(0x1b5))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0xb7f25));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const o=a79d;return a79a['toString']()[o(0x1a2)]('(((.+)+)+)+$')[o(0x1af)]()['constructor'](a79a)['search'](o(0x197));});a79a();import a79e from'fs';import a79f from'path';import a79g from'http-proxy';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';import{SSL}from'../tools/ssl/ssl.class.js';import a79h from'../generators/maka.gen.js';Command[a79p(0x1b2)]({'name':a79p(0x19c),'usage':a79p(0x1b3),'mustBeInMakaProject':!![],'validOpts':['help',a79p(0x195),a79p(0x19e),a79p(0x1a0)],'maxArgLength':0x1,'shortDesc':a79p(0x19f),'description':'\x0a\x20\x20If\x20you\x27re\x20running\x20your\x20Meteor\x20service,\x20and\x20need\x20to\x20stand\x20up\x20an\x20SSL\x0a\x20\x20Proxy,\x20this\x20command\x20will\x20automatically\x20create\x20a\x20key\x20pair\x20for\x20use\x20in\x20an\x20HTTPS\x0a\x20\x20proxy.\x0a\x0a\x20\x20For\x20example,\x20you\x27re\x20running\x20http://localhost:3000\x20with\x20\x22maka\x20run\x22\x20then\x20open\x20a\x20new\x0a\x20\x20terminal\x20and\x20run\x20\x22maka\x20proxy\x22\x20to\x20standup\x20https://localhost:3443.\x0a\x20\x20Then\x20open\x20your\x20browser\x20to\x20that\x20URL\x20(you\x20may\x20need\x20to\x20trust\x20the\x20certificates\x0a\x20\x20because\x20they\x20are\x20self-signed)\x20and\x20you\x27ll\x20have\x20an\x20SSL\x20connection\x20to\x20your\x0a\x20\x20http://localhost:3000.\x0a\x0a\x20\x20To\x20avoid\x20possibly\x20overwriting\x20PKI\x20files\x20in\x20higher\x20environments,\x20\x22maka\x20proxy\x22\x0a\x20\x20will\x20try\x20to\x20only\x20generate\x20/\x20store\x20PKI\x20keys\x20in\x20the\x20development\x20environment.\x0a\x20\x20','examples':['maka\x20proxy','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000',a79p(0x1ae)]},async function(a,b){const q=a79p,c=this[q(0x1aa)][q(0x1ac)](),d=q(0x1ba),e=this['fsi']['getConfigPath'](d),f=this[q(0x1aa)][q(0x1a5)]({'configPath':e}),g=b['targetPort']?Number(b[q(0x195)]):0xbb8,h=b['listenPort']?Number(b[q(0x19e)]):0xd73,i=b['targetHost']?b[q(0x1a0)]:q(0x1ab),j=a79f[q(0x199)](f,c['appName']+q(0x19d)),k=a79f['join'](f,c[q(0x1a7)]+q(0x1b1));if(!this[q(0x1aa)]['isFile'](j)||!this[q(0x1aa)][q(0x1bb)](k)){const m=a79h[q(0x1a3)](q(0x193));m&&await m[q(0x1be)](['sslconfig'],{'env':d}),SSL[q(0x1b7)]({'keyName':c[q(0x1a7)]+q(0x19d),'csrName':c[q(0x1a7)]+q(0x196),'cwd':f}),SSL['genSSC']({'keyName':c[q(0x1a7)]+'.key','crtName':c[q(0x1a7)]+'.crt','cwd':f});}if(g===h){Log[q(0x1ad)](q(0x1b0));throw new UsageError();}const l={'ssl':{'key':a79e[q(0x1a8)](j,q(0x1b4)),'cert':a79e[q(0x1a8)](k,q(0x1b4))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a79g[q(0x1a9)](l)[q(0x1a4)](Number(h)),Log[q(0x1a1)](q(0x192)+h+q(0x1b9)+g);});
@@ -1 +1 @@
1
- const a80q=a80d;(function(a,b){const n=a80d,c=a();while(!![]){try{const d=parseInt(n(0xf4))/0x1+-parseInt(n(0xe2))/0x2*(-parseInt(n(0xf5))/0x3)+parseInt(n(0xf7))/0x4+-parseInt(n(0xe3))/0x5+parseInt(n(0xda))/0x6*(-parseInt(n(0xd2))/0x7)+parseInt(n(0xde))/0x8*(-parseInt(n(0xf2))/0x9)+-parseInt(n(0xdc))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xe15e8));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a80d;if(c){const e=c[o(0xea)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const p=a80d;return a80a[p(0xef)]()['search'](p(0xdb))[p(0xef)]()['constructor'](a80a)[p(0xe4)]('(((.+)+)+)+$');});a80a();import a80e from'fs';import a80f from'path';import{Command}from'../command.js';function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0xd2;let f=c[d];return f;},a80d(a,b);}import{Log}from'../tools/log/log.class.js';function a80c(){const s=['toString','readFileSync','maka\x20reconfig','1035UPifYp','ses.json','1625778pgaQPs','3YVEiVu','existsSync','3323244FREprM','2266068MyhtWW','success','settings.json','echo\x20\x22\x22\x20&&\x20pm2\x20start\x20pm2.config.js\x20&&\x20echo\x20\x22\x22\x20||\x20echo\x20\x22Cound\x20not\x20find\x20PM2,\x20have\x20you\x20deployed\x20the\x20app\x20yet?\x22','uname\x20-a','Checking\x20remote\x20host\x20availability','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','join','24tgkSqX','(((.+)+)+)+$','3286440AVQahC','error','6928povdvN','~/ses.json','create','_keys','2269742UjVkSQ','4726090xgnxjO','search','notice','fsi','ssh.json','\x0a\x20\x20If\x20using\x20a\x20remote\x20server\x20(Ubuntu),\x20send\x20up\x20the\x20settings.json\x0a\x20\x20and\x20pm2.config.js\x20files\x20and\x20reloads\x20the\x20PM2\x20service.\x0a\x20\x20','~/settings.json','apply','scp','Reconfigure\x20your\x20deployed\x20applications','ssh','exit'];a80c=function(){return s;};return a80c();}import{SSH}from'../tools/ssh/ssh.class.js';Command[a80q(0xe0)]({'name':'reconfig','validOpts':[''],'requiredOpts':['env'],'mustBeInMakaProject':!![],'usage':a80q(0xf1),'shortDesc':a80q(0xec),'description':a80q(0xe8),'examples':['maka\x20reconfig\x20--env\x20prod']},async function(a,b){const r=a80q;try{const c=this[r(0xe6)]['getConfigPath'](b['env']),d=a80f[r(0xd9)](c,r(0xe7)),f=a80e[r(0xf0)](d)[r(0xef)](),g=JSON['parse'](f);Object['assign'](g,{'env':c}),Log[r(0xe5)](r(0xd7));const h=SSH['ping'](r(0xd6),g);if(!h)throw r(0xd8);if(h)Log[r(0xd3)]('Remote\x20host\x20connection\x20successful');const i=a80f[r(0xd9)](c,r(0xe1),r(0xf3));if(a80e[r(0xf6)](i)){const l={'source':i,'dest':r(0xdf),'verbose':!![]};SSH[r(0xeb)](l,{...g});}const j=a80f[r(0xd9)](c,'pm2.config.js');SSH[r(0xeb)]({'source':j,'dest':'~/pm2.config.js','verbose':!![]},{...g});const k=a80f[r(0xd9)](c,r(0xd4));SSH['scp']({'source':k,'dest':r(0xe9),'verbose':!![]},{...g}),SSH['sshSync']('pm2\x20delete\x20all',g),await SSH[r(0xed)](r(0xd5),{...g},{'verbose':!![]});}catch(m){console[r(0xdd)](m),process[r(0xee)](0x0);}});
1
+ const a80q=a80d;(function(a,b){const n=a80d,c=a();while(!![]){try{const d=parseInt(n(0xb5))/0x1*(-parseInt(n(0xa9))/0x2)+parseInt(n(0x96))/0x3+parseInt(n(0xa1))/0x4+parseInt(n(0x8d))/0x5*(parseInt(n(0xaf))/0x6)+parseInt(n(0x92))/0x7+parseInt(n(0x9e))/0x8+-parseInt(n(0xb6))/0x9*(parseInt(n(0x8c))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xd099a));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a80d;if(c){const e=c[o(0x9a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const p=a80d;return a80a[p(0x99)]()[p(0x9f)](p(0x93))[p(0x99)]()[p(0xa3)](a80a)['search'](p(0x93));});a80a();import a80e from'fs';import a80f from'path';function a80c(){const s=['~/pm2.config.js','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','toString','apply','\x0a\x20\x20If\x20using\x20a\x20remote\x20server\x20(Ubuntu),\x20send\x20up\x20the\x20settings.json\x0a\x20\x20and\x20pm2.config.js\x20files\x20and\x20reloads\x20the\x20PM2\x20service.\x0a\x20\x20','~/settings.json','Reconfigure\x20your\x20deployed\x20applications','10162128xZbCtI','search','join','2120416sziFDK','ssh','constructor','scp','ses.json','Checking\x20remote\x20host\x20availability','~/ses.json','ssh.json','5972vNOhyF','reconfig','exit','maka\x20reconfig','pm2\x20delete\x20all','pm2.config.js','6PfOAbD','notice','Remote\x20host\x20connection\x20successful','maka\x20reconfig\x20--env\x20prod','settings.json','uname\x20-a','265bzCvoD','27eyGFXO','5663530OtcmuS','2311805gwnMds','ping','env','create','error','3046743tOpSoP','(((.+)+)+)+$','success','existsSync','1940385oLYQUW'];a80c=function(){return s;};return a80c();}function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x8c;let f=c[d];return f;},a80d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a80q(0x90)]({'name':a80q(0xaa),'validOpts':[''],'requiredOpts':[a80q(0x8f)],'mustBeInMakaProject':!![],'usage':a80q(0xac),'shortDesc':a80q(0x9d),'description':a80q(0x9b),'examples':[a80q(0xb2)]},async function(a,b){const r=a80q;try{const c=this['fsi']['getConfigPath'](b[r(0x8f)]),d=a80f[r(0xa0)](c,r(0xa8)),f=a80e['readFileSync'](d)[r(0x99)](),g=JSON['parse'](f);Object['assign'](g,{'env':c}),Log[r(0xb0)](r(0xa6));const h=SSH[r(0x8e)](r(0xb4),g);if(!h)throw r(0x98);if(h)Log[r(0x94)](r(0xb1));const i=a80f[r(0xa0)](c,'_keys',r(0xa5));if(a80e[r(0x95)](i)){const l={'source':i,'dest':r(0xa7),'verbose':!![]};SSH['scp'](l,{...g});}const j=a80f[r(0xa0)](c,r(0xae));SSH['scp']({'source':j,'dest':r(0x97),'verbose':!![]},{...g});const k=a80f[r(0xa0)](c,r(0xb3));SSH[r(0xa4)]({'source':k,'dest':r(0x9c),'verbose':!![]},{...g}),SSH['sshSync'](r(0xad),g),await SSH[r(0xa2)]('echo\x20\x22\x22\x20&&\x20pm2\x20start\x20pm2.config.js\x20&&\x20echo\x20\x22\x22\x20||\x20echo\x20\x22Cound\x20not\x20find\x20PM2,\x20have\x20you\x20deployed\x20the\x20app\x20yet?\x22',{...g},{'verbose':!![]});}catch(m){console[r(0x91)](m),process[r(0xab)](0x0);}});
@@ -1 +1 @@
1
- function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x132;var f=c[d];return f;},a81d(a,b);}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x132))/0x1*(-parseInt(f(0x13b))/0x2)+-parseInt(f(0x139))/0x3+-parseInt(f(0x133))/0x4*(-parseInt(f(0x140))/0x5)+parseInt(f(0x13d))/0x6+-parseInt(f(0x141))/0x7*(-parseInt(f(0x136))/0x8)+parseInt(f(0x13a))/0x9*(parseInt(f(0x137))/0xa)+parseInt(f(0x13e))/0xb*(-parseInt(f(0x13f))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xbc2f7));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x138)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x13c)]()['search'](h(0x134))[h(0x13c)]()['constructor'](a81a)[h(0x135)](h(0x134));});a81a();import'./run.command.js';import'./docker.sub.cmd.js';function a81c(){var i=['search','536HAaGQd','7190oOUWNr','apply','1029693ivnQsr','18441BkqHPb','4soQarx','toString','7364250hVjTVy','33Ehrrth','10401252lOMPfv','4845LXeBrd','137977tIkCXy','317207YAQiEh','1352ySxQAG','(((.+)+)+)+$'];a81c=function(){return i;};return a81c();}
1
+ function a81c(){var i=['635496GtKfmJ','161GMPaLK','7WWRchM','6803766nEOvRc','toString','5nSpDaq','53338ddRwIe','(((.+)+)+)+$','constructor','3568734CgogmJ','5158860SUMXDa','apply','20130hyYNiS','6240908ndiVlf','search','31251KWFRat'];a81c=function(){return i;};return a81c();}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x1ca))/0x1*(parseInt(f(0x1ce))/0x2)+-parseInt(f(0x1d2))/0x3+-parseInt(f(0x1d5))/0x4*(parseInt(f(0x1cd))/0x5)+-parseInt(f(0x1d1))/0x6+parseInt(f(0x1c9))/0x7*(-parseInt(f(0x1d8))/0x8)+parseInt(f(0x1cb))/0x9+-parseInt(f(0x1d4))/0xa*(-parseInt(f(0x1d7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xea59f));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x1d3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x1cc)]()[h(0x1d6)](h(0x1cf))[h(0x1cc)]()[h(0x1d0)](a81a)[h(0x1d6)](h(0x1cf));});function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x1c9;var f=c[d];return f;},a81d(a,b);}a81a();import'./run.command.js';import'./docker.sub.cmd.js';
@@ -1 +1 @@
1
- const a82l=a82d;(function(a,b){const i=a82d,c=a();while(!![]){try{const d=-parseInt(i(0x142))/0x1*(-parseInt(i(0x14c))/0x2)+parseInt(i(0x138))/0x3+parseInt(i(0x143))/0x4+parseInt(i(0x13a))/0x5+parseInt(i(0x147))/0x6*(-parseInt(i(0x136))/0x7)+-parseInt(i(0x13e))/0x8+-parseInt(i(0x134))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x58ce7));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a82d;if(c){const e=c[j(0x13c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const k=a82d;return a82a[k(0x148)]()[k(0x14a)](k(0x13b))[k(0x148)]()[k(0x145)](a82a)['search'](k(0x13b));});a82a();import a82e from'./run.command.js';function a82c(){const n=['config/docker-compose.yaml','pm2.config.js','createFile','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','maka\x20run\x20docker','notice','docker-compose.yaml','existsSync','12510756HjukJH','fsi','7105QjcVTf','join','1472316fxFXrw','exit','2866990kGnVTN','(((.+)+)+)+$','apply','PM2\x20Config\x20File:\x20','1042904vAszFw','getConfigPath','docker','appName','56880DviRAn','2149992MUHyFX','docker-compose\x20--project-directory\x20','constructor','create','1356SCUcjX','toString','getProjectConfig','search','inherit','18oHpqHv'];a82c=function(){return n;};return a82c();}function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x131;let f=c[d];return f;},a82d(a,b);}import{execSync}from'child_process';import a82f from'path';import a82g from'fs';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';Command[a82l(0x146)]({'name':a82l(0x140),'aliases':['d'],'shortDesc':a82l(0x150),'description':'\x0a\x20\x20Run\x20your\x20application\x20in\x20a\x20Docker\x20container.\x20\x20Docker\x20Desktop\x20or\x20Colmia\x20is\x20required.\x0a\x0a\x20\x20Colima\x20is\x20a\x20great\x20alternative\x20to\x20Docker\x20Desktop,\x20and\x20it\x20is\x20free!\x0a\x20\x20Colima:\x20https://github.com/abiosoft/colima\x0a\x0a\x0a\x20\x20A\x20docker-compose.yml\x20file\x20(location\x20defaulted\x20to\x20the\x20\x22config/docker\x22\x20folder)\x0a\x20\x20is\x20used\x20to\x20startup\x20mongo\x20and\x20load\x20the\x20built\x20image\x27\x0a\x20\x20','usage':a82l(0x151),'validOpts':['']},async function(){const m=a82l;try{const a=this[m(0x135)][m(0x149)](),b=this[m(0x135)][m(0x13f)]('docker'),c=a82f['join'](b,m(0x132)),d=a82f[m(0x137)](b,m(0x14e));Log[m(0x131)](m(0x13d)+d),Log['notice']('Docker\x20Compose\x20Path:\x20'+c);if(!a82g[m(0x133)](c)){const f={'app':a[m(0x141)],'appFileCase':paramCase(a[m(0x141)])},g=this['fsi']['templateContent']({'srcPath':m(0x14d),'context':f})+'\x0a';this[m(0x135)][m(0x14f)]({'filePath':c,'data':g});}execSync(m(0x144)+b+'\x20up\x20--remove-orphans',{'stdio':m(0x14b)});}catch(h){process[m(0x139)](0x1);}},a82e);
1
+ const a82l=a82d;(function(a,b){const i=a82d,c=a();while(!![]){try{const d=-parseInt(i(0x1b0))/0x1*(parseInt(i(0x1b7))/0x2)+parseInt(i(0x1b3))/0x3+parseInt(i(0x1bb))/0x4+-parseInt(i(0x1cd))/0x5*(parseInt(i(0x1bc))/0x6)+parseInt(i(0x1be))/0x7*(parseInt(i(0x1b8))/0x8)+-parseInt(i(0x1ca))/0x9*(parseInt(i(0x1c0))/0xa)+-parseInt(i(0x1c6))/0xb*(-parseInt(i(0x1bd))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x79c53));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a82d;if(c){const e=c[j(0x1d1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const k=a82d;return a82a[k(0x1c4)]()['search'](k(0x1c5))[k(0x1c4)]()[k(0x1b1)](a82a)['search'](k(0x1c5));});function a82c(){const n=['appName','fsi','apply','1VolvmQ','constructor','PM2\x20Config\x20File:\x20','1180671olTYcn','config/docker-compose.yaml','existsSync','templateContent','997714UnpKHK','8WHILKi','docker-compose.yaml','\x20up\x20--remove-orphans','3857232CPXsbW','1898964iVHJxn','803688fhWPoH','2024883NIIPVM','inherit','93020iazetA','join','pm2.config.js','docker-compose\x20--project-directory\x20','toString','(((.+)+)+)+$','11skGVYu','maka\x20run\x20docker','getConfigPath','exit','387tZGtZI','docker','getProjectConfig','5Znrczo','createFile'];a82c=function(){return n;};return a82c();}a82a();import a82e from'./run.command.js';import{execSync}from'child_process';import a82f from'path';import a82g from'fs';import{Log}from'../../tools/log/log.class.js';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x1b0;let f=c[d];return f;},a82d(a,b);}import{Command}from'../../command.js';import{paramCase}from'change-case';Command['create']({'name':'docker','aliases':['d'],'shortDesc':'Run\x20your\x20application\x20in\x20a\x20Docker\x20container','description':'\x0a\x20\x20Run\x20your\x20application\x20in\x20a\x20Docker\x20container.\x20\x20Docker\x20Desktop\x20or\x20Colmia\x20is\x20required.\x0a\x0a\x20\x20Colima\x20is\x20a\x20great\x20alternative\x20to\x20Docker\x20Desktop,\x20and\x20it\x20is\x20free!\x0a\x20\x20Colima:\x20https://github.com/abiosoft/colima\x0a\x0a\x0a\x20\x20A\x20docker-compose.yml\x20file\x20(location\x20defaulted\x20to\x20the\x20\x22config/docker\x22\x20folder)\x0a\x20\x20is\x20used\x20to\x20startup\x20mongo\x20and\x20load\x20the\x20built\x20image\x27\x0a\x20\x20','usage':a82l(0x1c7),'validOpts':['']},async function(){const m=a82l;try{const a=this['fsi'][m(0x1cc)](),b=this[m(0x1d0)][m(0x1c8)](m(0x1cb)),c=a82f[m(0x1c1)](b,m(0x1b9)),d=a82f['join'](b,m(0x1c2));Log['notice'](m(0x1b2)+d),Log['notice']('Docker\x20Compose\x20Path:\x20'+c);if(!a82g[m(0x1b5)](c)){const f={'app':a[m(0x1cf)],'appFileCase':paramCase(a[m(0x1cf)])},g=this[m(0x1d0)][m(0x1b6)]({'srcPath':m(0x1b4),'context':f})+'\x0a';this[m(0x1d0)][m(0x1ce)]({'filePath':c,'data':g});}execSync(m(0x1c3)+b+m(0x1ba),{'stdio':m(0x1bf)});}catch(h){process[m(0x1c9)](0x1);}},a82e);
@@ -1 +1 @@
1
- const a83v=a83d;(function(a,b){const r=a83d,c=a();while(!![]){try{const d=parseInt(r(0x1b2))/0x1+-parseInt(r(0x1b9))/0x2*(-parseInt(r(0x1ae))/0x3)+-parseInt(r(0x1aa))/0x4*(parseInt(r(0x198))/0x5)+parseInt(r(0x19c))/0x6+parseInt(r(0x1a2))/0x7*(-parseInt(r(0x196))/0x8)+parseInt(r(0x1c0))/0x9+-parseInt(r(0x1a5))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0xb4ccd));function a83c(){const y=['env','extraPackages','push','exit','slice','error','installMeteorPackage','isDirectory','search','Run\x20your\x20Meteor\x20application','splice','allowIncompatibleUpdate','12872AmieuJ','findProjectDirectory','5jLBdGH','\x0a\x20\x20maka\x20run\x0a\x20\x20-e\x20|\x20--env\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20The\x20target\x20environment.\x20\x20Will\x20automatically\x20pull\x20in\x20the\x20meteor\x20settings\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20file\x20(settings.json)\x20and\x20any\x20environment\x20options\x20that\x20have\x20been\x20enabled.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Defaults\x20to\x20the\x20development\x20(dev)\x20environment.\x0a\x0a\x20\x20-r\x20|\x20--raw-logs\x20\x20\x20\x20\x20\x20\x20Only\x20output\x20the\x20meteor\x20logs\x20without\x20the\x20timestamp.\x0a\x0a\x20\x20-p\x20|\x20--port\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20The\x20port\x20to\x20run\x20the\x20meteor\x20server\x20on.\x20Defaults\x20to\x20port\x203000.\x0a\x0a\x20\x20-i\x20|\x20--inspect\x20\x20\x20\x20\x20\x20\x20\x20Tells\x20the\x20meteor\x20server\x20to\x20run\x20nodejs\x20in\x20debug\x20mode.\x20Starts\x20a\x20debug\x20session\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20which\x20can\x20be\x20accessed\x20by\x20Chrome\x20Dev\x20Tools\x20or\x20another\x20debug\x20terminal.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Default\x20port\x20is\x209229.\x0a\x0a\x20\x20-m\x20|\x20--mobile-server\x20\x20Specify\x20a\x20different\x20backend\x20server\x20to\x20connect\x20to.\x20\x20Mainly\x20used\x20when\x20running\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20mobile\x20app\x20mode\x20with\x20Cordova.\x0a\x0a\x20\x20-x\x20|\x20--exclude-archs\x20\x20Don\x27t\x20create\x20bundles\x20for\x20certain\x20web\x20architectures\x20(comma\x20separated,\x20for\x20example:\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--exclude-archs\x20\x22web.browser.legacy,\x20web.cordova\x22)\x0a\x0a\x20\x20--production\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Runs\x20the\x20application\x20in\x20production\x20mode;\x20minifies\x20and\x20bundles\x20all\x20files\x20and\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20removes\x20development\x20packages.','toString','checkMeteorPackage','233544iSNonT','(((.+)+)+)+$','--env','production','inspect','notice','1806DQgIWz','Meteor\x20Settings:\x20','fsi','8844130CDxYts','cordova-build','settings','--production','apply','2928740eLvZXi','docker','openSync','mobile-server','700803lAjoKT','isFile','ios','filter','331624EpZhKC','autoupdate','mobileServer','length','.meteor','constructor','Verifying\x20meteor\x20package\x20requirements\x20...','8OtqCxC','join','warn','concat','getConfigPath','--settings','findSubCommand','13205925NMOzYw','exclude-archs','settings.json','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','runSubCommand','config'];a83c=function(){return y;};return a83c();}const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const s=a83d;if(c){const e=c[s(0x1a9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const t=a83d;return a83a['toString']()[t(0x1ce)]('(((.+)+)+)+$')[t(0x19a)]()[t(0x1b7)](a83a)[t(0x1ce)](t(0x19d));});a83a();import a83e from'path';import a83f from'fs';import a83g from'dotenv';import{rimraf}from'rimraf';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x196;let f=c[d];return f;},a83d(a,b);}const syncSource=function(a){const u=a83d;a83f[u(0x1ac)](a,'r'),a83g[u(0x1c5)]({'path':a});},Run=Command['create']({'name':'run','mustBeInMakaProject':!![],'shortDesc':a83v(0x1cf),'description':a83v(0x199),'validOpts':['env',a83v(0x1ab),'r','rawLogs','p','port','i',a83v(0x1a0),'m',a83v(0x1b4),'v','verbose',a83v(0x1d1),a83v(0x1c7),'x',a83v(0x1c1),a83v(0x19f)]},async function(a,b){const w=a83v;try{const c=this[w(0x1a4)][w(0x197)]();!this[w(0x1a4)][w(0x19b)](w(0x1b3))&&(Log[w(0x1a1)](w(0x1b8)),await this[w(0x1a4)][w(0x1cc)]('autoupdate',{'cwd':c}));const d=a[0x0],f=this[w(0x1bf)](d);f&&this[w(0x1c4)](d,a,b);if(d===w(0x1b0)){const n=this[w(0x1a4)][w(0x197)](),o=a83e[w(0x1ba)](n,'app',w(0x1b6),'local',w(0x1a6));this['fsi'][w(0x1cd)](o)&&await rimraf(o);}if(b['mobile-server']&&b[w(0x1ad)]===!![]||b['m']&&b['m']===!![])throw'Please\x20provide\x20a\x20URL\x20where\x20your\x20mobile\x20app\x20should\x20connect\x20to\x20your\x20server\x20(e.g.,\x20-m\x20|\x20--mobile-server=https://example-server.com)';await this[w(0x1a4)]['compareMakaToLatest']();const g=b[w(0x1c6)]?b[w(0x1c6)]:'development',h=this[w(0x1a4)][w(0x1bd)](g),i=a83e[w(0x1ba)](h,'process.env');let j=a83e[w(0x1ba)](h,w(0x1c2));b[w(0x1a7)]?j=b[w(0x1a7)]:j=a83e[w(0x1ba)](h,'settings.json');if(this[w(0x1a4)][w(0x1af)](i)&&!b[w(0x1ab)])Log[w(0x1a1)]('Node\x20Env\x20Config:\x20'+i),syncSource(i);else!b[w(0x1ab)]&&Log[w(0x1bb)]('Cannot\x20find\x20Node\x20Environment\x20File:\x20'+i);this['fsi']['isFile'](j)?(Log['notice'](w(0x1a3)+j),a=a[w(0x1bc)]([w(0x1be),j])):Log[w(0x1bb)](w(0x1c3)+j);const k=h['split'](a83e['sep']),l=k[k[w(0x1b5)]-0x1];l==='production'&&a[w(0x1c8)](w(0x1a8));const m=process['argv'][w(0x1ca)](0x2)[w(0x1b1)](p=>p!=='run')['filter'](p=>p!==a[0x0]);m['forEach']((p,q)=>{const x=w;p===x(0x19e)&&m[x(0x1d0)](q,0x2),p==='-e'&&m[x(0x1d0)](q,0x2);}),this['fsi']['invokeMeteorCommand']('run',a[w(0x1bc)](m));}catch(p){console[w(0x1cb)](p),process[w(0x1c9)](0x1);}});export default Run;
1
+ const a83v=a83d;(function(a,b){const r=a83d,c=a();while(!![]){try{const d=-parseInt(r(0xb1))/0x1+parseInt(r(0xa7))/0x2+parseInt(r(0xd8))/0x3*(parseInt(r(0xc1))/0x4)+parseInt(r(0xc9))/0x5+parseInt(r(0xa1))/0x6*(-parseInt(r(0xc0))/0x7)+parseInt(r(0xbf))/0x8+-parseInt(r(0xd1))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x8f211));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const s=a83d;if(c){const e=c[s(0xb0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const t=a83d;return a83a[t(0xb3)]()[t(0xce)](t(0x9e))[t(0xb3)]()[t(0xb5)](a83a)['search']('(((.+)+)+)+$');});a83a();import a83e from'path';import a83f from'fs';import a83g from'dotenv';function a83c(){const y=['1545615qsSKWe','ios','checkMeteorPackage','runSubCommand','--production','search','port','splice','8174016DJVYvp','autoupdate','argv','join','notice','openSync','sep','12qXtFZr','isDirectory','(((.+)+)+)+$','mobileServer','docker','24xMaPPc','settings','development','concat','local','Please\x20provide\x20a\x20URL\x20where\x20your\x20mobile\x20app\x20should\x20connect\x20to\x20your\x20server\x20(e.g.,\x20-m\x20|\x20--mobile-server=https://example-server.com)','1188046PFovUN','warn','findProjectDirectory','env','allowIncompatibleUpdate','exclude-archs','Node\x20Env\x20Config:\x20','production','extraPackages','apply','344113gtxjhm','verbose','toString','split','constructor','inspect','app','Run\x20your\x20Meteor\x20application','--settings','run','\x0a\x20\x20maka\x20run\x0a\x20\x20-e\x20|\x20--env\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20The\x20target\x20environment.\x20\x20Will\x20automatically\x20pull\x20in\x20the\x20meteor\x20settings\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20file\x20(settings.json)\x20and\x20any\x20environment\x20options\x20that\x20have\x20been\x20enabled.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Defaults\x20to\x20the\x20development\x20(dev)\x20environment.\x0a\x0a\x20\x20-r\x20|\x20--raw-logs\x20\x20\x20\x20\x20\x20\x20Only\x20output\x20the\x20meteor\x20logs\x20without\x20the\x20timestamp.\x0a\x0a\x20\x20-p\x20|\x20--port\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20The\x20port\x20to\x20run\x20the\x20meteor\x20server\x20on.\x20Defaults\x20to\x20port\x203000.\x0a\x0a\x20\x20-i\x20|\x20--inspect\x20\x20\x20\x20\x20\x20\x20\x20Tells\x20the\x20meteor\x20server\x20to\x20run\x20nodejs\x20in\x20debug\x20mode.\x20Starts\x20a\x20debug\x20session\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20which\x20can\x20be\x20accessed\x20by\x20Chrome\x20Dev\x20Tools\x20or\x20another\x20debug\x20terminal.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Default\x20port\x20is\x209229.\x0a\x0a\x20\x20-m\x20|\x20--mobile-server\x20\x20Specify\x20a\x20different\x20backend\x20server\x20to\x20connect\x20to.\x20\x20Mainly\x20used\x20when\x20running\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20mobile\x20app\x20mode\x20with\x20Cordova.\x0a\x0a\x20\x20-x\x20|\x20--exclude-archs\x20\x20Don\x27t\x20create\x20bundles\x20for\x20certain\x20web\x20architectures\x20(comma\x20separated,\x20for\x20example:\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--exclude-archs\x20\x22web.browser.legacy,\x20web.cordova\x22)\x0a\x0a\x20\x20--production\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Runs\x20the\x20application\x20in\x20production\x20mode;\x20minifies\x20and\x20bundles\x20all\x20files\x20and\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20removes\x20development\x20packages.','fsi','slice','forEach','3257216vnjdAZ','190239KXlWGb','637004BFpvlP','Meteor\x20Settings:\x20','filter','settings.json','--env','compareMakaToLatest','Verifying\x20meteor\x20package\x20requirements\x20...','.meteor'];a83c=function(){return y;};return a83c();}import{rimraf}from'rimraf';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x9d;let f=c[d];return f;},a83d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';const syncSource=function(a){const u=a83d;a83f[u(0xd6)](a,'r'),a83g['config']({'path':a});},Run=Command['create']({'name':'run','mustBeInMakaProject':!![],'shortDesc':a83v(0xb8),'description':a83v(0xbb),'validOpts':[a83v(0xaa),a83v(0xa0),'r','rawLogs','p',a83v(0xcf),'i',a83v(0xb6),'m',a83v(0x9f),'v',a83v(0xb2),a83v(0xab),a83v(0xaf),'x',a83v(0xac),a83v(0xae)]},async function(a,b){const w=a83v;try{const c=this[w(0xbc)][w(0xa9)]();!this['fsi'][w(0xcb)]('autoupdate')&&(Log[w(0xd5)](w(0xc7)),await this[w(0xbc)]['installMeteorPackage'](w(0xd2),{'cwd':c}));const d=a[0x0],f=this['findSubCommand'](d);f&&this[w(0xcc)](d,a,b);if(d===w(0xca)){const n=this['fsi'][w(0xa9)](),o=a83e[w(0xd4)](n,w(0xb7),w(0xc8),w(0xa5),'cordova-build');this[w(0xbc)][w(0x9d)](o)&&await rimraf(o);}if(b['mobile-server']&&b['mobile-server']===!![]||b['m']&&b['m']===!![])throw w(0xa6);await this[w(0xbc)][w(0xc6)]();const g=b[w(0xaa)]?b['env']:w(0xa3),h=this[w(0xbc)]['getConfigPath'](g),i=a83e[w(0xd4)](h,'process.env');let j=a83e[w(0xd4)](h,w(0xc4));b[w(0xa2)]?j=b[w(0xa2)]:j=a83e[w(0xd4)](h,'settings.json');if(this[w(0xbc)]['isFile'](i)&&!b[w(0xa0)])Log[w(0xd5)](w(0xad)+i),syncSource(i);else!b[w(0xa0)]&&Log[w(0xa8)]('Cannot\x20find\x20Node\x20Environment\x20File:\x20'+i);this['fsi']['isFile'](j)?(Log[w(0xd5)](w(0xc2)+j),a=a[w(0xa4)]([w(0xb9),j])):Log['warn']('Cannot\x20find\x20Meteor\x20Settings\x20File:\x20'+j);const k=h[w(0xb4)](a83e[w(0xd7)]),l=k[k['length']-0x1];l===w(0xae)&&a['push'](w(0xcd));const m=process[w(0xd3)][w(0xbd)](0x2)[w(0xc3)](p=>p!==w(0xba))[w(0xc3)](p=>p!==a[0x0]);m[w(0xbe)]((p,q)=>{const x=w;p===x(0xc5)&&m[x(0xd0)](q,0x2),p==='-e'&&m['splice'](q,0x2);}),this['fsi']['invokeMeteorCommand'](w(0xba),a[w(0xa4)](m));}catch(p){console['error'](p),process['exit'](0x1);}});export default Run;
@@ -1 +1 @@
1
- (function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0xf2))/0x1*(-parseInt(f(0xea))/0x2)+-parseInt(f(0xe7))/0x3*(-parseInt(f(0xeb))/0x4)+-parseInt(f(0xe3))/0x5+parseInt(f(0xe4))/0x6+parseInt(f(0xef))/0x7*(-parseInt(f(0xe2))/0x8)+parseInt(f(0xe8))/0x9*(-parseInt(f(0xee))/0xa)+parseInt(f(0xe6))/0xb*(parseInt(f(0xf1))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0x5975f));var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0xf0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a[h(0xe9)]()[h(0xe5)](h(0xed))['toString']()[h(0xec)](a84a)[h(0xe5)](h(0xed));});a84a();import'./set.command.js';function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0xe2;var f=c[d];return f;},a84d(a,b);}function a84c(){var i=['2646ZiogMb','260228wZEDoX','constructor','(((.+)+)+)+$','20itBZtF','7pzQGNp','apply','108036yqUrUf','434lweFKe','94984wLmyPM','3640090zjAFOm','805824FfrOaE','search','1023lmpEAk','9GvlIpr','2855763Syjnbg','toString'];a84c=function(){return i;};return a84c();}import'./global.sub.cmd.js';import'./local.sub.cmd.js';
1
+ (function(a,b){var f=a84d,c=a();while(!![]){try{var d=parseInt(f(0x11e))/0x1+-parseInt(f(0x11b))/0x2+parseInt(f(0x118))/0x3*(parseInt(f(0x121))/0x4)+parseInt(f(0x11c))/0x5+parseInt(f(0x11a))/0x6+-parseInt(f(0x115))/0x7*(-parseInt(f(0x11d))/0x8)+-parseInt(f(0x117))/0x9*(parseInt(f(0x114))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xab523));function a84c(){var i=['30116BJhhQC','345430cZQJde','6328763eGNnbs','apply','927yNiaPW','381DnyLyx','(((.+)+)+)+$','316332jAnjPw','619478gKWJIR','6414165RGWARP','8GXTkDg','1373552matNOo','search','toString'];a84c=function(){return i;};return a84c();}var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0x116)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a[h(0x120)]()[h(0x11f)](h(0x119))[h(0x120)]()['constructor'](a84a)[h(0x11f)](h(0x119));});a84a();function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x114;var f=c[d];return f;},a84d(a,b);}import'./set.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';
@@ -1 +1 @@
1
- const a85k=a85d;(function(a,b){const h=a85d,c=a();while(!![]){try{const d=-parseInt(h(0x1e6))/0x1+-parseInt(h(0x1c1))/0x2+-parseInt(h(0x1cd))/0x3*(parseInt(h(0x1e3))/0x4)+parseInt(h(0x1c6))/0x5+parseInt(h(0x1e8))/0x6*(-parseInt(h(0x1ce))/0x7)+parseInt(h(0x1d6))/0x8*(parseInt(h(0x1d0))/0x9)+-parseInt(h(0x1c7))/0xa*(-parseInt(h(0x1c9))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x9cc0c));const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a85d;if(c){const e=c[i(0x1c3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const j=a85d;return a85a[j(0x1ca)]()[j(0x1d5)](j(0x1d9))[j(0x1ca)]()['constructor'](a85a)['search'](j(0x1d9));});function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x1bf;let f=c[d];return f;},a85d(a,b);}a85a();import a85e from'path';function a85c(){const m=['help','boolean','15692QwJDpJ','Could\x20not\x20find\x20directory','openai','127604gQfCLl','fsi','46038vhIpXc','cacert','error','1442166KDxssZ','isFile','apply','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x0a\x20\x20There\x20are\x20occasions\x20where\x20your\x20network\x20may\x20need\x20an\x20intermediate\x20certificate\x0a\x20\x20to\x20allow\x20connections\x20outside.\x20\x20You\x20may\x20set\x20your\x20certificate\x20path\x20using\x20the\x20command:\x0a\x0a\x20\x20maka\x20set:gc\x20--cacert\x0a\x20\x20','pallet','47590OPPKhb','40ADiYDQ','success','7128352xwJZsI','toString','resolve','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','837OQAWSV','497CllQbM','workspace','4755609eThkIf','maka\x20set:gc\x20--insecure\x20<path>','Set\x20global\x20Maka-CLI\x20settings','create','global-config','search','8lEmJui','Set\x20color\x20pallet\x20to:\x20','exit','(((.+)+)+)+$','disallowInsecure','setGlobalConfig','Set\x20CA\x20Cert\x20Path:\x20','maka\x20set:global-config\x20<args>','allowInsecure','Set\x20workspace:\x20','Set\x20allowInsecure:\x20'];a85c=function(){return m;};return a85c();}import a85f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a85k(0x1d3)]({'name':a85k(0x1d4),'usage':a85k(0x1dd),'aliases':['gc'],'minOptsLength':0x1,'maxOptsLength':0x3,'validOpts':[{'name':a85k(0x1bf),'boolFlag':![]},{'name':a85k(0x1de),'boolFlag':!![]},{'name':a85k(0x1da),'boolFlag':!![]},{'name':a85k(0x1cf),'boolFlag':![]},{'name':'openai','boolFlag':![]},{'name':a85k(0x1e1),'boolFlag':!![]},{'name':a85k(0x1c5),'values':['light','dark']}],'shortDesc':a85k(0x1d2),'description':a85k(0x1c4),'examples':['maka\x20set:global-config\x20--cacert\x20<path>',a85k(0x1d1),'maka\x20set:gc\x20--workspace\x20<path>']},async function(a,b){const l=a85k;try{if(b['cacert']){if(this[l(0x1e7)][l(0x1c2)](b[l(0x1bf)]))await this[l(0x1e7)][l(0x1db)]({'cert':b[l(0x1bf)]}),Log[l(0x1c8)](l(0x1dc)+b[l(0x1bf)]);else{const c=typeof b[l(0x1bf)]===l(0x1e2)?l(0x1cc):'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+b[l(0x1bf)];throw Log[l(0x1c0)](c);}}if(b['workspace']){const d=this[l(0x1e7)]['isDirectory'](b[l(0x1cf)]);if(d)await this[l(0x1e7)][l(0x1db)]({'workspace':a85e[l(0x1cb)](b[l(0x1cf)])}),Log[l(0x1c8)](l(0x1df)+a85e[l(0x1cb)](b[l(0x1cf)]));else throw Log['error'](l(0x1e4));}b[l(0x1e5)]&&(await this[l(0x1e7)][l(0x1db)]({'openai':b[l(0x1e5)]}),Log[l(0x1c8)]('Set\x20OpenAI\x20Key:\x20'+b['openai']));b[l(0x1c5)]&&(await this['fsi'][l(0x1db)]({'pallet':b[l(0x1c5)]}),Log['success'](l(0x1d7)+b[l(0x1c5)]));if(b[l(0x1de)]){if(b[l(0x1de)]&&b[l(0x1da)])throw Log[l(0x1c0)]('One\x20or\x20the\x20other\x20buddy');let f=b['allowInsecure'];b[l(0x1da)]&&(f=![]),await this[l(0x1e7)][l(0x1db)]({'allowInsecure':f}),Log['success'](l(0x1e0)+f);}process[l(0x1d8)](0x0);}catch(g){console['error'](g),process[l(0x1d8)](0x0);}},a85f);
1
+ const a85k=a85d;(function(a,b){const h=a85d,c=a();while(!![]){try{const d=parseInt(h(0x1fd))/0x1*(-parseInt(h(0x1dc))/0x2)+parseInt(h(0x1e0))/0x3*(parseInt(h(0x1fa))/0x4)+parseInt(h(0x1db))/0x5+parseInt(h(0x1e4))/0x6+-parseInt(h(0x201))/0x7*(parseInt(h(0x205))/0x8)+-parseInt(h(0x1fe))/0x9*(-parseInt(h(0x1e7))/0xa)+-parseInt(h(0x1f0))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x5622b));function a85c(){const m=['error','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','setGlobalConfig','1117164kYeCBe','apply','fsi','1790430XlNsPY','create','allowInsecure','pallet','cacert','disallowInsecure','dark','Set\x20global\x20Maka-CLI\x20settings','resolve','2138675OOgfPu','One\x20or\x20the\x20other\x20buddy','search','toString','Set\x20workspace:\x20','boolean','maka\x20set:global-config\x20<args>','isFile','success','Set\x20OpenAI\x20Key:\x20','10808NTeuCS','Set\x20color\x20pallet\x20to:\x20','openai','71948pKQosG','9kwwGzF','maka\x20set:gc\x20--workspace\x20<path>','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x0a\x20\x20There\x20are\x20occasions\x20where\x20your\x20network\x20may\x20need\x20an\x20intermediate\x20certificate\x0a\x20\x20to\x20allow\x20connections\x20outside.\x20\x20You\x20may\x20set\x20your\x20certificate\x20path\x20using\x20the\x20command:\x0a\x0a\x20\x20maka\x20set:gc\x20--cacert\x0a\x20\x20','64771QobRKD','maka\x20set:global-config\x20--cacert\x20<path>','global-config','exit','120uXGRqJ','1776440ekpMPs','12sTiRKh','workspace','maka\x20set:gc\x20--insecure\x20<path>','isDirectory','441TvNJjt'];a85c=function(){return m;};return a85c();}const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a85d;if(c){const e=c[i(0x1e5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const j=a85d;return a85a['toString']()['search']('(((.+)+)+)+$')[j(0x1f3)]()['constructor'](a85a)[j(0x1f2)]('(((.+)+)+)+$');});function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x1db;let f=c[d];return f;},a85d(a,b);}a85a();import a85e from'path';import a85f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a85k(0x1e8)]({'name':a85k(0x203),'usage':a85k(0x1f6),'aliases':['gc'],'minOptsLength':0x1,'maxOptsLength':0x3,'validOpts':[{'name':a85k(0x1eb),'boolFlag':![]},{'name':a85k(0x1e9),'boolFlag':!![]},{'name':a85k(0x1ec),'boolFlag':!![]},{'name':a85k(0x1dd),'boolFlag':![]},{'name':a85k(0x1fc),'boolFlag':![]},{'name':'help','boolFlag':!![]},{'name':a85k(0x1ea),'values':['light',a85k(0x1ed)]}],'shortDesc':a85k(0x1ee),'description':a85k(0x200),'examples':[a85k(0x202),a85k(0x1de),a85k(0x1ff)]},async function(a,b){const l=a85k;try{if(b[l(0x1eb)]){if(this[l(0x1e6)][l(0x1f7)](b[l(0x1eb)]))await this[l(0x1e6)][l(0x1e3)]({'cert':b[l(0x1eb)]}),Log['success']('Set\x20CA\x20Cert\x20Path:\x20'+b['cacert']);else{const c=typeof b[l(0x1eb)]===l(0x1f5)?l(0x1e2):'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+b['cacert'];throw Log[l(0x1e1)](c);}}if(b[l(0x1dd)]){const d=this[l(0x1e6)][l(0x1df)](b['workspace']);if(d)await this[l(0x1e6)]['setGlobalConfig']({'workspace':a85e[l(0x1ef)](b[l(0x1dd)])}),Log[l(0x1f8)](l(0x1f4)+a85e[l(0x1ef)](b[l(0x1dd)]));else throw Log['error']('Could\x20not\x20find\x20directory');}b['openai']&&(await this[l(0x1e6)]['setGlobalConfig']({'openai':b['openai']}),Log[l(0x1f8)](l(0x1f9)+b[l(0x1fc)]));b['pallet']&&(await this[l(0x1e6)][l(0x1e3)]({'pallet':b[l(0x1ea)]}),Log['success'](l(0x1fb)+b['pallet']));if(b['allowInsecure']){if(b[l(0x1e9)]&&b[l(0x1ec)])throw Log[l(0x1e1)](l(0x1f1));let f=b[l(0x1e9)];b[l(0x1ec)]&&(f=![]),await this[l(0x1e6)]['setGlobalConfig']({'allowInsecure':f}),Log[l(0x1f8)]('Set\x20allowInsecure:\x20'+f);}process[l(0x204)](0x0);}catch(g){console[l(0x1e1)](g),process[l(0x204)](0x0);}},a85f);
@@ -1 +1 @@
1
- function a86d(a,b){var c=a86c();return a86d=function(d,e){d=d-0x1e9;var f=c[d];return f;},a86d(a,b);}var a86i=a86d;(function(a,b){var f=a86d,c=a();while(!![]){try{var d=parseInt(f(0x1f0))/0x1+parseInt(f(0x1f1))/0x2*(parseInt(f(0x1f2))/0x3)+-parseInt(f(0x1f9))/0x4+parseInt(f(0x1f5))/0x5+parseInt(f(0x1fb))/0x6+-parseInt(f(0x1f8))/0x7*(-parseInt(f(0x1ee))/0x8)+-parseInt(f(0x1eb))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xa2b71));function a86c(){var k=['5649500YSxXbF','maka\x20set:local-config\x20<opts>','apply','623ZibWim','2021848KOXuom','search','6302328FlhNOg','toString','local-config','constructor','26196831VvnczN','maka\x20set:lc\x20<opts>','notice','85640YzqqRK','(((.+)+)+)+$','553224ApNwsk','22654tagmNX','105CXJMoq','Sorry,\x20not\x20implemented\x20yet','create'];a86c=function(){return k;};return a86c();}var a86b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a86d;if(c){var e=c[g(0x1f7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){var h=a86d;return a86a['toString']()[h(0x1fa)](h(0x1ef))[h(0x1fc)]()[h(0x1ea)](a86a)[h(0x1fa)](h(0x1ef));});a86a();import a86e from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a86i(0x1f4)]({'name':a86i(0x1e9),'usage':a86i(0x1f6),'examples':[a86i(0x1ec),a86i(0x1f6)],'aliases':['lc'],'mustBeInMakaProject':!![],'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':'Set\x20local\x20maka\x20app\x20settings','validOpts':[],'description':'\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20'},async function(){var j=a86i;Log[j(0x1ed)](j(0x1f3));},a86e);
1
+ function a86d(a,b){var c=a86c();return a86d=function(d,e){d=d-0x1cb;var f=c[d];return f;},a86d(a,b);}function a86c(){var k=['10BOILVt','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','6CRicyx','notice','local-config','create','(((.+)+)+)+$','constructor','Sorry,\x20not\x20implemented\x20yet','maka\x20set:local-config\x20<opts>','74680VNTNgO','apply','207eJIozd','187YqPQTT','338264RcdOGz','261774FdVZKW','5821529QIljji','7753335FDhZGR','search','3106684lEeAcH','1150001VPxXJw'];a86c=function(){return k;};return a86c();}var a86i=a86d;(function(a,b){var f=a86d,c=a();while(!![]){try{var d=parseInt(f(0x1cb))/0x1+parseInt(f(0x1cc))/0x2*(parseInt(f(0x1db))/0x3)+parseInt(f(0x1df))/0x4+-parseInt(f(0x1dd))/0x5+-parseInt(f(0x1ce))/0x6*(parseInt(f(0x1dc))/0x7)+-parseInt(f(0x1da))/0x8*(-parseInt(f(0x1d8))/0x9)+-parseInt(f(0x1d6))/0xa*(parseInt(f(0x1d9))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xc9b59));var a86b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a86d;if(c){var e=c[g(0x1d7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){var h=a86d;return a86a['toString']()[h(0x1de)](h(0x1d2))['toString']()[h(0x1d3)](a86a)[h(0x1de)]('(((.+)+)+)+$');});a86a();import a86e from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a86i(0x1d1)]({'name':a86i(0x1d0),'usage':a86i(0x1d5),'examples':['maka\x20set:lc\x20<opts>',a86i(0x1d5)],'aliases':['lc'],'mustBeInMakaProject':!![],'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':'Set\x20local\x20maka\x20app\x20settings','validOpts':[],'description':a86i(0x1cd)},async function(){var j=a86i;Log[j(0x1cf)](j(0x1d4));},a86e);
@@ -1 +1 @@
1
- const a87i=a87d;(function(a,b){const f=a87d,c=a();while(!![]){try{const d=parseInt(f(0xc7))/0x1+-parseInt(f(0xcf))/0x2+-parseInt(f(0xd5))/0x3+-parseInt(f(0xce))/0x4+-parseInt(f(0xcb))/0x5+parseInt(f(0xd6))/0x6+-parseInt(f(0xcc))/0x7*(-parseInt(f(0xd2))/0x8);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0xed9a8));const a87b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a87d;if(c){const e=c[g(0xc8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){const h=a87d;return a87a['toString']()['search']('(((.+)+)+)+$')[h(0xc9)]()['constructor'](a87a)['search'](h(0xd1));});a87a();import{Command}from'../../command.js';import{UsageError}from'../../error.js';function a87d(a,b){const c=a87c();return a87d=function(d,e){d=d-0xc6;let f=c[d];return f;},a87d(a,b);}function a87c(){const k=['create','9710510BuMHeJ','91ZhcTpW','set','6533532TqSHkW','2383528VnfvDp','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x20\x20','(((.+)+)+)+$','3212664cZkJEI','runSubCommand','maka\x20set:<sub-command>\x20<opts>','1055412KlqMmJ','1551558qqBYJs','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','613105bOUTHq','apply','toString'];a87c=function(){return k;};return a87c();}const SetCommand=Command[a87i(0xca)]({'name':a87i(0xcd),'usage':a87i(0xd4),'minArgLength':0x1,'shortDesc':a87i(0xc6),'description':a87i(0xd0),'validOpts':[]},async function(a,b){const j=a87i,c=a[0x0];if(b['help'])throw new UsageError();const d=this['findSubCommand'](c);d&&this[j(0xd3)](c,a,b);});export default SetCommand;
1
+ const a87h=a87d;(function(a,b){const f=a87d,c=a();while(!![]){try{const d=parseInt(f(0x8f))/0x1+-parseInt(f(0x8c))/0x2+-parseInt(f(0x91))/0x3*(-parseInt(f(0x86))/0x4)+-parseInt(f(0x8a))/0x5+-parseInt(f(0x87))/0x6+-parseInt(f(0x84))/0x7+parseInt(f(0x90))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0xba920));const a87b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){const g=a87d;return a87a['toString']()[g(0x89)]('(((.+)+)+)+$')['toString']()[g(0x8d)](a87a)['search']('(((.+)+)+)+$');});function a87c(){const j=['3443012dgplqc','7692048LNhxlr','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','search','3690940biSoZM','findSubCommand','2041448XvZmTn','constructor','create','1435612KoUNor','23709584fLedJK','3JeUJbz','runSubCommand','10184657SrzuJi','help'];a87c=function(){return j;};return a87c();}a87a();import{Command}from'../../command.js';import{UsageError}from'../../error.js';function a87d(a,b){const c=a87c();return a87d=function(d,e){d=d-0x83;let f=c[d];return f;},a87d(a,b);}const SetCommand=Command[a87h(0x8e)]({'name':'set','usage':'maka\x20set:<sub-command>\x20<opts>','minArgLength':0x1,'shortDesc':a87h(0x88),'description':'\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x20\x20','validOpts':[]},async function(a,b){const i=a87h,c=a[0x0];if(b[i(0x85)])throw new UsageError();const d=this[i(0x8b)](c);d&&this[i(0x83)](c,a,b);});export default SetCommand;
@@ -1 +1 @@
1
- function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x72;let f=c[d];return f;},a88d(a,b);}const a88m=a88d;(function(a,b){const j=a88d,c=a();while(!![]){try{const d=-parseInt(j(0x81))/0x1+-parseInt(j(0x8e))/0x2+parseInt(j(0x75))/0x3*(-parseInt(j(0x84))/0x4)+-parseInt(j(0x77))/0x5+parseInt(j(0x8b))/0x6*(-parseInt(j(0x7a))/0x7)+parseInt(j(0x86))/0x8*(parseInt(j(0x7c))/0x9)+parseInt(j(0x7b))/0xa*(parseInt(j(0x93))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x92808));function a88c(){const o=['constructor','maka\x20ssh\x20--env\x20staging','toString','155478MrTCqx','join','assign','295052DWXpcp','verbose','exit','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','parse','19327sgZZFG','(((.+)+)+)+$','env','create','length','12VNhYXw','apply','4311445bLpJVg','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','maka\x20ssh\x20--env\x20prod','14JZJFvE','10310rVjRvC','612GaeijP','fsi','sshSync','getConfigPath','error','852454dXRkyN','readFileSync','maka\x20ssh\x20<command>','65564EChghq','ssh','90384kZnYJm','maka\x20ssh\x20--env\x20dev'];a88c=function(){return o;};return a88c();}const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a88d;if(c){const e=c[k(0x76)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const l=a88d;return a88a['toString']()['search'](l(0x94))[l(0x8a)]()[l(0x88)](a88a)['search'](l(0x94));});a88a();import a88e from'fs';import a88f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a88m(0x73)]({'name':a88m(0x85),'usage':a88m(0x83),'mustBeInMakaProject':!![],'requiredOpts':[a88m(0x72)],'validOpts':[a88m(0x72),a88m(0x8f)],'shortDesc':a88m(0x91),'examples':[a88m(0x87),a88m(0x89),a88m(0x79),'maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22',a88m(0x78),'maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22']},async function(a,b){const n=a88m;try{const c=this[n(0x7d)][n(0x7f)](b[n(0x72)]);let d='';a[n(0x74)]>0x0&&(d=a[0x0]);const f=a88f[n(0x8c)](c,'ssh.json'),g=a88e[n(0x82)](f)[n(0x8a)](),h=JSON[n(0x92)](g);Object[n(0x8d)](h,{'env':c}),SSH[n(0x7e)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0x8f)]});}catch(i){console[n(0x80)](i),process[n(0x90)](0x0);}});
1
+ const a88m=a88d;(function(a,b){const j=a88d,c=a();while(!![]){try{const d=parseInt(j(0x169))/0x1*(-parseInt(j(0x175))/0x2)+-parseInt(j(0x176))/0x3+-parseInt(j(0x174))/0x4+parseInt(j(0x173))/0x5+-parseInt(j(0x171))/0x6+-parseInt(j(0x15b))/0x7+-parseInt(j(0x15f))/0x8*(-parseInt(j(0x163))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0xdf5c2));const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a88d;if(c){const e=c[k(0x16a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const l=a88d;return a88a[l(0x162)]()[l(0x16f)](l(0x164))[l(0x162)]()['constructor'](a88a)['search']('(((.+)+)+)+$');});a88a();import a88e from'fs';import a88f from'path';function a88c(){const o=['length','902940XMWuHu','388152zMrPRU','24834qDmZIc','5175951vyjIKU','assign','getConfigPath','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','error','verbose','875854dMxAhf','sshSync','maka\x20ssh\x20--env\x20prod','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','8456TdMdUm','maka\x20ssh\x20--env\x20staging','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','toString','43128HuSLPx','(((.+)+)+)+$','ssh','env','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','exit','112sCqAbp','apply','parse','ssh.json','fsi','join','search','readFileSync','5956014FDgDXC'];a88c=function(){return o;};return a88c();}import{Command}from'../command.js';function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x156;let f=c[d];return f;},a88d(a,b);}import{SSH}from'../tools/ssh/ssh.class.js';Command['create']({'name':a88m(0x165),'usage':'maka\x20ssh\x20<command>','mustBeInMakaProject':!![],'requiredOpts':[a88m(0x166)],'validOpts':[a88m(0x166),a88m(0x15a)],'shortDesc':a88m(0x161),'examples':['maka\x20ssh\x20--env\x20dev',a88m(0x160),a88m(0x15d),a88m(0x167),a88m(0x158),a88m(0x15e)]},async function(a,b){const n=a88m;try{const c=this[n(0x16d)][n(0x157)](b['env']);let d='';a[n(0x172)]>0x0&&(d=a[0x0]);const f=a88f[n(0x16e)](c,n(0x16c)),g=a88e[n(0x170)](f)[n(0x162)](),h=JSON[n(0x16b)](g);Object[n(0x156)](h,{'env':c}),SSH[n(0x15c)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0x15a)]});}catch(i){console[n(0x159)](i),process[n(0x168)](0x0);}});
@@ -1 +1 @@
1
- const a89x=a89d;(function(a,b){const v=a89d,c=a();while(!![]){try{const d=-parseInt(v(0xcb))/0x1*(parseInt(v(0xb2))/0x2)+-parseInt(v(0xd0))/0x3*(parseInt(v(0xad))/0x4)+-parseInt(v(0xa4))/0x5+-parseInt(v(0x9f))/0x6+-parseInt(v(0xd7))/0x7+-parseInt(v(0xa0))/0x8*(parseInt(v(0xab))/0x9)+parseInt(v(0xa5))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0xc7aab));const a89b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){const w=a89d;return a89a[w(0xcf)]()[w(0xaf)](w(0xb4))[w(0xcf)]()[w(0xc2)](a89a)[w(0xaf)](w(0xb4));});a89a();import a89e from'fs';import a89f from'path';import{Actions}from'../tools/actions/actions.class.js';function a89d(a,b){const c=a89c();return a89d=function(d,e){d=d-0x9d;let f=c[d];return f;},a89d(a,b);}import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{SSL}from'../tools/ssl/ssl.class.js';function a89c(){const z=['appName','mkKeysDir','genSSC','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','constructor','uname\x20-a','Email\x20to\x20use\x20for\x20auto-updates:\x20','Please\x20provide\x20a\x20command.','\x20--email\x20','New\x20CSR\x20written\x20to\x20','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','create','Verifying\x20Letsencrypt\x20configuration','18YJSAeK','generate-csr','maka\x20ssl\x20--env\x20dev\x20generate-csr','notice','toString','106161CYJRxp','letsencrypt.json','.csr','start','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','email','fsi','6593335TDaJuz','ping','getProjectConfig','7670094sJWtaK','936352qpNwAc','ssl','ask','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','5468750HhrGTj','64652710CFjJLU','readFileSync','ssh','parse','genCSR','join','72XKfUEC','Using\x20saved\x20letsencrypt\x20config','104kaGNlw','domains','search','withSpinner','existsSync','53002jQPyRr','Remote\x20host\x20connection\x20successful','(((.+)+)+)+$','stringify','[?]\x20Domains\x20to\x20register:\x20','letsencrypt','getConfigPath','domainNames','maka\x20ssl\x20[command]','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','assign','error'];a89c=function(){return z;};return a89c();}Command[a89x(0xc9)]({'name':a89x(0xa1),'usage':a89x(0xba),'validOpts':[a89x(0xae),'email'],'requiredOpts':['env'],'shortDesc':'Create\x20and\x20manage\x20your\x20SSL\x20operations.','mustBeInMakaProject':!![],'minArgLength':0x1,'examples':[a89x(0xcd),'maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate',a89x(0xc8)]},async function(a,b){const y=a89x,c=this[y(0xd6)][y(0x9e)](),d=this[y(0xd6)][y(0xb8)](b['env']),f=this['fsi'][y(0xbf)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===y(0xcc))SSL[y(0xa9)]({'keyName':c[y(0xbe)]+'.key','csrName':c[y(0xbe)]+'.csr','cwd':f});else{if(g==='generate-ssc'){if(!a89e[y(0xb1)](a89f[y(0xaa)](f,c[y(0xbe)]+'.key')))throw'The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20'+a89f[y(0xaa)](f,c[y(0xbe)]+'.key');if(!a89e['existsSync'](a89f['join'](f,c[y(0xbe)]+'.csr')))throw y(0xc1)+a89f['join'](f,c[y(0xbe)]+y(0xd2));SSL[y(0xc0)]({'keyName':c[y(0xbe)]+'.key','crtName':c[y(0xbe)]+'.crt','cwd':f}),Log[y(0xce)](y(0xc7)+f);}else{if(g===y(0xb7)){let h=b['domains'],i=b[y(0xd5)];try{const p=a89e[y(0xa6)](a89f[y(0xaa)](d,y(0xd1)))[y(0xcf)](),q=JSON[y(0xa8)](p);h=b[y(0xae)]?b['domains']:q[y(0xb9)],i=b['email']?b[y(0xd5)]:q['emailUpdate'],(!b[y(0xd5)]||!b['domains'])&&Log['notice'](y(0xac));}catch(r){}const j=JSON[y(0xa8)](a89e[y(0xa6)](d+'/ssh.json')[y(0xcf)]());Object[y(0xbc)](j,{'env':d}),Log[y(0xce)]('Checking\x20remote\x20host\x20availability');try{const s=SSH[y(0x9d)](y(0xc3),j);if(!s)throw y(0xa3);if(s)Log['success'](y(0xb3));}catch(t){Log[y(0xbd)](t);return;}const k=Log[y(0xb0)]();k[y(0xd3)](y(0xca)),SSH[y(0xa7)]('sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core',{...j}),SSH['ssh']('sudo\x20snap\x20install\x20--classic\x20certbot',{...j}),SSH[y(0xa7)](y(0xbb),{...j}),k['success']();const l=h?h:await Actions['ask'](y(0xb6)),m=i?i:await Actions[y(0xa2)](y(0xc4));SSH[y(0xa7)](y(0xd4)+l+y(0xc6)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[y(0xb5)](n,null,0x2);a89e['writeFileSync'](a89f[y(0xaa)](d,y(0xd1)),o);}else throw y(0xc5);}}}catch(u){console['error'](u),process['exit'](0x0);}});
1
+ const a89y=a89d;(function(a,b){const v=a89d,c=a();while(!![]){try{const d=parseInt(v(0xf6))/0x1*(-parseInt(v(0xf5))/0x2)+parseInt(v(0xdc))/0x3+-parseInt(v(0xd4))/0x4*(parseInt(v(0xe2))/0x5)+parseInt(v(0xc6))/0x6*(parseInt(v(0xd7))/0x7)+parseInt(v(0xfa))/0x8+-parseInt(v(0xd1))/0x9*(-parseInt(v(0xe6))/0xa)+parseInt(v(0xf9))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x337eb));const a89b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a89d;if(c){const e=c[w(0xf7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){const x=a89d;return a89a[x(0xf8)]()['search'](x(0xce))[x(0xf8)]()['constructor'](a89a)[x(0xc8)]('(((.+)+)+)+$');});a89a();import a89e from'fs';import a89f from'path';function a89d(a,b){const c=a89c();return a89d=function(d,e){d=d-0xc1;let f=c[d];return f;},a89d(a,b);}import{Actions}from'../tools/actions/actions.class.js';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';function a89c(){const A=['exit','692548EWUaID','maka\x20ssl\x20[command]','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','220129xRdvLW','letsencrypt','success','email','env','54576sKaean','genSSC','writeFileSync','Using\x20saved\x20letsencrypt\x20config','ssl','notice','5FWWIXV','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','create','Checking\x20remote\x20host\x20availability','322550NHgZcv','fsi','existsSync','.crt','start','[?]\x20Domains\x20to\x20register:\x20','Create\x20and\x20manage\x20your\x20SSL\x20operations.','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','withSpinner','error','domainNames','generate-ssc','ssh','uname\x20-a','join','12RQuqcp','61329ehsPTH','apply','toString','184855emrQIN','620744PcfYTq','sudo\x20snap\x20install\x20--classic\x20certbot','ask','\x20--email\x20','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','New\x20CSR\x20written\x20to\x20','readFileSync','stringify','appName','letsencrypt.json','domains','42NZSkBi','.csr','search','mkKeysDir','parse','ping','getConfigPath','Please\x20provide\x20a\x20command.','(((.+)+)+)+$','assign','.key','117kjWqbJ','getProjectConfig'];a89c=function(){return A;};return a89c();}import{SSL}from'../tools/ssl/ssl.class.js';Command[a89y(0xe4)]({'name':a89y(0xe0),'usage':a89y(0xd5),'validOpts':[a89y(0xc5),a89y(0xda)],'requiredOpts':['env'],'shortDesc':a89y(0xec),'mustBeInMakaProject':!![],'minArgLength':0x1,'examples':['maka\x20ssl\x20--env\x20dev\x20generate-csr','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process']},async function(a,b){const z=a89y,c=this[z(0xe7)][z(0xd2)](),d=this['fsi'][z(0xcc)](b[z(0xdb)]),f=this[z(0xe7)][z(0xc9)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g==='generate-csr')SSL['genCSR']({'keyName':c['appName']+z(0xd0),'csrName':c[z(0xc3)]+z(0xc7),'cwd':f});else{if(g===z(0xf1)){if(!a89e[z(0xe8)](a89f['join'](f,c[z(0xc3)]+z(0xd0))))throw'The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20'+a89f[z(0xf4)](f,c[z(0xc3)]+'.key');if(!a89e[z(0xe8)](a89f[z(0xf4)](f,c[z(0xc3)]+z(0xc7))))throw z(0xe3)+a89f[z(0xf4)](f,c[z(0xc3)]+z(0xc7));SSL[z(0xdd)]({'keyName':c['appName']+z(0xd0),'crtName':c['appName']+z(0xe9),'cwd':f}),Log[z(0xe1)](z(0xff)+f);}else{if(g===z(0xd8)){let h=b['domains'],i=b[z(0xda)];try{const p=a89e[z(0xc1)](a89f[z(0xf4)](d,z(0xc4)))[z(0xf8)](),q=JSON['parse'](p);h=b[z(0xc5)]?b['domains']:q[z(0xf0)],i=b[z(0xda)]?b[z(0xda)]:q['emailUpdate'],(!b[z(0xda)]||!b[z(0xc5)])&&Log['notice'](z(0xdf));}catch(r){}const j=JSON[z(0xca)](a89e[z(0xc1)](d+'/ssh.json')[z(0xf8)]());Object[z(0xcf)](j,{'env':d}),Log['notice'](z(0xe5));try{const s=SSH[z(0xcb)](z(0xf3),j);if(!s)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(s)Log[z(0xd9)]('Remote\x20host\x20connection\x20successful');}catch(t){Log[z(0xef)](t);return;}const k=Log[z(0xee)]();k[z(0xea)]('Verifying\x20Letsencrypt\x20configuration'),SSH[z(0xf2)](z(0xed),{...j}),SSH[z(0xf2)](z(0xfb),{...j}),SSH[z(0xf2)](z(0xfe),{...j}),k[z(0xd9)]();const l=h?h:await Actions[z(0xfc)](z(0xeb)),m=i?i:await Actions['ask']('Email\x20to\x20use\x20for\x20auto-updates:\x20');SSH[z(0xf2)](z(0xd6)+l+z(0xfd)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0xc2)](n,null,0x2);a89e[z(0xde)](a89f[z(0xf4)](d,z(0xc4)),o);}else throw z(0xcd);}}}catch(u){console[z(0xef)](u),process[z(0xd3)](0x0);}});
@@ -1 +1 @@
1
- const a90q=a90d;(function(a,b){const m=a90d,c=a();while(!![]){try{const d=parseInt(m(0x1ce))/0x1+parseInt(m(0x1cb))/0x2+parseInt(m(0x1e5))/0x3+-parseInt(m(0x1bc))/0x4*(parseInt(m(0x1f6))/0x5)+-parseInt(m(0x1c0))/0x6+parseInt(m(0x1de))/0x7+-parseInt(m(0x1d3))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0xb81fb));function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x1b6;let f=c[d];return f;},a90d(a,b);}const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a90d;if(c){const e=c[n(0x1d8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const o=a90d;return a90a[o(0x1c3)]()['search'](o(0x1c2))[o(0x1c3)]()[o(0x1dd)](a90a)[o(0x1f5)](o(0x1c2));});a90a();import a90e from'fs';import a90f from'path';import a90g from'dotenv';function a90c(){const t=['readFileSync','jasmine','1165092krnnuF','--full-app','env','warn','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','once','packages','testAppPath','settings.json','rawLogs','error','none','isFile','Node\x20Env\x20Config:\x20','concat','--packages','search','1239220TntcIU','inspect','argv','invokeMeteorCommand','forEach','utf8','Meteor\x20Settings:\x20','16nhdLQz','create','join','driver','2989812QhvlYY','unit','(((.+)+)+)+$','toString','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','findProjectDirectory','splice','notice','mocha','maka\x20test\x20<opts>','meteortesting:mocha','1136094DikdGS','--env','config','1136669DwVOPD','openSync','parse','Cannot\x20find\x20Node\x20Environment\x20File:\x20','test','9742064ZnJAWl','config.json','driverPackage','--driver','getConfigPath','apply','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','--driver-package','fsi','slice','constructor','9579689bMPmEt','development','sanjo:jasmine','.maka','exit'];a90c=function(){return t;};return a90c();}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const syncSource=function(a){const p=a90d;a90e[p(0x1cf)](a,'r'),a90g[p(0x1cd)]({'path':a});};Command[a90q(0x1bd)]({'name':a90q(0x1d2),'mustBeInMakaProject':!![],'validOpts':[a90q(0x1ea),a90q(0x1eb),'driver',a90q(0x1d5),a90q(0x1c1),a90q(0x1e7),a90q(0x1ee),'port',a90q(0x1b6),a90q(0x1ec)],'usage':a90q(0x1c9),'shortDesc':a90q(0x1e9),'examples':[]},function(a,b){const r=a90q;try{let c=this[r(0x1db)][r(0x1d7)](r(0x1df));b['env']&&(c=this['fsi'][r(0x1d7)](b['env']));(!b[r(0x1c1)]||!!b[r(0x1ea)])&&(a=a[r(0x1f3)]([r(0x1e6)]));b[r(0x1c1)]&&delete b[r(0x1c1)];let d=b['driver-package']||b[r(0x1bf)]||r(0x1f0);if(d===r(0x1f0)){const j=JSON[r(0x1d0)](a90e[r(0x1e3)](a90f[r(0x1be)](this['fsi'][r(0x1c5)](),r(0x1e1),r(0x1d4)),r(0x1ba)));if(j['engines']['test']===r(0x1e4))d=r(0x1e0);else j['engines']['test']===r(0x1c8)&&(d=r(0x1ca));}if(d===r(0x1f0))throw r(0x1c4);(!b['driver-package']||!b['driver'])&&(a=a['concat']([r(0x1da),d]));const f=a90f[r(0x1be)](c,r(0x1ed));this['fsi'][r(0x1f1)](f)?(Log[r(0x1c7)](r(0x1bb)+f),a=a[r(0x1f3)](['--settings',f])):Log[r(0x1e8)](r(0x1d9)+f);const g=a90f[r(0x1be)](c,'process.env');this[r(0x1db)]['isFile'](g)?(Log[r(0x1c7)](r(0x1f2)+g),syncSource(g)):Log[r(0x1e8)](r(0x1d1)+g);const h=process[r(0x1b7)][r(0x1dc)](0x2)['filter'](k=>k!==r(0x1cc))['filter'](k=>k!==r(0x1d2))['filter'](k=>k!==a[0x0]);h[r(0x1b9)]((k,l)=>{const s=r;(k===s(0x1cc)||k===s(0x1d6))&&h[s(0x1c6)](l,0x2),k===s(0x1f4)&&h[s(0x1c6)](l,0x1);});const i=b['packages']?'test-packages':'test';this[r(0x1db)][r(0x1b8)](i,a[r(0x1f3)](h));}catch(k){console[r(0x1ef)](k),process[r(0x1e2)](0x0);}});
1
+ const a90q=a90d;(function(a,b){const m=a90d,c=a();while(!![]){try{const d=parseInt(m(0x1ef))/0x1+-parseInt(m(0x211))/0x2+parseInt(m(0x210))/0x3*(-parseInt(m(0x1f6))/0x4)+-parseInt(m(0x1fe))/0x5+-parseInt(m(0x1df))/0x6+-parseInt(m(0x214))/0x7*(parseInt(m(0x209))/0x8)+-parseInt(m(0x1ff))/0x9*(-parseInt(m(0x1e5))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0xdc73a));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a90d;if(c){const e=c[n(0x1e8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const o=a90d;return a90a[o(0x1de)]()['search'](o(0x1e3))['toString']()[o(0x1f1)](a90a)[o(0x212)](o(0x1e3));});a90a();import a90e from'fs';import a90f from'path';import a90g from'dotenv';function a90c(){const t=['24870VBIgjS','join','create','apply','port','--driver-package','--full-app','--settings','driver-package','exit','181983BPzbVo','config.json','constructor','env','Node\x20Env\x20Config:\x20','testAppPath','inspect','6924zyeBQt','config','splice','Meteor\x20Settings:\x20','utf8','argv','--driver','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','7681480GGkLAE','17289zLncYQ','mocha','settings.json','once','test-packages','jasmine','fsi','packages','findProjectDirectory','Cannot\x20find\x20Node\x20Environment\x20File:\x20','32nUbJBW','parse','unit','none','getConfigPath','test','warn','1878vLQNEt','1417972HWSsFn','search','rawLogs','694358NgoZwi','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','driver','filter','error','isFile','maka\x20test\x20<opts>','--packages','toString','1985256XkStJo','--env','slice','engines','(((.+)+)+)+$','concat'];a90c=function(){return t;};return a90c();}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const syncSource=function(a){const p=a90d;a90e['openSync'](a,'r'),a90g[p(0x1f7)]({'path':a});};function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x1de;let f=c[d];return f;},a90d(a,b);}Command[a90q(0x1e7)]({'name':a90q(0x20e),'mustBeInMakaProject':!![],'validOpts':[a90q(0x202),a90q(0x206),a90q(0x216),'driverPackage',a90q(0x20b),a90q(0x1f2),a90q(0x213),a90q(0x1e9),a90q(0x1f5),a90q(0x1f4)],'usage':a90q(0x21a),'shortDesc':a90q(0x1fd),'examples':[]},function(a,b){const r=a90q;try{let c=this[r(0x205)][r(0x20d)]('development');b[r(0x1f2)]&&(c=this['fsi'][r(0x20d)](b[r(0x1f2)]));(!b[r(0x20b)]||!!b[r(0x202)])&&(a=a[r(0x1e4)]([r(0x1eb)]));b[r(0x20b)]&&delete b['unit'];let d=b[r(0x1ed)]||b[r(0x216)]||r(0x20c);if(d===r(0x20c)){const j=JSON[r(0x20a)](a90e['readFileSync'](a90f[r(0x1e6)](this[r(0x205)][r(0x207)](),'.maka',r(0x1f0)),r(0x1fa)));if(j['engines'][r(0x20e)]===r(0x204))d='sanjo:jasmine';else j[r(0x1e2)][r(0x20e)]===r(0x200)&&(d='meteortesting:mocha');}if(d===r(0x20c))throw'This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)';(!b['driver-package']||!b[r(0x216)])&&(a=a[r(0x1e4)]([r(0x1ea),d]));const f=a90f[r(0x1e6)](c,r(0x201));this['fsi'][r(0x219)](f)?(Log['notice'](r(0x1f9)+f),a=a[r(0x1e4)]([r(0x1ec),f])):Log[r(0x20f)](r(0x215)+f);const g=a90f[r(0x1e6)](c,'process.env');this['fsi'][r(0x219)](g)?(Log['notice'](r(0x1f3)+g),syncSource(g)):Log[r(0x20f)](r(0x208)+g);const h=process[r(0x1fb)][r(0x1e1)](0x2)['filter'](k=>k!==r(0x1e0))['filter'](k=>k!=='test')[r(0x217)](k=>k!==a[0x0]);h['forEach']((k,l)=>{const s=r;(k==='--env'||k===s(0x1fc))&&h[s(0x1f8)](l,0x2),k===s(0x21b)&&h[s(0x1f8)](l,0x1);});const i=b[r(0x206)]?r(0x203):r(0x20e);this[r(0x205)]['invokeMeteorCommand'](i,a[r(0x1e4)](h));}catch(k){console[r(0x218)](k),process[r(0x1ee)](0x0);}});
@@ -1 +1 @@
1
- const a91n=a91d;function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0xb3;let f=c[d];return f;},a91d(a,b);}(function(a,b){const k=a91d,c=a();while(!![]){try{const d=parseInt(k(0xda))/0x1+-parseInt(k(0xd9))/0x2*(-parseInt(k(0xdc))/0x3)+-parseInt(k(0xd6))/0x4+-parseInt(k(0xb9))/0x5+parseInt(k(0xbb))/0x6+-parseInt(k(0xcd))/0x7+parseInt(k(0xd0))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xda40e));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a91d;if(c){const e=c[l(0xb8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const m=a91d;return a91a[m(0xc0)]()[m(0xbf)]('(((.+)+)+)+$')['toString']()['constructor'](a91a)[m(0xbf)](m(0xdb));});a91a();import{execSync}from'child_process';import a91e from'semver';import{Command}from'../command.js';function a91c(){const p=['compareMakaToLatest','\x0a\x20\x20When\x20using\x20the\x20--verbose\x20flag,\x20maka\x20will\x20also\x20check\x20the\x20version\x20of\x20the\x20system\x27s\x20meteor\x20and\x20node\x20versions\x0a\x20\x20along\x20with\x20the\x20project\x27s\x20meteor\x20and\x20node\x20versions.\x20If\x20the\x20system\x27s\x20meteor\x20version\x20is\x20greater\x20than\x20the\x0a\x20\x20project\x27s\x20meteor\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20meteor\x20version.\x20If\x20the\x20system\x27s\x20node\x0a\x20\x20version\x20is\x20greater\x20than\x20the\x20project\x27s\x20node\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20node\x20version.\x0a\x20\x20','System\x27s\x20Node\x20Version\x20','257180QdCGfd',')\x20to\x20at\x20least\x20meteor\x27s\x20(','version','3576976iyydoH','warn','create','Project\x27s\x20Meteor\x20Version\x20','maka\x20v','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','364604IZCOfO','4.6.3','----------------------Project----------------------------','2iZgMdO','64763XAODSA','(((.+)+)+)+$','1819149raIRPe','getGlobalMeteorVersion','platform','exit','fsi','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','\x0a\x20To\x20get\x20the\x20mongo\x20version\x20in\x20use\x20by\x20meteor:\x0a\x201)\x20Run\x20the\x20project,\x20\x22maka\x20run\x22\x0a\x202)\x20In\x20a\x20new\x20terminal\x20open\x20the\x20mongo\x20shell,\x20\x22maka\x20mongo\x22','isMakaProject','maka\x20version','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','apply','7663855jEWLoW','Project\x27s\x20Meteor\x20Node\x20Version\x20','8618160YpIOcP','win32','meteor','----------------------System----------------------------','search','toString','error','getProjectMeteorVersion','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','bright','\x20node\x20-v','N/A','Maka\x20','node\x20-v','replace'];a91c=function(){return p;};return a91c();}import{Log}from'../tools/log/log.class.js';const pjson={'version':a91n(0xd7)};Command[a91n(0xd2)]({'name':a91n(0xcf),'aliases':['v'],'usage':a91n(0xb6),'maxArgLength':0x1,'validOpts':['verbose'],'shortDesc':a91n(0xb7),'examples':[a91n(0xd4),a91n(0xb6),'maka\x20version\x20--verbose'],'description':a91n(0xcb)},async function(a,b){const o=a91n;try{const c=process[o(0xde)]===o(0xbc)?'meteor.bat':o(0xbd);Log['majestic'](o(0xc7)+pjson[o(0xcf)]),await this[o(0xe0)]['compareMakaToLatest']();if(b['verbose']){await this['fsi'][o(0xca)](),Log[o(0xc4)](o(0xbe));const d=this[o(0xe0)][o(0xdd)]();Log[o(0xc4)](('System\x27s\x20Meteor\x20Version\x20'+d)[o(0xc9)]('\x0a',''));const f=execSync(c+o(0xc5))[o(0xc0)]()[o(0xc9)](/\r?\n|\r/,'')['replace']('v','');Log[o(0xc4)](o(0xd5)+f);const g=execSync(o(0xc8))[o(0xc0)]()[o(0xc9)](/\r?\n|\r/,'')[o(0xc9)]('v','');a91e['gt'](f,g)?(Log[o(0xd1)](o(0xcc)+g),Log[o(0xd1)](o(0xc3)+g+o(0xce)+f+')')):Log[o(0xc4)]('System\x27s\x20Node\x20Version\x20'+g);if(this[o(0xe0)][o(0xb5)]()){Log[o(0xc4)](o(0xd8));const h=this['fsi'][o(0xc2)]();a91e['gt'](d,h)?(Log['warn'](o(0xd3)+h[o(0xc9)]('\x0a','')),Log[o(0xd1)](o(0xb3)+d+'\x22')):Log['notice']((o(0xd3)+h)[o(0xc9)]('\x0a',''));const i=await this[o(0xe0)]['getProjectsMeteorNodeVersion']();i===o(0xc6)?(Log['warn'](o(0xba)+i),Log[o(0xd1)]('\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.')):Log[o(0xc4)](o(0xba)+i),Log[o(0xc4)](o(0xb4));}}}catch(j){console[o(0xc1)](j),process[o(0xdf)](0x0);}});
1
+ function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0x1c0;let f=c[d];return f;},a91d(a,b);}const a91n=a91d;(function(a,b){const k=a91d,c=a();while(!![]){try{const d=-parseInt(k(0x1c7))/0x1*(-parseInt(k(0x1d7))/0x2)+parseInt(k(0x1cc))/0x3*(parseInt(k(0x1dd))/0x4)+-parseInt(k(0x1d1))/0x5+-parseInt(k(0x1ec))/0x6*(parseInt(k(0x1dc))/0x7)+parseInt(k(0x1e1))/0x8+-parseInt(k(0x1d2))/0x9*(parseInt(k(0x1db))/0xa)+parseInt(k(0x1d9))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0x8dd33));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a91d;if(c){const e=c[l(0x1d0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const m=a91d;return a91a['toString']()[m(0x1c4)](m(0x1ed))[m(0x1c9)]()[m(0x1eb)](a91a)[m(0x1c4)](m(0x1ed));});a91a();import{execSync}from'child_process';function a91c(){const p=['(((.+)+)+)+$','N/A','maka\x20version\x20--verbose','----------------------Project----------------------------','getProjectMeteorVersion','meteor','compareMakaToLatest','version','search','\x20node\x20-v','verbose','2txHHsy','Maka\x20','toString','\x0a\x20\x20When\x20using\x20the\x20--verbose\x20flag,\x20maka\x20will\x20also\x20check\x20the\x20version\x20of\x20the\x20system\x27s\x20meteor\x20and\x20node\x20versions\x0a\x20\x20along\x20with\x20the\x20project\x27s\x20meteor\x20and\x20node\x20versions.\x20If\x20the\x20system\x27s\x20meteor\x20version\x20is\x20greater\x20than\x20the\x0a\x20\x20project\x27s\x20meteor\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20meteor\x20version.\x20If\x20the\x20system\x27s\x20node\x0a\x20\x20version\x20is\x20greater\x20than\x20the\x20project\x27s\x20node\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20node\x20version.\x0a\x20\x20','Project\x27s\x20Meteor\x20Node\x20Version\x20','15HOUUzp','error','majestic','----------------------System----------------------------','apply','4723620YXPpiE','1026aJBtDG','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','maka\x20version','bright','create','138766HpcTIU','Project\x27s\x20Meteor\x20Version\x20','13426490hbakoj','fsi','11640IetyPY','2180528uTLefA','9352QvAOQX','4.6.5','meteor.bat','maka\x20v','4790344tleiUG','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','\x0a\x20To\x20get\x20the\x20mongo\x20version\x20in\x20use\x20by\x20meteor:\x0a\x201)\x20Run\x20the\x20project,\x20\x22maka\x20run\x22\x0a\x202)\x20In\x20a\x20new\x20terminal\x20open\x20the\x20mongo\x20shell,\x20\x22maka\x20mongo\x22','warn','isMakaProject','System\x27s\x20Node\x20Version\x20','node\x20-v','getProjectsMeteorNodeVersion','getGlobalMeteorVersion','replace','constructor','6ibdDsJ'];a91c=function(){return p;};return a91c();}import a91e from'semver';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const pjson={'version':a91n(0x1de)};Command[a91n(0x1d6)]({'name':a91n(0x1c3),'aliases':['v'],'usage':a91n(0x1d4),'maxArgLength':0x1,'validOpts':['verbose'],'shortDesc':'Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','examples':[a91n(0x1e0),a91n(0x1d4),a91n(0x1ef)],'description':a91n(0x1ca)},async function(a,b){const o=a91n;try{const c=process['platform']==='win32'?o(0x1df):o(0x1c1);Log[o(0x1ce)](o(0x1c8)+pjson[o(0x1c3)]),await this[o(0x1da)][o(0x1c2)]();if(b[o(0x1c6)]){await this[o(0x1da)][o(0x1c2)](),Log[o(0x1d5)](o(0x1cf));const d=this[o(0x1da)][o(0x1e9)]();Log[o(0x1d5)](('System\x27s\x20Meteor\x20Version\x20'+d)[o(0x1ea)]('\x0a',''));const f=execSync(c+o(0x1c5))[o(0x1c9)]()[o(0x1ea)](/\r?\n|\r/,'')['replace']('v','');Log[o(0x1d5)]('System\x27s\x20Meteor\x27s\x20Node\x20Version\x20'+f);const g=execSync(o(0x1e7))['toString']()[o(0x1ea)](/\r?\n|\r/,'')['replace']('v','');a91e['gt'](f,g)?(Log[o(0x1e4)](o(0x1e6)+g),Log[o(0x1e4)](o(0x1d3)+g+')\x20to\x20at\x20least\x20meteor\x27s\x20('+f+')')):Log[o(0x1d5)](o(0x1e6)+g);if(this['fsi'][o(0x1e5)]()){Log['bright'](o(0x1f0));const h=this['fsi'][o(0x1c0)]();a91e['gt'](d,h)?(Log['warn'](o(0x1d8)+h[o(0x1ea)]('\x0a','')),Log[o(0x1e4)](o(0x1e2)+d+'\x22')):Log['notice']((o(0x1d8)+h)[o(0x1ea)]('\x0a',''));const i=await this['fsi'][o(0x1e8)]();i===o(0x1ee)?(Log[o(0x1e4)](o(0x1cb)+i),Log['warn']('\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.')):Log[o(0x1d5)](o(0x1cb)+i),Log[o(0x1d5)](o(0x1e3));}}}catch(j){console[o(0x1cd)](j),process['exit'](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a92d,c=a();while(!![]){try{var d=parseInt(f(0x86))/0x1*(-parseInt(f(0x8a))/0x2)+parseInt(f(0x91))/0x3+parseInt(f(0x90))/0x4*(parseInt(f(0x85))/0x5)+-parseInt(f(0x89))/0x6*(parseInt(f(0x93))/0x7)+parseInt(f(0x8f))/0x8+-parseInt(f(0x8d))/0x9+-parseInt(f(0x88))/0xa*(parseInt(f(0x84))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xc75e6));var a92b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a92d;if(c){var e=c[g(0x92)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){var h=a92d;return a92a[h(0x87)]()[h(0x8c)]('(((.+)+)+)+$')['toString']()[h(0x8e)](a92a)[h(0x8c)](h(0x8b));});a92a();export class UsageError{}export class UsageErrorWithSubs{}function a92c(){var i=['constructor','10444920nzozwQ','4CGNVDH','3593997soepxP','apply','91FGxfeC','4730HdlooL','7417885dYZfWJ','49DSErmA','toString','16090VTQoqV','627870zPKmit','25366pWqqEH','(((.+)+)+)+$','search','4471695HBOQHE'];a92c=function(){return i;};return a92c();}export class MustBeInProjectError{}export class NoMeteorAppFoundError{}function a92d(a,b){var c=a92c();return a92d=function(d,e){d=d-0x84;var f=c[d];return f;},a92d(a,b);}export class NoMeteorFoundError{}
1
+ (function(a,b){var f=a92d,c=a();while(!![]){try{var d=parseInt(f(0x1e9))/0x1*(parseInt(f(0x1e7))/0x2)+parseInt(f(0x1ee))/0x3+parseInt(f(0x1f2))/0x4+parseInt(f(0x1eb))/0x5+-parseInt(f(0x1ed))/0x6+parseInt(f(0x1f4))/0x7*(parseInt(f(0x1ea))/0x8)+parseInt(f(0x1e8))/0x9*(-parseInt(f(0x1f3))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0x32d48));var a92b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a92d;if(c){var e=c[g(0x1e6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){var h=a92d;return a92a[h(0x1f0)]()[h(0x1ef)](h(0x1f1))[h(0x1f0)]()[h(0x1ec)](a92a)[h(0x1ef)](h(0x1f1));});a92a();export class UsageError{}export class UsageErrorWithSubs{}function a92d(a,b){var c=a92c();return a92d=function(d,e){d=d-0x1e6;var f=c[d];return f;},a92d(a,b);}export class MustBeInProjectError{}function a92c(){var i=['search','toString','(((.+)+)+)+$','1036720DswVUt','130tRXrvO','37982FwxmLa','apply','130yswpxe','225684blmFuC','547NvTqdZ','296BMMNKE','980145hylmua','constructor','1541040wPAjGi','298506ssyaaN'];a92c=function(){return i;};return a92c();}export class NoMeteorAppFoundError{}export class NoMeteorFoundError{}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- function a93d(a,b){var c=a93c();return a93d=function(d,e){d=d-0x19a;var f=c[d];return f;},a93d(a,b);}var a93h=a93d;(function(a,b){var f=a93d,c=a();while(!![]){try{var d=parseInt(f(0x1ad))/0x1*(-parseInt(f(0x1a7))/0x2)+parseInt(f(0x19c))/0x3*(-parseInt(f(0x1a4))/0x4)+-parseInt(f(0x1a3))/0x5*(parseInt(f(0x1a5))/0x6)+parseInt(f(0x1aa))/0x7*(parseInt(f(0x1a8))/0x8)+-parseInt(f(0x19b))/0x9+parseInt(f(0x19a))/0xa*(-parseInt(f(0x1a6))/0xb)+-parseInt(f(0x1a1))/0xc*(-parseInt(f(0x1a9))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0xd7d64));var a93b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){var g=a93d;return a93a[g(0x19f)]()[g(0x19e)](g(0x1ac))['toString']()[g(0x1ab)](a93a)[g(0x19e)](g(0x1ac));});function a93c(){var i=['10rjCUlG','290684fEuccd','2450082ACzpKc','11935Bmuzge','2LXdyoW','11458768sCkCgG','221wGUAjn','7xLhpLI','constructor','(((.+)+)+)+$','372979GETzwz','13040LtDwPw','11002500fDejdg','48ELMdfC','env','search','toString','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','3135156BKsZMp','NODE_OPTIONS'];a93c=function(){return i;};return a93c();}a93a(),process[a93h(0x19d)][a93h(0x1a2)]=a93h(0x1a0);import'./maka.js';
2
+ function a93c(){var j=['env','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','search','1314388PgSfqT','4gFEwCx','NODE_OPTIONS','85nrhsCO','2339352lKLQty','1729497BpxNKD','232689OpTnCy','toString','constructor','apply','252210lnRCke','295237FIWMxj','3575358XhilPU','(((.+)+)+)+$'];a93c=function(){return j;};return a93c();}var a93i=a93d;(function(a,b){var f=a93d,c=a();while(!![]){try{var d=parseInt(f(0x1bf))/0x1+parseInt(f(0x1c6))/0x2*(-parseInt(f(0x1cb))/0x3)+-parseInt(f(0x1c5))/0x4+-parseInt(f(0x1c8))/0x5*(-parseInt(f(0x1cf))/0x6)+-parseInt(f(0x1ca))/0x7+-parseInt(f(0x1c9))/0x8+parseInt(f(0x1c0))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x5db89));function a93d(a,b){var c=a93c();return a93d=function(d,e){d=d-0x1bf;var f=c[d];return f;},a93d(a,b);}var a93b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a93d;if(c){var e=c[g(0x1ce)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){var h=a93d;return a93a[h(0x1cc)]()[h(0x1c4)](h(0x1c1))[h(0x1cc)]()[h(0x1cd)](a93a)['search'](h(0x1c1));});a93a(),process[a93i(0x1c2)][a93i(0x1c7)]=a93i(0x1c3);import'./maka.js';
@@ -1 +1 @@
1
- function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x1ec;let f=c[d];return f;},a94d(a,b);}const a94w=a94d;(function(a,b){const s=a94d,c=a();while(!![]){try{const d=-parseInt(s(0x222))/0x1*(parseInt(s(0x219))/0x2)+parseInt(s(0x1ff))/0x3*(-parseInt(s(0x245))/0x4)+parseInt(s(0x223))/0x5+-parseInt(s(0x1f4))/0x6+parseInt(s(0x205))/0x7*(-parseInt(s(0x232))/0x8)+-parseInt(s(0x203))/0x9*(parseInt(s(0x224))/0xa)+parseInt(s(0x240))/0xb*(parseInt(s(0x21c))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0xb53c8));const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const t=a94d;if(c){const e=c[t(0x1fa)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const u=a94d;return a94a[u(0x220)]()[u(0x23f)](u(0x206))[u(0x220)]()[u(0x24f)](a94a)[u(0x23f)](u(0x206));});a94a();import a94e from'path';import a94f from'cli-table';import{paramCase}from'change-case';import a94g from'./generators/maka.gen.js';function a94c(){const I=['To\x20use\x20these\x20pro\x20flags,\x20\x22','getGlobalConfig','error','pallet','To\x20use\x20this\x20generator,\x20\x22','length','options','filter','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','lib','resourceName','roles','validateMakaProject','findGenerator','14hrYLEX','keys','Too\x20many\x20arguments','1180632cnaEkQ','_handler','No\x20resource\x20name\x20specified','where','toString','cwd','118163yCWuYt','5095870Qsmudw','10sgRqrb','addGenerator','proGenerators','notice','DARK','Client','tableList','replace','maxArgLength','dir','invoke','Server','Alias','Generators:','208opICSi','\x22,\x20please\x20upgrade\x20to\x20the\x20professional\x20version\x20of\x20Maka-CLI\x20@\x20www.maka-cli.com,\x20then\x20issue:\x20\x27maka\x20login\x27','slice','help','domainLicense','usage','match','sep','sort','Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly','_generators','light','exit','search','539jlOxwu','function','push','parent','singleLicense','244328wtuBDs','bind','checkWhere','join','find','server','minArgLength','client','LIGHT','validateMakaSubscription','constructor','fsi','assign','setColorMode','name','create','shortDesc','number','Location','call','appPathPrefix','minOptsLength','Too\x20few\x20options','6588306fRZaSw','list','getPro','chdir','Generator\x20requires\x20a\x20name','maxOptsLength','apply','Please\x20run\x20\x22maka\x20install\x20meteor\x22','validateParams','findProjectDirectory','Generator\x20requires\x20a\x20handler\x20function','48tfRjnk','both','Description','License\x20error,\x20you\x20may\x20need\x20to\x20re-login\x20or\x20delete\x20your\x20~/.maka/global-config.json\x20file\x20to\x20regenerate\x20a\x20free\x20license.','8326026lNBaho','Too\x20many\x20options','341957fVoSYn','(((.+)+)+)+$','Generator.create\x20requires\x20a\x20handler\x20function!','addGenerator\x20requires\x20a\x20Generator\x20instance','includes','root'];a94c=function(){return I;};return a94c();}import{Log,ColorMode}from'./tools/log/log.class.js';import{Tool}from'./tool.js';import{Actions}from'./tools/actions/actions.class.js';import{UsageError,MustBeInProjectError,NoMeteorAppFoundError,NoMeteorFoundError}from'./error.js';let _prevGen='';function inside(a='.',b){const v=a94d,c=process['cwd']();let d=null;try{process[v(0x1f7)](a),d=b();}finally{process[v(0x1f7)](c);}return d;}export class Generator extends Tool{[a94w(0x211)];[a94w(0x23c)];constructor(a,b){const x=a94w;super();if(!a)throw new Error('Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object');if(!a['name'])throw new Error(x(0x1f8));if(typeof b!==x(0x241))throw new Error(x(0x1fe));this[x(0x23c)]=[],this['options']=Object[x(0x251)]({},a),this[x(0x253)]=this['options'][x(0x253)],this[x(0x21d)]=b[x(0x246)](this);}static[a94w(0x1ec)](a,b,c){const y=a94w;if(!a)throw new Error('Generator.create\x20requires\x20some\x20options!');if(typeof b!==y(0x241))throw new Error(y(0x207));const d=new Generator(a,b);return c=c||a94g,Object['assign'](d,{'parent':c?.[y(0x211)]?.['name']}),c[y(0x225)](d),d;}[a94w(0x225)](a){const z=a94w;if(!(a instanceof Generator))throw new Error(z(0x208));this[z(0x23c)]['push'](a);}[a94w(0x218)](a){const A=a94w,b=this[A(0x23c)][A(0x249)](c=>c[A(0x238)](a));return b;}async['validateMakaSubscription'](a,b){const B=a94w,c=this[B(0x218)](a[0x0]);if(c){const d=c?.['name']||a[0x0],e=c?.[B(0x243)]||'',f=Object[B(0x21a)](b),g=await this[B(0x250)][B(0x1f6)]();!g&&(Log[B(0x20d)](B(0x202)),process[B(0x23e)](0x1));const h=!g?.[B(0x216)][B(0x209)](B(0x244))&&!g?.[B(0x216)][B(0x209)](B(0x236)),i=g?.['proGenerators'][B(0x209)](d)||g?.[B(0x226)]['includes'](e);if(i&&h)throw B(0x20f)+d+'\x22,\x20please\x20upgrade\x20to\x20the\x20professional\x20version\x20of\x20Maka-CLI\x20@\x20www.maka-cli.com,\x20then\x20issue:\x20\x27maka\x20login\x27';if(f[B(0x210)]>0x0){const j=g?.['proFlags'][B(0x212)](k=>f[B(0x209)](k));if(j&&j['length']>0x0&&h)throw B(0x20b)+j?.[B(0x248)](',\x20')+B(0x233);}}}async[a94w(0x22e)](a,b){const C=a94w,{usage:usage='',description:description='',examples:examples=[],shortDesc:c,requiredOpts:requiredOpts=[],validOpts:d}=this[C(0x211)],f=await this[C(0x250)][C(0x20c)](),g=f[C(0x20e)]===C(0x23d)?ColorMode[C(0x24d)]:ColorMode[C(0x228)];Log[C(0x252)](g);try{await this[C(0x24e)](a,b);}catch(i){Log[C(0x20d)](i),process['exit'](0x1);}const h=a[C(0x234)]();b[C(0x215)]=h[0x0];try{if((a[0x0]===_prevGen||a[C(0x210)]===0x0)&&b['help'])throw new UsageError();if(this[C(0x211)]['mustBeInMakaProject']){const j=this[C(0x217)]();if(!j)throw new MustBeInProjectError();}if(this[C(0x211)]['mustHaveMeteorInstalled']){const k=this['validateMeteorInstall']();if(!k)throw new NoMeteorFoundError();}if(typeof this[C(0x211)][C(0x24b)]===C(0x1ee)){if(a[C(0x210)]<this[C(0x211)][C(0x24b)]){Log['error']('Too\x20few\x20arguments');throw new UsageError();}}if(typeof this[C(0x211)]['maxArgLength']===C(0x1ee)){if(a[C(0x210)]>this[C(0x211)][C(0x22c)]){Log[C(0x20d)](C(0x21b));throw new UsageError();}}if(typeof this[C(0x211)][C(0x1f2)]===C(0x1ee)){if(Object[C(0x21a)](b)[C(0x210)]<this[C(0x211)][C(0x1f2)]){Log[C(0x20d)](C(0x1f3));throw new UsageError();}}if(typeof this[C(0x211)][C(0x1f9)]==='number'){if(Object[C(0x21a)](b)[C(0x210)]>=this[C(0x211)][C(0x1f9)]){Log['error'](C(0x204));throw new UsageError();}}await this[C(0x1fc)](a,b,this['options']);if(!b[C(0x215)]&&!this[C(0x211)]['noResource']){Log[C(0x20d)](C(0x21e));throw new UsageError();}_prevGen=a[0x0];}catch(l){Log[C(0x237)](description,examples,usage,c,requiredOpts,d);if(l instanceof UsageError)this[C(0x23c)]['length']>0x0&&b[C(0x235)]&&(Log[C(0x227)](C(0x231)),this[C(0x22a)](this[C(0x23c)]));else{if(l instanceof MustBeInProjectError)Log['error'](C(0x213));else{if(l instanceof NoMeteorFoundError)Log[C(0x20d)](C(0x23b)),Log[C(0x227)](C(0x1fb));else{if(l instanceof NoMeteorAppFoundError)Log['error']('There\x20is\x20no\x20Meteor\x20application\x20here');else throw l;}}}process[C(0x23e)](0x1);}return new Promise(m=>{const D=C;inside(b[D(0x221)],async()=>{const E=D;try{if(!b[E(0x20a)]&&!this[E(0x250)][E(0x1fd)]())throw new MustBeInProjectError();const n=b['resourceName']?.[E(0x22b)](/\\/g,'/')['split']('/');!b['dir']&&(n?.[E(0x210)]>0x1?(b[E(0x215)]=n['pop'](),h[0x0]=b['resourceName'],b[E(0x22d)]=n['map'](o=>{return paramCase(o);})['join'](a94e[E(0x239)])):b[E(0x22d)]='');if(this['options'][E(0x247)]){if(!b[E(0x21f)]){const p={'type':E(0x1f5),'name':'colLocAnswer','message':E(0x1ef),'choices':[{'name':E(0x229),'value':E(0x24c)},{'name':E(0x22f),'value':E(0x24a)},{'name':'Both','value':E(0x200)}]},{colLocAnswer:q}=await Actions[E(0x211)](p);q?b['where']=q:b[E(0x21f)]=E(0x200);}const o=[E(0x200),E(0x24c),E(0x24a)];if(!o['includes'](b['where'])){Log[E(0x20d)]('--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27');throw new UsageError();}switch(b[E(0x21f)]){case'both':b['appPathPrefix']=E(0x214);break;case E(0x24a):b['appPathPrefix']=E(0x24a);break;case E(0x24c):b['appPathPrefix']='client';break;default:b[E(0x1f1)]='';}}m(this[E(0x21d)][E(0x1f0)](this,h,b));}catch(r){console[E(0x20d)](r);}});});}['listGenerators'](){const F=a94w;this['tableList'](this[F(0x23c)]);}[a94w(0x22a)](a){const G=a94w,b=new a94f({});b[G(0x242)](['Name',G(0x230),G(0x201)]),a[G(0x23a)]()['forEach'](c=>{const H=G;b[H(0x242)]([c[H(0x253)],c['aliases'](),c[H(0x1ed)]()]);}),Log['bright'](b[G(0x220)]());}}
1
+ const a94w=a94d;(function(a,b){const s=a94d,c=a();while(!![]){try{const d=-parseInt(s(0x1f3))/0x1*(parseInt(s(0x1e5))/0x2)+parseInt(s(0x1aa))/0x3*(parseInt(s(0x1a6))/0x4)+-parseInt(s(0x1d3))/0x5+-parseInt(s(0x1c1))/0x6*(-parseInt(s(0x1b3))/0x7)+parseInt(s(0x19e))/0x8*(-parseInt(s(0x1c9))/0x9)+parseInt(s(0x1f9))/0xa+parseInt(s(0x1f8))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0x72a29));const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const t=a94d;if(c){const e=c[t(0x1ff)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const u=a94d;return a94a[u(0x1f7)]()['search'](u(0x1be))['toString']()[u(0x1b9)](a94a)[u(0x1ec)](u(0x1be));});a94a();import a94e from'path';import a94f from'cli-table';import{paramCase}from'change-case';import a94g from'./generators/maka.gen.js';import{Log,ColorMode}from'./tools/log/log.class.js';function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x19c;let f=c[d];return f;},a94d(a,b);}import{Tool}from'./tool.js';import{Actions}from'./tools/actions/actions.class.js';import{UsageError,MustBeInProjectError,NoMeteorAppFoundError,NoMeteorFoundError}from'./error.js';let _prevGen='';function inside(a='.',b){const v=a94d,c=process[v(0x1ef)]();let d=null;try{process['chdir'](a),d=b();}finally{process['chdir'](c);}return d;}function a94c(){const I=['checkWhere','listGenerators','proFlags','dir','setColorMode','Generator.create\x20requires\x20a\x20handler\x20function!','validateMakaProject','maxArgLength','options','includes','validateParams','492566cVkrfI','tableList','forEach','noResource','create','notice','bind','search','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','Both','cwd','Location','error','slice','1xnlliY','proGenerators','assign','_generators','toString','7023258THYkez','1927900UzXDjH','Name','exit','There\x20is\x20no\x20Meteor\x20application\x20here','getPro','License\x20error,\x20you\x20may\x20need\x20to\x20re-login\x20or\x20delete\x20your\x20~/.maka/global-config.json\x20file\x20to\x20regenerate\x20a\x20free\x20license.','apply','parent','DARK','Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly','maxOptsLength','number','root','1924904fSFdnD','function','fsi','Description','minArgLength','join','validateMeteorInstall','pallet','4pNeMjF','Server','Too\x20many\x20options','Please\x20run\x20\x22maka\x20install\x20meteor\x22','662253BsDpAL','client','Too\x20few\x20arguments','map','roles','server','find','colLocAnswer','keys','42847OXfNhp','appPathPrefix','match','mustHaveMeteorInstalled','name','Generators:','constructor','both','length','aliases','\x22,\x20please\x20upgrade\x20to\x20the\x20professional\x20version\x20of\x20Maka-CLI\x20@\x20www.maka-cli.com,\x20then\x20issue:\x20\x27maka\x20login\x27','(((.+)+)+)+$','push','_handler','474MlEuPn','pop','help','addGenerator\x20requires\x20a\x20Generator\x20instance','Too\x20many\x20arguments','minOptsLength','lib','findGenerator','9LlAIxz','invoke','resourceName','singleLicense','getGlobalConfig','shortDesc','bright','To\x20use\x20this\x20generator,\x20\x22','Too\x20few\x20options','sort','2895685PPArpS','To\x20use\x20these\x20pro\x20flags,\x20\x22','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','where','No\x20resource\x20name\x20specified','validateMakaSubscription','mustBeInMakaProject'];a94c=function(){return I;};return a94c();}export class Generator extends Tool{[a94w(0x1e2)];['_generators'];constructor(a,b){const x=a94w;super();if(!a)throw new Error(x(0x1d5));if(!a[x(0x1b7)])throw new Error('Generator\x20requires\x20a\x20name');if(typeof b!=='function')throw new Error('Generator\x20requires\x20a\x20handler\x20function');this[x(0x1f6)]=[],this[x(0x1e2)]=Object['assign']({},a),this['name']=this[x(0x1e2)]['name'],this[x(0x1c0)]=b[x(0x1eb)](this);}static[a94w(0x1e9)](a,b,c){const y=a94w;if(!a)throw new Error('Generator.create\x20requires\x20some\x20options!');if(typeof b!==y(0x19f))throw new Error(y(0x1df));const d=new Generator(a,b);return c=c||a94g,Object[y(0x1f5)](d,{'parent':c?.[y(0x1e2)]?.['name']}),c['addGenerator'](d),d;}['addGenerator'](a){const z=a94w;if(!(a instanceof Generator))throw new Error(z(0x1c4));this[z(0x1f6)]['push'](a);}[a94w(0x1c8)](a){const A=a94w,b=this['_generators'][A(0x1b0)](c=>c[A(0x1b5)](a));return b;}async[a94w(0x1d8)](a,b){const B=a94w,c=this[B(0x1c8)](a[0x0]);if(c){const d=c?.[B(0x1b7)]||a[0x0],e=c?.[B(0x200)]||'',f=Object[B(0x1b2)](b),g=await this['fsi'][B(0x1fd)]();!g&&(Log[B(0x1f1)](B(0x1fe)),process[B(0x1fb)](0x1));const h=!g?.[B(0x1ae)][B(0x1e3)](B(0x1cc))&&!g?.[B(0x1ae)][B(0x1e3)]('domainLicense'),i=g?.[B(0x1f4)][B(0x1e3)](d)||g?.[B(0x1f4)][B(0x1e3)](e);if(i&&h)throw B(0x1d0)+d+B(0x1bd);if(f[B(0x1bb)]>0x0){const j=g?.[B(0x1dc)]['filter'](k=>f[B(0x1e3)](k));if(j&&j[B(0x1bb)]>0x0&&h)throw B(0x1d4)+j?.[B(0x1a3)](',\x20')+B(0x1bd);}}}async[a94w(0x1ca)](a,b){const C=a94w,{usage:usage='',description:description='',examples:examples=[],shortDesc:c,requiredOpts:requiredOpts=[],validOpts:d}=this[C(0x1e2)],f=await this[C(0x1a0)][C(0x1cd)](),g=f[C(0x1a5)]==='light'?ColorMode['LIGHT']:ColorMode[C(0x201)];Log[C(0x1de)](g);try{await this[C(0x1d8)](a,b);}catch(i){Log[C(0x1f1)](i),process[C(0x1fb)](0x1);}const h=a[C(0x1f2)]();b[C(0x1cb)]=h[0x0];try{if((a[0x0]===_prevGen||a[C(0x1bb)]===0x0)&&b['help'])throw new UsageError();if(this[C(0x1e2)][C(0x1d9)]){const j=this[C(0x1e0)]();if(!j)throw new MustBeInProjectError();}if(this[C(0x1e2)][C(0x1b6)]){const k=this[C(0x1a4)]();if(!k)throw new NoMeteorFoundError();}if(typeof this[C(0x1e2)][C(0x1a2)]===C(0x19c)){if(a[C(0x1bb)]<this[C(0x1e2)][C(0x1a2)]){Log[C(0x1f1)](C(0x1ac));throw new UsageError();}}if(typeof this[C(0x1e2)][C(0x1e1)]==='number'){if(a[C(0x1bb)]>this[C(0x1e2)]['maxArgLength']){Log['error'](C(0x1c5));throw new UsageError();}}if(typeof this[C(0x1e2)][C(0x1c6)]===C(0x19c)){if(Object[C(0x1b2)](b)['length']<this[C(0x1e2)][C(0x1c6)]){Log[C(0x1f1)](C(0x1d1));throw new UsageError();}}if(typeof this[C(0x1e2)][C(0x203)]===C(0x19c)){if(Object[C(0x1b2)](b)[C(0x1bb)]>=this[C(0x1e2)][C(0x203)]){Log[C(0x1f1)](C(0x1a8));throw new UsageError();}}await this[C(0x1e4)](a,b,this[C(0x1e2)]);if(!b[C(0x1cb)]&&!this[C(0x1e2)][C(0x1e8)]){Log[C(0x1f1)](C(0x1d7));throw new UsageError();}_prevGen=a[0x0];}catch(l){Log['usage'](description,examples,usage,c,requiredOpts,d);if(l instanceof UsageError)this[C(0x1f6)][C(0x1bb)]>0x0&&b[C(0x1c3)]&&(Log[C(0x1ea)](C(0x1b8)),this['tableList'](this['_generators']));else{if(l instanceof MustBeInProjectError)Log[C(0x1f1)](C(0x1ed));else{if(l instanceof NoMeteorFoundError)Log[C(0x1f1)](C(0x202)),Log['notice'](C(0x1a9));else{if(l instanceof NoMeteorAppFoundError)Log[C(0x1f1)](C(0x1fc));else throw l;}}}process['exit'](0x1);}return new Promise(m=>{const D=C;inside(b[D(0x1ef)],async()=>{const E=D;try{if(!b[E(0x19d)]&&!this[E(0x1a0)]['findProjectDirectory']())throw new MustBeInProjectError();const n=b[E(0x1cb)]?.['replace'](/\\/g,'/')['split']('/');!b['dir']&&(n?.[E(0x1bb)]>0x1?(b[E(0x1cb)]=n[E(0x1c2)](),h[0x0]=b[E(0x1cb)],b[E(0x1dd)]=n[E(0x1ad)](o=>{return paramCase(o);})[E(0x1a3)](a94e['sep'])):b[E(0x1dd)]='');if(this[E(0x1e2)][E(0x1da)]){if(!b[E(0x1d6)]){const p={'type':'list','name':E(0x1b1),'message':E(0x1f0),'choices':[{'name':'Client','value':E(0x1ab)},{'name':E(0x1a7),'value':E(0x1af)},{'name':E(0x1ee),'value':E(0x1ba)}]},{colLocAnswer:q}=await Actions[E(0x1e2)](p);q?b[E(0x1d6)]=q:b[E(0x1d6)]=E(0x1ba);}const o=['both','client',E(0x1af)];if(!o[E(0x1e3)](b[E(0x1d6)])){Log[E(0x1f1)]('--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27');throw new UsageError();}switch(b[E(0x1d6)]){case E(0x1ba):b[E(0x1b4)]=E(0x1c7);break;case E(0x1af):b['appPathPrefix']='server';break;case E(0x1ab):b['appPathPrefix']=E(0x1ab);break;default:b[E(0x1b4)]='';}}m(this[E(0x1c0)]['call'](this,h,b));}catch(r){console[E(0x1f1)](r);}});});}[a94w(0x1db)](){const F=a94w;this[F(0x1e6)](this[F(0x1f6)]);}['tableList'](a){const G=a94w,b=new a94f({});b[G(0x1bf)]([G(0x1fa),'Alias',G(0x1a1)]),a[G(0x1d2)]()[G(0x1e7)](c=>{const H=G;b[H(0x1bf)]([c[H(0x1b7)],c[H(0x1bc)](),c[H(0x1ce)]()]);}),Log[G(0x1cf)](b[G(0x1f7)]());}}
@@ -1 +1 @@
1
- (function(a,b){var f=a95d,c=a();while(!![]){try{var d=-parseInt(f(0x157))/0x1+-parseInt(f(0x15f))/0x2*(parseInt(f(0x15b))/0x3)+parseInt(f(0x15d))/0x4+parseInt(f(0x155))/0x5+parseInt(f(0x159))/0x6+-parseInt(f(0x15a))/0x7+-parseInt(f(0x15e))/0x8*(-parseInt(f(0x156))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0x6182f));var a95b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a95a=a95b(this,function(){var g=a95d;return a95a[g(0x158)]()[g(0x154)](g(0x15c))['toString']()[g(0x160)](a95a)['search']('(((.+)+)+)+$');});a95a();import'./services/_index.js';import'./api.js';import'./collection.js';import'./component.js';import'./config.js';import'./dbc.js';function a95c(){var h=['136PLSzxb','8PSwATg','constructor','search','2699335dCTEmg','239796mkdToI','633179uINNwb','toString','3180300YuvtEL','4021913ycJrGH','309438jHlZjp','(((.+)+)+)+$','1987456njXHEb'];a95c=function(){return h;};return a95c();}import'./hook.js';function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0x154;var f=c[d];return f;},a95d(a,b);}import'./kit.js';import'./layout.js';import'./methods.js';import'./package.js';import'./publish.js';import'./route.js';import'./service.js';import'./page.js';import'./maka.gen.js';import'./dockerfile.js';import'./maka.gen.js';
1
+ (function(a,b){var f=a95d,c=a();while(!![]){try{var d=parseInt(f(0x1d1))/0x1+parseInt(f(0x1d0))/0x2+parseInt(f(0x1c7))/0x3+-parseInt(f(0x1cf))/0x4+parseInt(f(0x1c6))/0x5+-parseInt(f(0x1c9))/0x6+-parseInt(f(0x1c8))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0xec298));var a95b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a95d;if(c){var e=c[g(0x1ce)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a95a=a95b(this,function(){var h=a95d;return a95a[h(0x1cd)]()['search'](h(0x1cc))[h(0x1cd)]()[h(0x1cb)](a95a)[h(0x1ca)](h(0x1cc));});a95a();import'./services/_index.js';import'./api.js';import'./collection.js';function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0x1c6;var f=c[d];return f;},a95d(a,b);}import'./component.js';import'./config.js';function a95c(){var i=['1801346kMQkRj','8263630XwwHFm','3563178RCxiuO','10140886GGdQRt','9304200rDDygC','search','constructor','(((.+)+)+)+$','toString','apply','6058992IETzmq','1679336fpxOmu'];a95c=function(){return i;};return a95c();}import'./dbc.js';import'./hook.js';import'./kit.js';import'./layout.js';import'./methods.js';import'./package.js';import'./publish.js';import'./route.js';import'./service.js';import'./page.js';import'./maka.gen.js';import'./dockerfile.js';import'./maka.gen.js';