@maka/maka-cli 4.6.2 → 4.6.4

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 +2 -2
  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 +2 -2
@@ -1 +1 @@
1
- const a75o=a75d;function a75c(){const q=['101035qpOutU','599034hGaLWl','post','start','search','authToken','(((.+)+)+)+$','isFile','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','getGlobalConfig','5152420YWCsMj','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','withSpinner','failure','cert','Logging\x20out','logout','6dHXdxj','get','success','fsi','error','maka\x20logout','notice','75204szDCVx','/api/v1/logoutAll','cacert','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','token','www.maka-cli.com','9cvYmDC','localhost','1434888eLUxTr','68YZFcpf','7527770xNKYeY','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','assign','2987514aawGYS','setGlobalConfig','apply','create','toString','https://'];a75c=function(){return q;};return a75c();}(function(a,b){const l=a75d,c=a();while(!![]){try{const d=parseInt(l(0x164))/0x1*(parseInt(l(0x140))/0x2)+parseInt(l(0x154))/0x3+-parseInt(l(0x149))/0x4*(-parseInt(l(0x153))/0x5)+-parseInt(l(0x14d))/0x6+-parseInt(l(0x15d))/0x7+parseInt(l(0x148))/0x8*(parseInt(l(0x146))/0x9)+parseInt(l(0x14a))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x72018));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a75d;if(c){const e=c[m(0x14f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const n=a75d;return a75a[n(0x151)]()['search']('(((.+)+)+)+$')[n(0x151)]()['constructor'](a75a)[n(0x157)](n(0x159));});a75a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x13c;let f=c[d];return f;},a75d(a,b);}import{HTTPS}from'../tools/https/https.class.js';const hostname=process['env']['MAKA_DEV']==='True'?a75o(0x147):a75o(0x145);Command[a75o(0x150)]({'name':a75o(0x163),'validOpts':[a75o(0x142)],'usage':a75o(0x13e),'maxArgLength':0x2,'shortDesc':a75o(0x14b),'disableAuthCheck':!![],'examples':[a75o(0x13e)]},async function(a,b){const p=a75o,c=Log[p(0x15f)]();try{let d='';b['cacert']&&(this[p(0x13c)]['isFile'](b[p(0x142)])?(d=b[p(0x142)],Log[p(0x13f)]('Using\x20CA\x20Cert\x20'+d)):Log['error']('CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+d));const f=await this[p(0x13c)][p(0x15c)]();if(f[p(0x161)]){if(this[p(0x13c)][p(0x15a)](f[p(0x161)]))d=f[p(0x161)];else{c[p(0x160)]();throw Log[p(0x13d)]('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);}}Log['header']('Logging\x20out\x20of\x20https://'+hostname);const g={'url':p(0x152)+hostname+'/api/v1/status'};b[p(0x142)]&&Object['assign'](g,{'cert':d});c[p(0x156)]('Preflight\x20Check');const {statusCode:h}=await HTTPS[p(0x165)](g);if(h===0x198){c[p(0x160)]();throw p(0x15e);}c[p(0x166)]();if(h!==0xc8){c[p(0x160)]();throw p(0x143);}if(!f?.[p(0x144)]?.[p(0x158)])throw Log[p(0x13d)](p(0x15b));c[p(0x156)](p(0x162));const i={'hostname':hostname,'path':p(0x141),'data':{},'headers':{'x-auth-token':f[p(0x144)][p(0x158)]}};b[p(0x142)]&&Object[p(0x14c)](i,{'cert':d});const {statusCode:j}=await HTTPS[p(0x155)](i);if(j===0x198){c[p(0x160)]('\x0a');throw p(0x15e);}this[p(0x13c)][p(0x14e)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[p(0x166)]();}catch(k){k&&console[p(0x13d)](k),process['exit'](0x0);}});
1
+ const a75n=a75d;function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x121;let f=c[d];return f;},a75d(a,b);}(function(a,b){const l=a75d,c=a();while(!![]){try{const d=parseInt(l(0x148))/0x1+parseInt(l(0x146))/0x2+-parseInt(l(0x136))/0x3+-parseInt(l(0x141))/0x4+parseInt(l(0x126))/0x5*(-parseInt(l(0x12f))/0x6)+-parseInt(l(0x142))/0x7*(-parseInt(l(0x14c))/0x8)+parseInt(l(0x132))/0x9*(parseInt(l(0x124))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0xa60f6));const a75b=(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;};}()),a75a=a75b(this,function(){const m=a75d;return a75a[m(0x122)]()[m(0x147)]('(((.+)+)+)+$')[m(0x122)]()[m(0x14e)](a75a)[m(0x147)](m(0x144));});a75a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a75c(){const p=['success','678185XBKDOy','True','env','token','MAKA_DEV','withSpinner','localhost','isFile','create','42NQDjZI','failure','maka\x20logout','1053kxaqro','cacert','Preflight\x20Check','post','2826306NaVnaM','authToken','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','notice','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','start','Logging\x20out','Using\x20CA\x20Cert\x20','fsi','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','error','1155444AeBJZa','5327RYsDgf','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','(((.+)+)+)+$','/api/v1/logoutAll','2313804WJXBQb','search','283537EhnRNZ','assign','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','cert','2176TsZmuB','www.maka-cli.com','constructor','header','toString','getGlobalConfig','103690mDWEqq'];a75c=function(){return p;};return a75c();}import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a75n(0x128)][a75n(0x12a)]===a75n(0x127)?a75n(0x12c):a75n(0x14d);Command[a75n(0x12e)]({'name':'logout','validOpts':[a75n(0x133)],'usage':a75n(0x131),'maxArgLength':0x2,'shortDesc':a75n(0x138),'disableAuthCheck':!![],'examples':[a75n(0x131)]},async function(a,b){const o=a75n,c=Log[o(0x12b)]();try{let d='';b['cacert']&&(this[o(0x13e)][o(0x12d)](b[o(0x133)])?(d=b[o(0x133)],Log[o(0x139)](o(0x13d)+d)):Log['error']('CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+d));const f=await this[o(0x13e)][o(0x123)]();if(f[o(0x14b)]){if(this[o(0x13e)][o(0x12d)](f['cert']))d=f[o(0x14b)];else{c[o(0x130)]();throw Log[o(0x140)](o(0x143)+d);}}Log[o(0x121)]('Logging\x20out\x20of\x20https://'+hostname);const g={'url':'https://'+hostname+'/api/v1/status'};b['cacert']&&Object[o(0x149)](g,{'cert':d});c[o(0x13b)](o(0x134));const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c['failure']();throw o(0x13f);}c[o(0x125)]();if(h!==0xc8){c['failure']();throw o(0x13a);}if(!f?.[o(0x129)]?.[o(0x137)])throw Log[o(0x140)](o(0x14a));c[o(0x13b)](o(0x13c));const i={'hostname':hostname,'path':o(0x145),'data':{},'headers':{'x-auth-token':f[o(0x129)][o(0x137)]}};b['cacert']&&Object['assign'](i,{'cert':d});const {statusCode:j}=await HTTPS[o(0x135)](i);if(j===0x198){c[o(0x130)]('\x0a');throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}this[o(0x13e)]['setGlobalConfig']({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[o(0x125)]();}catch(k){k&&console[o(0x140)](k),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a76k=a76d;(function(a,b){const h=a76d,c=a();while(!![]){try{const d=parseInt(h(0x144))/0x1*(-parseInt(h(0x14d))/0x2)+-parseInt(h(0x149))/0x3*(-parseInt(h(0x14f))/0x4)+parseInt(h(0x15e))/0x5+parseInt(h(0x159))/0x6*(-parseInt(h(0x145))/0x7)+-parseInt(h(0x146))/0x8+-parseInt(h(0x158))/0x9*(-parseInt(h(0x156))/0xa)+-parseInt(h(0x157))/0xb*(parseInt(h(0x15a))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x1a443));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a76d;if(c){const e=c[i(0x143)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const j=a76d;return a76a[j(0x14b)]()['search'](j(0x155))[j(0x14b)]()[j(0x147)](a76a)['search'](j(0x155));});a76a();function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x143;let f=c[d];return f;},a76d(a,b);}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=['184102peTFCV','maka\x20logs','4jAuxwI','getConfigPath','fsi','ssh.json','readFileSync','create','(((.+)+)+)+$','34070poQXVY','11uiAZBq','459ndsadH','6maobew','518436BNGNrf','verbose','pm2\x20logs','join','613415iDHqXe','View\x20the\x20PM2\x20logs','assign','maka\x20logs\x20--env\x20staging','apply','1yrSnNY','1009309MXrYdF','664920MwBhRG','constructor','log','521109FcCejD','env','toString','maka\x20l\x20-e\x20p'];a76c=function(){return m;};return a76c();}Command[a76k(0x154)]({'name':'logs','aliases':['l',a76k(0x148)],'usage':a76k(0x14e),'requiredOpts':[a76k(0x14a)],'mustBeInMakaProject':!![],'validOpts':[a76k(0x15b)],'shortDesc':a76k(0x15f),'examples':['maka\x20logs\x20--env\x20dev',a76k(0x161),a76k(0x14c)]},function(a,b){const l=a76k,c=l(0x15c),d=this[l(0x151)][l(0x150)](b['env']),e=a76f[l(0x15d)](d,l(0x152)),f=a76e[l(0x153)](e),g=JSON['parse'](f['toString']());Object[l(0x160)](g,{'env':d}),SSH['sshSync'](c,g,{'tty':!![],'verbose':!![]});});
1
+ const a76j=a76d;(function(a,b){const h=a76d,c=a();while(!![]){try{const d=-parseInt(h(0x153))/0x1+-parseInt(h(0x155))/0x2*(-parseInt(h(0x14f))/0x3)+parseInt(h(0x14a))/0x4+parseInt(h(0x142))/0x5*(-parseInt(h(0x151))/0x6)+-parseInt(h(0x152))/0x7+parseInt(h(0x156))/0x8+-parseInt(h(0x150))/0x9*(parseInt(h(0x14b))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0xef7fc));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(0x146)]()['search']('(((.+)+)+)+$')[i(0x146)]()[i(0x143)](a76a)[i(0x145)](i(0x147));});a76a();function a76c(){const l=['12848912cbCGei','log','parse','verbose','sshSync','create','getConfigPath','env','maka\x20logs\x20--env\x20staging','ssh.json','1935iLxqYn','constructor','join','search','toString','(((.+)+)+)+$','logs','maka\x20logs','5600764aKcbwn','51390GVhlPb','pm2\x20logs','readFileSync','fsi','4297008HTKUbn','882KLoJnW','21618OEPKXt','2955001axUpfS','1137527zzSAMl','maka\x20logs\x20--env\x20dev','2LaHkAO'];a76c=function(){return l;};return a76c();}function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x139;let f=c[d];return f;},a76d(a,b);}import a76e from'fs';import a76f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a76j(0x13d)]({'name':a76j(0x148),'aliases':['l',a76j(0x139)],'usage':a76j(0x149),'requiredOpts':[a76j(0x13f)],'mustBeInMakaProject':!![],'validOpts':[a76j(0x13b)],'shortDesc':'View\x20the\x20PM2\x20logs','examples':[a76j(0x154),a76j(0x140),'maka\x20l\x20-e\x20p']},function(a,b){const k=a76j,c=k(0x14c),d=this[k(0x14e)][k(0x13e)](b['env']),e=a76f[k(0x144)](d,k(0x141)),f=a76e[k(0x14d)](e),g=JSON[k(0x13a)](f[k(0x146)]());Object['assign'](g,{'env':d}),SSH[k(0x13c)](c,g,{'tty':!![],'verbose':!![]});});
@@ -1 +1 @@
1
- function a77c(){const k=['36fluGwv','maka\x20run','30bTIbul','7szrUaS','2868344UUnGgn','error','82884tqRAMS','2339733EDiJTv','toString','maka','search','maka\x20--help','5uFQAEA','maka\x20<command>\x20[<args>]\x20[<opts>]','fsi','2415Ewwwkv','38142dBoyaE','\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','findSubCommand','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','exit','2668626wFkNpG','1413OqNjau','(((.+)+)+)+$','slice','7210fCkhDl','maybeProxyCommandToMeteor','constructor','maka\x20create\x20Todo'];a77c=function(){return k;};return a77c();}const a77i=a77d;function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x151;let f=c[d];return f;},a77d(a,b);}(function(a,b){const g=a77d,c=a();while(!![]){try{const d=parseInt(g(0x15c))/0x1*(-parseInt(g(0x16c))/0x2)+parseInt(g(0x15d))/0x3+parseInt(g(0x153))/0x4*(parseInt(g(0x159))/0x5)+-parseInt(g(0x162))/0x6+-parseInt(g(0x16d))/0x7*(-parseInt(g(0x151))/0x8)+-parseInt(g(0x163))/0x9*(parseInt(g(0x166))/0xa)+-parseInt(g(0x154))/0xb*(-parseInt(g(0x16a))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x6a6b6));const a77b=(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;};}()),a77a=a77b(this,function(){const h=a77d;return a77a[h(0x155)]()[h(0x157)]('(((.+)+)+)+$')[h(0x155)]()[h(0x168)](a77a)[h(0x157)](h(0x164));});a77a();import{Command}from'../command.js';const Maka=new Command({'name':a77i(0x156),'minArgLength':0x1,'shortDesc':a77i(0x160),'validOpts':[],'usage':a77i(0x15a),'disableAuthCheck':!![],'examples':[a77i(0x158),'maka\x20install\x20meteor',a77i(0x169),a77i(0x16b)],'description':a77i(0x15e)},async function(a,b){const j=a77i;try{const c=a[0x0],d=this[j(0x15f)](c);d?this['runSubCommand'](c,a[j(0x165)](0x1),b):this[j(0x15b)][j(0x167)]();}catch(f){console[j(0x152)](f),process[j(0x161)](0x1);}});export default Maka;
1
+ const a77j=a77d;(function(a,b){const g=a77d,c=a();while(!![]){try{const d=-parseInt(g(0x171))/0x1*(-parseInt(g(0x173))/0x2)+-parseInt(g(0x178))/0x3+parseInt(g(0x17e))/0x4*(-parseInt(g(0x182))/0x5)+parseInt(g(0x180))/0x6*(-parseInt(g(0x18a))/0x7)+parseInt(g(0x17d))/0x8*(parseInt(g(0x172))/0x9)+parseInt(g(0x187))/0xa*(-parseInt(g(0x16e))/0xb)+parseInt(g(0x17a))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x65d38));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a77d;if(c){const e=c[h(0x186)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const i=a77d;return a77a['toString']()[i(0x16f)](i(0x188))[i(0x16d)]()['constructor'](a77a)[i(0x16f)](i(0x188));});function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x16d;let f=c[d];return f;},a77d(a,b);}a77a();import{Command}from'../command.js';const Maka=new Command({'name':a77j(0x170),'minArgLength':0x1,'shortDesc':a77j(0x17b),'validOpts':[],'usage':'maka\x20<command>\x20[<args>]\x20[<opts>]','disableAuthCheck':!![],'examples':[a77j(0x175),a77j(0x17f),a77j(0x185),a77j(0x181)],'description':a77j(0x184)},async function(a,b){const k=a77j;try{const c=a[0x0],d=this[k(0x189)](c);d?this[k(0x176)](c,a[k(0x174)](0x1),b):this[k(0x17c)][k(0x179)]();}catch(f){console[k(0x183)](f),process[k(0x177)](0x1);}});function a77c(){const l=['1492767UyCAaY','maybeProxyCommandToMeteor','13370676Idmdel','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','fsi','8MIfBzy','28YGbtLn','maka\x20install\x20meteor','12xDQEnc','maka\x20run','45995MZkLCB','error','\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','maka\x20create\x20Todo','apply','170HvRcmm','(((.+)+)+)+$','findSubCommand','563311Gwlylv','toString','458821kTRFMu','search','maka','9EjBhFE','2178531VdcMGw','109514cxeERu','slice','maka\x20--help','runSubCommand','exit'];a77c=function(){return l;};return a77c();}export default Maka;
@@ -1 +1 @@
1
- var a78h=a78d;(function(a,b){var f=a78d,c=a();while(!![]){try{var d=parseInt(f(0x1e9))/0x1*(parseInt(f(0x1f4))/0x2)+parseInt(f(0x1f3))/0x3+-parseInt(f(0x1e8))/0x4+-parseInt(f(0x1ef))/0x5+parseInt(f(0x1f2))/0x6+-parseInt(f(0x1eb))/0x7*(-parseInt(f(0x1f0))/0x8)+parseInt(f(0x1ec))/0x9*(-parseInt(f(0x1ed))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x8d746));var a78b=(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;};}()),a78a=a78b(this,function(){var g=a78d;return a78a[g(0x1f1)]()[g(0x1f8)](g(0x1ee))[g(0x1f1)]()[g(0x1f5)](a78a)[g(0x1f8)](g(0x1ee));});a78a();function a78c(){var j=['create','35OZQEzN','369EdtmLz','304890pXvEeH','(((.+)+)+)+$','704415KDWbNk','960688hMTGST','toString','1947822KYIgaN','1452651ZkIiUI','2KgLpYL','constructor','%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','murder','search','maka\x20murder','2332604ajmBvR','1144197PhxTIu'];a78c=function(){return j;};return a78c();}import{Command}from'../command.js';function a78d(a,b){var c=a78c();return a78d=function(d,e){d=d-0x1e8;var f=c[d];return f;},a78d(a,b);}Command[a78h(0x1ea)]({'name':a78h(0x1f7),'usage':a78h(0x1f9),'maxArgLength':0x1,'shortDesc':'Murrrrderrrrr','validOpts':[]},async function(){var i=a78h;try{console['log'](i(0x1f6),'font-family:\x20monospace');}catch(a){console['error'](a),process['exit'](0x0);}});
1
+ var a78i=a78d;(function(a,b){var f=a78d,c=a();while(!![]){try{var d=parseInt(f(0x81))/0x1*(parseInt(f(0x88))/0x2)+parseInt(f(0x86))/0x3+parseInt(f(0x80))/0x4*(parseInt(f(0x87))/0x5)+parseInt(f(0x77))/0x6+parseInt(f(0x85))/0x7+parseInt(f(0x7e))/0x8*(parseInt(f(0x78))/0x9)+-parseInt(f(0x7f))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x96aec));var a78b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a78d;if(c){var e=c[g(0x79)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){var h=a78d;return a78a['toString']()[h(0x84)](h(0x7c))[h(0x82)]()[h(0x74)](a78a)[h(0x84)]('(((.+)+)+)+$');});function a78d(a,b){var c=a78c();return a78d=function(d,e){d=d-0x74;var f=c[d];return f;},a78d(a,b);}function a78c(){var k=['630198aajmak','153KHfflD','apply','%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','font-family:\x20monospace','(((.+)+)+)+$','error','235096vZeneG','21406430UoGaoO','556cEscjb','1yxemnW','toString','maka\x20murder','search','2522037OGBnDh','678867uHEdCS','33195vwYiTF','1287652rFXKBK','constructor','murder','log'];a78c=function(){return k;};return a78c();}a78a();import{Command}from'../command.js';Command['create']({'name':a78i(0x75),'usage':a78i(0x83),'maxArgLength':0x1,'shortDesc':'Murrrrderrrrr','validOpts':[]},async function(){var j=a78i;try{console[j(0x76)](j(0x7a),j(0x7b));}catch(a){console[j(0x7d)](a),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a79q=a79d;(function(a,b){const n=a79d,c=a();while(!![]){try{const d=-parseInt(n(0x1b7))/0x1*(parseInt(n(0x195))/0x2)+parseInt(n(0x19e))/0x3+-parseInt(n(0x1b6))/0x4*(parseInt(n(0x192))/0x5)+parseInt(n(0x1af))/0x6+parseInt(n(0x1a8))/0x7+parseInt(n(0x1b8))/0x8+parseInt(n(0x1b0))/0x9*(parseInt(n(0x196))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x2ba17));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a79d;if(c){const e=c[o(0x19a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const p=a79d;return a79a['toString']()[p(0x1a2)](p(0x18f))['toString']()[p(0x19d)](a79a)[p(0x1a2)](p(0x18f));});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-0x18f;let f=c[d];return f;},a79d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';function a79c(){const s=['.csr','.crt','join','listenPort','maka\x20proxy','312984YWYhJh','48IwhQeG','380120mcRVmK','create','(((.+)+)+)+$','genSSC','.key','20JPgNIq','\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','getConfigPath','2446kbZdoe','760aTjjJC','invoke','targetHost','findGenerator','apply','mkKeysDir','fsi','constructor','426777BJulLO','\x20to\x20','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','=>\x20SSL\x20Proxy\x20forwarding\x20','search','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','development','readFileSync','targetPort','help','704466HsmzZs','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','bright','utf8','appName','localhost','error','1317330emRStN','4788FrmFWv'];a79c=function(){return s;};return a79c();}import{SSL}from'../tools/ssl/ssl.class.js';import a79h from'../generators/maka.gen.js';Command[a79q(0x1b9)]({'name':'proxy','usage':a79q(0x1b5),'mustBeInMakaProject':!![],'validOpts':[a79q(0x1a7),a79q(0x1a6),a79q(0x1b4),'targetHost'],'maxArgLength':0x1,'shortDesc':a79q(0x1a3),'description':a79q(0x193),'examples':['maka\x20proxy',a79q(0x1a0),'maka\x20proxy\x20--target-host\x20http://192.168.1.20']},async function(a,b){const r=a79q,c=this[r(0x19c)]['getProjectConfig'](),d=r(0x1a4),e=this[r(0x19c)][r(0x194)](d),f=this['fsi'][r(0x19b)]({'configPath':e}),g=b[r(0x1a6)]?Number(b['targetPort']):0xbb8,h=b[r(0x1b4)]?Number(b[r(0x1b4)]):0xd73,i=b[r(0x198)]?b['targetHost']:r(0x1ad),j=a79f[r(0x1b3)](f,c['appName']+r(0x191)),k=a79f['join'](f,c[r(0x1ac)]+r(0x1b2));if(!this[r(0x19c)]['isFile'](j)||!this[r(0x19c)]['isFile'](k)){const m=a79h[r(0x199)]('sslconfig');m&&await m[r(0x197)](['sslconfig'],{'env':d}),SSL['genCSR']({'keyName':c[r(0x1ac)]+r(0x191),'csrName':c['appName']+r(0x1b1),'cwd':f}),SSL[r(0x190)]({'keyName':c['appName']+r(0x191),'crtName':c['appName']+r(0x1b2),'cwd':f});}if(g===h){Log[r(0x1ae)](r(0x1a9));throw new UsageError();}const l={'ssl':{'key':a79e['readFileSync'](j,r(0x1ab)),'cert':a79e[r(0x1a5)](k,r(0x1ab))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a79g['createProxyServer'](l)['listen'](Number(h)),Log[r(0x1aa)](r(0x1a1)+h+r(0x19f)+g);});
1
+ const a79q=a79d;(function(a,b){const n=a79d,c=a();while(!![]){try{const d=parseInt(n(0x1f3))/0x1*(-parseInt(n(0x1d1))/0x2)+-parseInt(n(0x1f6))/0x3*(-parseInt(n(0x1f2))/0x4)+parseInt(n(0x1d2))/0x5*(-parseInt(n(0x1e4))/0x6)+-parseInt(n(0x1fa))/0x7+-parseInt(n(0x1eb))/0x8*(-parseInt(n(0x1d8))/0x9)+parseInt(n(0x1f9))/0xa+parseInt(n(0x1d0))/0xb*(-parseInt(n(0x1ec))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x56548));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a79d;if(c){const e=c[o(0x1d9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const p=a79d;return a79a[p(0x1ce)]()[p(0x1d6)](p(0x1ed))[p(0x1ce)]()[p(0x1ea)](a79a)['search'](p(0x1ed));});a79a();import a79e from'fs';import a79f from'path';import a79g from'http-proxy';import{Command}from'../command.js';function a79c(){const s=['invoke','createProxyServer','\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','maka\x20proxy','maka\x20proxy\x20--target-host\x20http://192.168.1.20','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','.key','\x20to\x20','2065002SLKszA','error','readFileSync','findGenerator','getConfigPath','fsi','constructor','4638560LwhRbW','394164msYmqk','(((.+)+)+)+$','.csr','proxy','bright','join','103996UaATCq','63508uomTlb','sslconfig','.crt','60EZYZRL','localhost','mkKeysDir','3538260AMTFjg','738283CTGKGv','toString','appName','154XxEknU','6zBuSlU','5tpypjD','genSSC','listenPort','=>\x20SSL\x20Proxy\x20forwarding\x20','search','targetPort','9KIOWat','apply','isFile','listen'];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';function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x1ce;let f=c[d];return f;},a79d(a,b);}import a79h from'../generators/maka.gen.js';Command['create']({'name':a79q(0x1ef),'usage':a79q(0x1df),'mustBeInMakaProject':!![],'validOpts':['help',a79q(0x1d7),a79q(0x1d4),'targetHost'],'maxArgLength':0x1,'shortDesc':'Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','description':a79q(0x1de),'examples':[a79q(0x1df),a79q(0x1e1),a79q(0x1e0)]},async function(a,b){const r=a79q,c=this[r(0x1e9)]['getProjectConfig'](),d='development',e=this['fsi'][r(0x1e8)](d),f=this['fsi'][r(0x1f8)]({'configPath':e}),g=b['targetPort']?Number(b['targetPort']):0xbb8,h=b[r(0x1d4)]?Number(b[r(0x1d4)]):0xd73,i=b['targetHost']?b['targetHost']:r(0x1f7),j=a79f['join'](f,c[r(0x1cf)]+r(0x1e2)),k=a79f[r(0x1f1)](f,c['appName']+r(0x1f5));if(!this[r(0x1e9)][r(0x1da)](j)||!this[r(0x1e9)][r(0x1da)](k)){const m=a79h[r(0x1e7)](r(0x1f4));m&&await m[r(0x1dc)]([r(0x1f4)],{'env':d}),SSL['genCSR']({'keyName':c[r(0x1cf)]+r(0x1e2),'csrName':c[r(0x1cf)]+r(0x1ee),'cwd':f}),SSL[r(0x1d3)]({'keyName':c[r(0x1cf)]+'.key','crtName':c[r(0x1cf)]+r(0x1f5),'cwd':f});}if(g===h){Log[r(0x1e5)]('Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.');throw new UsageError();}const l={'ssl':{'key':a79e[r(0x1e6)](j,'utf8'),'cert':a79e[r(0x1e6)](k,'utf8')},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a79g[r(0x1dd)](l)[r(0x1db)](Number(h)),Log[r(0x1f0)](r(0x1d5)+h+r(0x1e3)+g);});
@@ -1 +1 @@
1
- const a80q=a80d;function a80c(){const s=['1138806RdhYOS','~/pm2.config.js','existsSync','sshSync','ssh.json','getConfigPath','assign','uname\x20-a','fsi','reconfig','Reconfigure\x20your\x20deployed\x20applications','scp','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','(((.+)+)+)+$','error','toString','2198INKwcd','settings.json','27354XShukD','2GAgMKM','ping','env','success','exit','1682919NJlbrS','Remote\x20host\x20connection\x20successful','apply','1331053XJVXrk','64rzTQUr','ses.json','1051480ktcLlE','join','973220MVCxIH','search','54866130BxMtVy','pm2.config.js','create','notice','\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'];a80c=function(){return s;};return a80c();}(function(a,b){const n=a80d,c=a();while(!![]){try{const d=-parseInt(n(0x88))/0x1+-parseInt(n(0xa7))/0x2*(parseInt(n(0x94))/0x3)+parseInt(n(0x8b))/0x4+-parseInt(n(0x8d))/0x5+parseInt(n(0xa6))/0x6*(-parseInt(n(0xa4))/0x7)+parseInt(n(0x89))/0x8*(-parseInt(n(0x85))/0x9)+parseInt(n(0x8f))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xdfcfa));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a80d;if(c){const e=c[o(0x87)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const p=a80d;return a80a[p(0xa3)]()[p(0x8e)](p(0xa1))['toString']()['constructor'](a80a)[p(0x8e)](p(0xa1));});function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x85;let f=c[d];return f;},a80d(a,b);}a80a();import a80e from'fs';import a80f from'path';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a80q(0x91)]({'name':a80q(0x9d),'validOpts':[''],'requiredOpts':[a80q(0xa9)],'mustBeInMakaProject':!![],'usage':'maka\x20reconfig','shortDesc':a80q(0x9e),'description':a80q(0x93),'examples':['maka\x20reconfig\x20--env\x20prod']},async function(a,b){const r=a80q;try{const c=this[r(0x9c)][r(0x99)](b['env']),d=a80f[r(0x8c)](c,r(0x98)),f=a80e['readFileSync'](d)['toString'](),g=JSON['parse'](f);Object[r(0x9a)](g,{'env':c}),Log[r(0x92)]('Checking\x20remote\x20host\x20availability');const h=SSH[r(0xa8)](r(0x9b),g);if(!h)throw r(0xa0);if(h)Log[r(0xaa)](r(0x86));const i=a80f['join'](c,'_keys',r(0x8a));if(a80e[r(0x96)](i)){const l={'source':i,'dest':'~/ses.json','verbose':!![]};SSH[r(0x9f)](l,{...g});}const j=a80f[r(0x8c)](c,r(0x90));SSH['scp']({'source':j,'dest':r(0x95),'verbose':!![]},{...g});const k=a80f[r(0x8c)](c,r(0xa5));SSH[r(0x9f)]({'source':k,'dest':'~/settings.json','verbose':!![]},{...g}),SSH[r(0x97)]('pm2\x20delete\x20all',g),await SSH['ssh']('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(0xa2)](m),process[r(0xab)](0x0);}});
1
+ function a80c(){const s=['join','parse','notice','ssh.json','uname\x20-a','exit','apply','(((.+)+)+)+$','ping','error','search','9111jJgasG','success','580728LXOufd','create','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','4028370HJgLhU','~/settings.json','existsSync','3948000mWloTJ','8870616ebarDo','_keys','constructor','assign','~/ses.json','Reconfigure\x20your\x20deployed\x20applications','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','env','938440pIFVVY','settings.json','~/pm2.config.js','scp','fsi','maka\x20reconfig','28854kGrxhc','35FAKDzz','214BNtEkj','Remote\x20host\x20connection\x20successful','3400FljwBz','pm2\x20delete\x20all','sshSync','pm2.config.js','toString'];a80c=function(){return s;};return a80c();}const a80q=a80d;function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x136;let f=c[d];return f;},a80d(a,b);}(function(a,b){const n=a80d,c=a();while(!![]){try{const d=-parseInt(n(0x15a))/0x1*(parseInt(n(0x148))/0x2)+parseInt(n(0x137))/0x3+parseInt(n(0x140))/0x4+parseInt(n(0x147))/0x5*(parseInt(n(0x15c))/0x6)+parseInt(n(0x146))/0x7*(-parseInt(n(0x14a))/0x8)+parseInt(n(0x138))/0x9+parseInt(n(0x15f))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xd9404));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a80d;if(c){const e=c[o(0x155)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const p=a80d;return a80a[p(0x14e)]()['search'](p(0x156))[p(0x14e)]()[p(0x13a)](a80a)[p(0x159)](p(0x156));});a80a();import a80e from'fs';import a80f from'path';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a80q(0x15d)]({'name':'reconfig','validOpts':[''],'requiredOpts':[a80q(0x13f)],'mustBeInMakaProject':!![],'usage':a80q(0x145),'shortDesc':a80q(0x13d),'description':'\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','examples':['maka\x20reconfig\x20--env\x20prod']},async function(a,b){const r=a80q;try{const c=this[r(0x144)]['getConfigPath'](b[r(0x13f)]),d=a80f[r(0x14f)](c,r(0x152)),f=a80e['readFileSync'](d)['toString'](),g=JSON[r(0x150)](f);Object[r(0x13b)](g,{'env':c}),Log[r(0x151)]('Checking\x20remote\x20host\x20availability');const h=SSH[r(0x157)](r(0x153),g);if(!h)throw r(0x15e);if(h)Log[r(0x15b)](r(0x149));const i=a80f['join'](c,r(0x139),'ses.json');if(a80e[r(0x136)](i)){const l={'source':i,'dest':r(0x13c),'verbose':!![]};SSH[r(0x143)](l,{...g});}const j=a80f[r(0x14f)](c,r(0x14d));SSH['scp']({'source':j,'dest':r(0x142),'verbose':!![]},{...g});const k=a80f[r(0x14f)](c,r(0x141));SSH[r(0x143)]({'source':k,'dest':r(0x160),'verbose':!![]},{...g}),SSH[r(0x14c)](r(0x14b),g),await SSH['ssh'](r(0x13e),{...g},{'verbose':!![]});}catch(m){console[r(0x158)](m),process[r(0x154)](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a81d,c=a();while(!![]){try{var d=-parseInt(f(0x134))/0x1+parseInt(f(0x13f))/0x2+-parseInt(f(0x138))/0x3+parseInt(f(0x13b))/0x4+parseInt(f(0x13c))/0x5*(-parseInt(f(0x140))/0x6)+-parseInt(f(0x13d))/0x7+parseInt(f(0x137))/0x8*(parseInt(f(0x135))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xaa67d));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x13e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x139)]()[h(0x13a)]('(((.+)+)+)+$')[h(0x139)]()['constructor'](a81a)[h(0x13a)](h(0x136));});a81a();function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x134;var f=c[d];return f;},a81d(a,b);}import'./run.command.js';import'./docker.sub.cmd.js';function a81c(){var i=['5863746bAIbdS','apply','1321476cWFovh','354072zQVnpe','1312790BlySdX','9gqDmLa','(((.+)+)+)+$','17373112VlmpeZ','3384669EHKJiU','toString','search','5521372YkXNHZ','20aqPFsk'];a81c=function(){return i;};return a81c();}
1
+ function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x1f0;var f=c[d];return f;},a81d(a,b);}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x1fb))/0x1+parseInt(f(0x1fc))/0x2*(-parseInt(f(0x1f3))/0x3)+parseInt(f(0x1f0))/0x4+parseInt(f(0x1f6))/0x5+parseInt(f(0x1f7))/0x6+-parseInt(f(0x1f8))/0x7*(parseInt(f(0x1f2))/0x8)+-parseInt(f(0x1f5))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xe8bb4));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x1fa)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x1f9)]()[h(0x1f4)](h(0x1f1))[h(0x1f9)]()['constructor'](a81a)[h(0x1f4)](h(0x1f1));});a81a();import'./run.command.js';function a81c(){var i=['3335145wRGBjd','408120QnaoPj','14mUoKMo','toString','apply','1711125FHnlZn','570162QElugy','3097212fPYlgt','(((.+)+)+)+$','4143000HykVJJ','9oiHsDB','search','3385944eUhAiB'];a81c=function(){return i;};return a81c();}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(0xf1))/0x1*(-parseInt(i(0xe2))/0x2)+-parseInt(i(0xe4))/0x3*(parseInt(i(0xec))/0x4)+-parseInt(i(0xda))/0x5+-parseInt(i(0xd8))/0x6+parseInt(i(0xde))/0x7*(parseInt(i(0xf2))/0x8)+-parseInt(i(0xe8))/0x9*(parseInt(i(0xeb))/0xa)+parseInt(i(0xe3))/0xb*(parseInt(i(0xe7))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x44eb8));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a82d;if(c){const e=c[j(0xea)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const k=a82d;return a82a[k(0xdc)]()[k(0xd9)](k(0xee))[k(0xdc)]()[k(0xdb)](a82a)[k(0xd9)](k(0xee));});a82a();import a82e from'./run.command.js';function a82c(){const n=['\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','Docker\x20Compose\x20Path:\x20','create','inherit','140640aEVjpJ','search','478535zKCDNx','constructor','toString','pm2.config.js','171115COqfHL','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','docker-compose.yaml','notice','2qfWMMx','11ZJicfA','1061517KSmDKo','docker-compose\x20--project-directory\x20','exit','13748052dBCycv','1615401mygmFi','getProjectConfig','apply','10kQnuWd','4BBKmkd','docker','(((.+)+)+)+$','join','fsi','284235OlvDCg','24camxay','maka\x20run\x20docker','createFile','appName','\x20up\x20--remove-orphans','existsSync','config/docker-compose.yaml'];a82c=function(){return n;};return a82c();}import{execSync}from'child_process';import a82f from'path';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0xd8;let f=c[d];return f;},a82d(a,b);}import a82g from'fs';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';Command[a82l(0xfb)]({'name':a82l(0xed),'aliases':['d'],'shortDesc':a82l(0xdf),'description':a82l(0xf9),'usage':a82l(0xf3),'validOpts':['']},async function(){const m=a82l;try{const a=this[m(0xf0)][m(0xe9)](),b=this['fsi']['getConfigPath'](m(0xed)),c=a82f[m(0xef)](b,m(0xe0)),d=a82f['join'](b,m(0xdd));Log['notice']('PM2\x20Config\x20File:\x20'+d),Log[m(0xe1)](m(0xfa)+c);if(!a82g[m(0xf7)](c)){const f={'app':a[m(0xf5)],'appFileCase':paramCase(a[m(0xf5)])},g=this[m(0xf0)]['templateContent']({'srcPath':m(0xf8),'context':f})+'\x0a';this[m(0xf0)][m(0xf4)]({'filePath':c,'data':g});}execSync(m(0xe5)+b+m(0xf6),{'stdio':m(0xfc)});}catch(h){process[m(0xe6)](0x1);}},a82e);
1
+ const a82l=a82d;(function(a,b){const i=a82d,c=a();while(!![]){try{const d=-parseInt(i(0xe7))/0x1*(parseInt(i(0xfa))/0x2)+-parseInt(i(0xee))/0x3*(-parseInt(i(0xeb))/0x4)+parseInt(i(0x103))/0x5+-parseInt(i(0x102))/0x6+parseInt(i(0xf1))/0x7+parseInt(i(0x101))/0x8+-parseInt(i(0xfd))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x6c634));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a82d;if(c){const e=c[j(0xed)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const k=a82d;return a82a[k(0xe8)]()[k(0xef)](k(0xf8))[k(0xe8)]()[k(0xf3)](a82a)['search'](k(0xf8));});a82a();import a82e from'./run.command.js';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0xe7;let f=c[d];return f;},a82d(a,b);}function a82c(){const n=['exit','createFile','(((.+)+)+)+$','docker-compose.yaml','2QBFxXA','Docker\x20Compose\x20Path:\x20','getConfigPath','1177434rIYVkh','notice','pm2.config.js','PM2\x20Config\x20File:\x20','722520XShuYA','5272338NylhMF','2488120QsSxmy','create','566661LCYJVe','toString','join','docker-compose\x20--project-directory\x20','31684LIxLsS','inherit','apply','240hIFNWU','search','fsi','5589829ncamGG','appName','constructor','maka\x20run\x20docker','\x20up\x20--remove-orphans'];a82c=function(){return n;};return a82c();}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(0x104)]({'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(0xf4),'validOpts':['']},async function(){const m=a82l;try{const a=this[m(0xf0)]['getProjectConfig'](),b=this[m(0xf0)][m(0xfc)]('docker'),c=a82f[m(0xe9)](b,m(0xf9)),d=a82f[m(0xe9)](b,m(0xff));Log[m(0xfe)](m(0x100)+d),Log['notice'](m(0xfb)+c);if(!a82g['existsSync'](c)){const f={'app':a[m(0xf2)],'appFileCase':paramCase(a['appName'])},g=this[m(0xf0)]['templateContent']({'srcPath':'config/docker-compose.yaml','context':f})+'\x0a';this[m(0xf0)][m(0xf7)]({'filePath':c,'data':g});}execSync(m(0xea)+b+m(0xf5),{'stdio':m(0xec)});}catch(h){process[m(0xf6)](0x1);}},a82e);
@@ -1 +1 @@
1
- const a83u=a83d;(function(a,b){const r=a83d,c=a();while(!![]){try{const d=parseInt(r(0x146))/0x1*(-parseInt(r(0x161))/0x2)+-parseInt(r(0x16a))/0x3+parseInt(r(0x16c))/0x4*(-parseInt(r(0x16b))/0x5)+parseInt(r(0x141))/0x6+-parseInt(r(0x147))/0x7*(-parseInt(r(0x174))/0x8)+parseInt(r(0x15d))/0x9*(parseInt(r(0x13b))/0xa)+parseInt(r(0x150))/0xb*(parseInt(r(0x169))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x9cefd));const a83b=(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;};}()),a83a=a83b(this,function(){const s=a83d;return a83a[s(0x157)]()['search'](s(0x138))[s(0x157)]()[s(0x151)](a83a)['search'](s(0x138));});a83a();import a83e from'path';import a83f from'fs';import a83g from'dotenv';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x137;let f=c[d];return f;},a83d(a,b);}import{rimraf}from'rimraf';function a83c(){const x=['local','exit','(((.+)+)+)+$','checkMeteorPackage','.meteor','70CAFQcM','runSubCommand','--env','settings.json','Run\x20your\x20Meteor\x20application','invokeMeteorCommand','2611194pHmVzj','ios','Meteor\x20Settings:\x20','forEach','warn','59lfYBzX','6693001FLJIKE','inspect','port','rawLogs','development','concat','filter','installMeteorPackage','split','77TuYUmN','constructor','notice','findSubCommand','autoupdate','config','extraPackages','toString','env','fsi','production','mobile-server','argv','290259VgknWS','join','run','findProjectDirectory','41042PDChfJ','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','splice','Node\x20Env\x20Config:\x20','settings','length','Verifying\x20meteor\x20package\x20requirements\x20...','process.env','3099276rbmmLs','2201706Lvvuto','85ClZBan','197072goDNQU','slice','--production','isFile','verbose','allowIncompatibleUpdate','compareMakaToLatest','openSync','8SJvuip','mobileServer','cordova-build','docker','sep','app'];a83c=function(){return x;};return a83c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';const syncSource=function(a){const t=a83d;a83f[t(0x173)](a,'r'),a83g[t(0x155)]({'path':a});},Run=Command['create']({'name':a83u(0x15f),'mustBeInMakaProject':!![],'shortDesc':a83u(0x13f),'description':'\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.','validOpts':[a83u(0x158),a83u(0x177),'r',a83u(0x14a),'p',a83u(0x149),'i',a83u(0x148),'m',a83u(0x175),'v',a83u(0x170),a83u(0x171),a83u(0x156),'x','exclude-archs',a83u(0x15a)]},async function(a,b){const v=a83u;try{const c=this[v(0x159)]['findProjectDirectory']();!this['fsi'][v(0x139)](v(0x154))&&(Log[v(0x152)](v(0x167)),await this[v(0x159)][v(0x14e)](v(0x154),{'cwd':c}));const d=a[0x0],f=this[v(0x153)](d);f&&this[v(0x13c)](d,a,b);if(d===v(0x142)){const n=this[v(0x159)][v(0x160)](),o=a83e[v(0x15e)](n,v(0x179),v(0x13a),v(0x17a),v(0x176));this[v(0x159)]['isDirectory'](o)&&await rimraf(o);}if(b[v(0x15b)]&&b[v(0x15b)]===!![]||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[v(0x159)][v(0x172)]();const g=b[v(0x158)]?b[v(0x158)]:v(0x14b),h=this[v(0x159)]['getConfigPath'](g),i=a83e['join'](h,v(0x168));let j=a83e[v(0x15e)](h,'settings.json');b[v(0x165)]?j=b[v(0x165)]:j=a83e[v(0x15e)](h,v(0x13e));if(this['fsi'][v(0x16f)](i)&&!b[v(0x177)])Log[v(0x152)](v(0x164)+i),syncSource(i);else!b[v(0x177)]&&Log[v(0x145)]('Cannot\x20find\x20Node\x20Environment\x20File:\x20'+i);this[v(0x159)][v(0x16f)](j)?(Log[v(0x152)](v(0x143)+j),a=a[v(0x14c)](['--settings',j])):Log[v(0x145)](v(0x162)+j);const k=h[v(0x14f)](a83e[v(0x178)]),l=k[k[v(0x166)]-0x1];l===v(0x15a)&&a['push'](v(0x16e));const m=process[v(0x15c)][v(0x16d)](0x2)[v(0x14d)](p=>p!==v(0x15f))[v(0x14d)](p=>p!==a[0x0]);m[v(0x144)]((p,q)=>{const w=v;p===w(0x13d)&&m[w(0x163)](q,0x2),p==='-e'&&m[w(0x163)](q,0x2);}),this['fsi'][v(0x140)]('run',a[v(0x14c)](m));}catch(p){console['error'](p),process[v(0x137)](0x1);}});export default Run;
1
+ const a83v=a83d;(function(a,b){const r=a83d,c=a();while(!![]){try{const d=parseInt(r(0x1b8))/0x1+parseInt(r(0x1a6))/0x2+-parseInt(r(0x19e))/0x3+parseInt(r(0x1c0))/0x4*(-parseInt(r(0x1ae))/0x5)+parseInt(r(0x1ce))/0x6+-parseInt(r(0x1d0))/0x7+parseInt(r(0x1b3))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x43f05));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const s=a83d;if(c){const e=c[s(0x19c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const t=a83d;return a83a[t(0x1a9)]()[t(0x1bf)](t(0x1ca))[t(0x1a9)]()[t(0x1b9)](a83a)[t(0x1bf)](t(0x1ca));});a83a();import a83e from'path';import a83f from'fs';import a83g from'dotenv';import{rimraf}from'rimraf';import{Command}from'../../command.js';function a83c(){const y=['error','exit','production','5qQlUlk','Run\x20your\x20Meteor\x20application','notice','autoupdate','warn','2808144kZEsek','--production','ios','slice','local','203091UJtmoa','constructor','create','settings','app','runSubCommand','fsi','search','1558548TSbAMo','process.env','--settings','splice','config','development','Node\x20Env\x20Config:\x20','findSubCommand','forEach','mobile-server','(((.+)+)+)+$','exclude-archs','verbose','invokeMeteorCommand','1569276dMxMba','allowIncompatibleUpdate','1428126XQxqyR','concat','isFile','openSync','.meteor','\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.','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)','installMeteorPackage','argv','run','findProjectDirectory','checkMeteorPackage','isDirectory','push','apply','sep','1085337MwDRwv','rawLogs','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','mobileServer','docker','extraPackages','--env','settings.json','836112yLSzbH','inspect','join','toString','Meteor\x20Settings:\x20'];a83c=function(){return y;};return a83c();}import{Log}from'../../tools/log/log.class.js';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x194;let f=c[d];return f;},a83d(a,b);}const syncSource=function(a){const u=a83d;a83f[u(0x1d3)](a,'r'),a83g[u(0x1c4)]({'path':a});},Run=Command[a83v(0x1ba)]({'name':'run','mustBeInMakaProject':!![],'shortDesc':a83v(0x1af),'description':a83v(0x1d5),'validOpts':['env','docker','r',a83v(0x19f),'p','port','i',a83v(0x1a7),'m',a83v(0x1a1),'v',a83v(0x1cc),a83v(0x1cf),a83v(0x1a3),'x',a83v(0x1cb),a83v(0x1ad)]},async function(a,b){const w=a83v;try{const c=this['fsi'][w(0x198)]();!this['fsi'][w(0x199)](w(0x1b1))&&(Log[w(0x1b0)]('Verifying\x20meteor\x20package\x20requirements\x20...'),await this[w(0x1be)][w(0x195)]('autoupdate',{'cwd':c}));const d=a[0x0],f=this[w(0x1c7)](d);f&&this[w(0x1bd)](d,a,b);if(d===w(0x1b5)){const n=this['fsi']['findProjectDirectory'](),o=a83e['join'](n,w(0x1bc),w(0x1d4),w(0x1b7),'cordova-build');this[w(0x1be)][w(0x19a)](o)&&await rimraf(o);}if(b[w(0x1c9)]&&b['mobile-server']===!![]||b['m']&&b['m']===!![])throw w(0x194);await this['fsi']['compareMakaToLatest']();const g=b['env']?b['env']:w(0x1c5),h=this['fsi']['getConfigPath'](g),i=a83e[w(0x1a8)](h,w(0x1c1));let j=a83e[w(0x1a8)](h,w(0x1a5));b[w(0x1bb)]?j=b['settings']:j=a83e[w(0x1a8)](h,w(0x1a5));if(this[w(0x1be)]['isFile'](i)&&!b[w(0x1a2)])Log[w(0x1b0)](w(0x1c6)+i),syncSource(i);else!b[w(0x1a2)]&&Log['warn']('Cannot\x20find\x20Node\x20Environment\x20File:\x20'+i);this['fsi'][w(0x1d2)](j)?(Log['notice'](w(0x1aa)+j),a=a[w(0x1d1)]([w(0x1c2),j])):Log[w(0x1b2)](w(0x1a0)+j);const k=h['split'](a83e[w(0x19d)]),l=k[k['length']-0x1];l==='production'&&a[w(0x19b)](w(0x1b4));const m=process[w(0x196)][w(0x1b6)](0x2)['filter'](p=>p!==w(0x197))['filter'](p=>p!==a[0x0]);m[w(0x1c8)]((p,q)=>{const x=w;p===x(0x1a4)&&m[x(0x1c3)](q,0x2),p==='-e'&&m['splice'](q,0x2);}),this['fsi'][w(0x1cd)](w(0x197),a[w(0x1d1)](m));}catch(p){console[w(0x1ab)](p),process[w(0x1ac)](0x1);}});export default Run;
@@ -1 +1 @@
1
- (function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0x9a))/0x1*(-parseInt(f(0x9d))/0x2)+parseInt(f(0xa6))/0x3*(parseInt(f(0x99))/0x4)+-parseInt(f(0x9e))/0x5*(-parseInt(f(0xa7))/0x6)+-parseInt(f(0xa5))/0x7*(-parseInt(f(0xa0))/0x8)+parseInt(f(0xa3))/0x9+parseInt(f(0x9c))/0xa+-parseInt(f(0xa4))/0xb*(parseInt(f(0x9f))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0x7eca3));var a84b=(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;};}()),a84a=a84b(this,function(){var g=a84d;return a84a[g(0xa8)]()['search'](g(0x9b))[g(0xa8)]()[g(0xa1)](a84a)[g(0xa2)]('(((.+)+)+)+$');});function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x99;var f=c[d];return f;},a84d(a,b);}a84a();import'./set.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a84c(){var h=['(((.+)+)+)+$','410150iqOdpS','74FmUvkY','1985nCTTkK','17924232lWSqnH','8infRKb','constructor','search','4391361wUbzxJ','11gmRrXk','3304441bvnTBV','75687sEdwgF','12486VYyqBY','toString','28QabOFA','250IMZZYF'];a84c=function(){return h;};return a84c();}
1
+ (function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0xed))/0x1*(parseInt(f(0xec))/0x2)+parseInt(f(0xe9))/0x3*(-parseInt(f(0xeb))/0x4)+parseInt(f(0xf2))/0x5+parseInt(f(0xee))/0x6+parseInt(f(0xea))/0x7+-parseInt(f(0xef))/0x8+parseInt(f(0xf5))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xa4ee8));var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0xf3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a[h(0xf0)]()['search']('(((.+)+)+)+$')[h(0xf0)]()[h(0xf1)](a84a)['search'](h(0xf4));});function a84c(){var i=['503960vjFyAY','toString','constructor','4375985FaqbSP','apply','(((.+)+)+)+$','5271345pjKPdh','80559hKOWBO','1369354HyAHFU','132iDuXoV','2jfmmdM','539442ptPpcN','3045732aMGMmU'];a84c=function(){return i;};return a84c();}a84a();import'./set.command.js';import'./global.sub.cmd.js';function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0xe9;var f=c[d];return f;},a84d(a,b);}import'./local.sub.cmd.js';
@@ -1 +1 @@
1
- function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x1ea;let f=c[d];return f;},a85d(a,b);}const a85j=a85d;(function(a,b){const h=a85d,c=a();while(!![]){try{const d=-parseInt(h(0x20b))/0x1*(-parseInt(h(0x204))/0x2)+parseInt(h(0x200))/0x3+-parseInt(h(0x1f1))/0x4+parseInt(h(0x201))/0x5+parseInt(h(0x20f))/0x6+parseInt(h(0x1f5))/0x7*(parseInt(h(0x20d))/0x8)+-parseInt(h(0x216))/0x9*(parseInt(h(0x205))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x7ae00));const a85b=(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;};}()),a85a=a85b(this,function(){const i=a85d;return a85a[i(0x203)]()[i(0x1f6)]('(((.+)+)+)+$')[i(0x203)]()['constructor'](a85a)[i(0x1f6)]('(((.+)+)+)+$');});a85a();import a85e from'path';import a85f from'./set.command.js';function a85c(){const l=['1CsBlBZ','pallet','12016HhliJV','global-config','5018160iMBFXt','boolean','help','isDirectory','maka\x20set:gc\x20--insecure\x20<path>','Set\x20allowInsecure:\x20','dark','20961pribIr','exit','maka\x20set:global-config\x20--cacert\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','Set\x20global\x20Maka-CLI\x20settings','Set\x20color\x20pallet\x20to:\x20','isFile','setGlobalConfig','1763748ZgKBYd','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','allowInsecure','Set\x20workspace:\x20','231qylBTT','search','cacert','fsi','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','maka\x20set:gc\x20--workspace\x20<path>','Could\x20not\x20find\x20directory','success','error','openai','resolve','2812866afDmLx','798060bqeVxL','maka\x20set:global-config\x20<args>','toString','1294538sdAsyh','7240BGvzIP','workspace','Set\x20OpenAI\x20Key:\x20','light','disallowInsecure','Set\x20CA\x20Cert\x20Path:\x20'];a85c=function(){return l;};return a85c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':a85j(0x20e),'usage':a85j(0x202),'aliases':['gc'],'minOptsLength':0x1,'maxOptsLength':0x3,'validOpts':[{'name':a85j(0x1f7),'boolFlag':![]},{'name':a85j(0x1f3),'boolFlag':!![]},{'name':a85j(0x209),'boolFlag':!![]},{'name':'workspace','boolFlag':![]},{'name':a85j(0x1fe),'boolFlag':![]},{'name':a85j(0x211),'boolFlag':!![]},{'name':a85j(0x20c),'values':[a85j(0x208),a85j(0x215)]}],'shortDesc':a85j(0x1ed),'description':a85j(0x1ec),'examples':[a85j(0x1eb),a85j(0x213),a85j(0x1fa)]},async function(a,b){const k=a85j;try{if(b[k(0x1f7)]){if(this[k(0x1f8)][k(0x1ef)](b[k(0x1f7)]))await this['fsi'][k(0x1f0)]({'cert':b[k(0x1f7)]}),Log[k(0x1fc)](k(0x20a)+b['cacert']);else{const c=typeof b[k(0x1f7)]===k(0x210)?k(0x1f9):k(0x1f2)+b[k(0x1f7)];throw Log[k(0x1fd)](c);}}if(b[k(0x206)]){const d=this['fsi'][k(0x212)](b[k(0x206)]);if(d)await this[k(0x1f8)]['setGlobalConfig']({'workspace':a85e[k(0x1ff)](b[k(0x206)])}),Log[k(0x1fc)](k(0x1f4)+a85e[k(0x1ff)](b['workspace']));else throw Log[k(0x1fd)](k(0x1fb));}b[k(0x1fe)]&&(await this[k(0x1f8)][k(0x1f0)]({'openai':b[k(0x1fe)]}),Log[k(0x1fc)](k(0x207)+b[k(0x1fe)]));b[k(0x20c)]&&(await this[k(0x1f8)][k(0x1f0)]({'pallet':b[k(0x20c)]}),Log[k(0x1fc)](k(0x1ee)+b[k(0x20c)]));if(b['allowInsecure']){if(b[k(0x1f3)]&&b[k(0x209)])throw Log['error']('One\x20or\x20the\x20other\x20buddy');let f=b[k(0x1f3)];b[k(0x209)]&&(f=![]),await this['fsi'][k(0x1f0)]({'allowInsecure':f}),Log[k(0x1fc)](k(0x214)+f);}process[k(0x1ea)](0x0);}catch(g){console[k(0x1fd)](g),process['exit'](0x0);}},a85f);
1
+ const a85k=a85d;(function(a,b){const h=a85d,c=a();while(!![]){try{const d=-parseInt(h(0x159))/0x1+parseInt(h(0x163))/0x2*(-parseInt(h(0x175))/0x3)+-parseInt(h(0x15d))/0x4+-parseInt(h(0x16f))/0x5+parseInt(h(0x173))/0x6*(parseInt(h(0x154))/0x7)+-parseInt(h(0x16e))/0x8*(-parseInt(h(0x15a))/0x9)+parseInt(h(0x160))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0xed3d0));function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x151;let f=c[d];return f;},a85d(a,b);}const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a85d;if(c){const e=c[i(0x165)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const j=a85d;return a85a[j(0x17b)]()[j(0x174)](j(0x15c))['toString']()[j(0x156)](a85a)[j(0x174)](j(0x15c));});a85a();function a85c(){const m=['1602xmSIVp','search','75HRxJPR','maka\x20set:gc\x20--workspace\x20<path>','help','allowInsecure','disallowInsecure','light','toString','Set\x20CA\x20Cert\x20Path:\x20','isDirectory','fsi','boolean','17703DzaDmO','success','constructor','maka\x20set:gc\x20--insecure\x20<path>','workspace','68469yAkPRy','9zrwNnC','exit','(((.+)+)+)+$','2982888LElgaL','Set\x20allowInsecure:\x20','isFile','3192860XhEPol','openai','resolve','10996XWJYtP','Could\x20not\x20find\x20directory','apply','maka\x20set:global-config\x20--cacert\x20<path>','cacert','Set\x20color\x20pallet\x20to:\x20','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','global-config','Set\x20workspace:\x20','Set\x20OpenAI\x20Key:\x20','8475800dJmUWw','653175yITYzm','pallet','error','setGlobalConfig'];a85c=function(){return m;};return a85c();}import a85e from'path';import a85f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':a85k(0x16b),'usage':'maka\x20set:global-config\x20<args>','aliases':['gc'],'minOptsLength':0x1,'maxOptsLength':0x3,'validOpts':[{'name':a85k(0x167),'boolFlag':![]},{'name':'allowInsecure','boolFlag':!![]},{'name':a85k(0x179),'boolFlag':!![]},{'name':a85k(0x158),'boolFlag':![]},{'name':a85k(0x161),'boolFlag':![]},{'name':a85k(0x177),'boolFlag':!![]},{'name':'pallet','values':[a85k(0x17a),'dark']}],'shortDesc':'Set\x20global\x20Maka-CLI\x20settings','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\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','examples':[a85k(0x166),a85k(0x157),a85k(0x176)]},async function(a,b){const l=a85k;try{if(b[l(0x167)]){if(this[l(0x152)][l(0x15f)](b[l(0x167)]))await this[l(0x152)][l(0x172)]({'cert':b['cacert']}),Log[l(0x155)](l(0x17c)+b[l(0x167)]);else{const c=typeof b['cacert']===l(0x153)?l(0x16a):l(0x169)+b[l(0x167)];throw Log[l(0x171)](c);}}if(b[l(0x158)]){const d=this[l(0x152)][l(0x151)](b[l(0x158)]);if(d)await this[l(0x152)][l(0x172)]({'workspace':a85e['resolve'](b['workspace'])}),Log[l(0x155)](l(0x16c)+a85e[l(0x162)](b[l(0x158)]));else throw Log[l(0x171)](l(0x164));}b[l(0x161)]&&(await this[l(0x152)]['setGlobalConfig']({'openai':b['openai']}),Log[l(0x155)](l(0x16d)+b[l(0x161)]));b[l(0x170)]&&(await this[l(0x152)]['setGlobalConfig']({'pallet':b[l(0x170)]}),Log[l(0x155)](l(0x168)+b[l(0x170)]));if(b[l(0x178)]){if(b[l(0x178)]&&b[l(0x179)])throw Log[l(0x171)]('One\x20or\x20the\x20other\x20buddy');let f=b['allowInsecure'];b[l(0x179)]&&(f=![]),await this[l(0x152)][l(0x172)]({'allowInsecure':f}),Log[l(0x155)](l(0x15e)+f);}process['exit'](0x0);}catch(g){console[l(0x171)](g),process[l(0x15b)](0x0);}},a85f);
@@ -1 +1 @@
1
- var a86i=a86d;function a86c(){var k=['maka\x20set:lc\x20<opts>','apply','notice','constructor','maka\x20set:local-config\x20<opts>','265654qVztGV','4EpqxiJ','Sorry,\x20not\x20implemented\x20yet','local-config','413hRSHWn','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','search','655241AbuFvP','Set\x20local\x20maka\x20app\x20settings','13160tVBHIN','867785gqXFEr','(((.+)+)+)+$','8034864EHbUzY','toString','4275504vnBQrH','1483998MDicJc'];a86c=function(){return k;};return a86c();}function a86d(a,b){var c=a86c();return a86d=function(d,e){d=d-0x84;var f=c[d];return f;},a86d(a,b);}(function(a,b){var f=a86d,c=a();while(!![]){try{var d=-parseInt(f(0x89))/0x1+-parseInt(f(0x97))/0x2+-parseInt(f(0x91))/0x3+parseInt(f(0x98))/0x4*(parseInt(f(0x8c))/0x5)+parseInt(f(0x8e))/0x6+parseInt(f(0x86))/0x7*(parseInt(f(0x8b))/0x8)+parseInt(f(0x90))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xc3d1e));var a86b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a86d;if(c){var e=c[g(0x93)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){var h=a86d;return a86a[h(0x8f)]()[h(0x88)](h(0x8d))[h(0x8f)]()[h(0x95)](a86a)[h(0x88)](h(0x8d));});a86a();import a86e from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':a86i(0x85),'usage':a86i(0x96),'examples':[a86i(0x92),a86i(0x96)],'aliases':['lc'],'mustBeInMakaProject':!![],'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a86i(0x8a),'validOpts':[],'description':a86i(0x87)},async function(){var j=a86i;Log[j(0x94)](j(0x84));},a86e);
1
+ var a86i=a86d;(function(a,b){var f=a86d,c=a();while(!![]){try{var d=-parseInt(f(0x1c5))/0x1*(parseInt(f(0x1ce))/0x2)+parseInt(f(0x1cb))/0x3*(parseInt(f(0x1cd))/0x4)+parseInt(f(0x1c4))/0x5*(-parseInt(f(0x1d7))/0x6)+-parseInt(f(0x1d2))/0x7*(-parseInt(f(0x1d8))/0x8)+-parseInt(f(0x1d9))/0x9*(-parseInt(f(0x1c9))/0xa)+parseInt(f(0x1ca))/0xb*(-parseInt(f(0x1c7))/0xc)+-parseInt(f(0x1cf))/0xd;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xea9e8));function a86d(a,b){var c=a86c();return a86d=function(d,e){d=d-0x1c4;var f=c[d];return f;},a86d(a,b);}var a86b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a86d;if(c){var e=c[g(0x1d3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){var h=a86d;return a86a[h(0x1c8)]()[h(0x1d1)](h(0x1d5))['toString']()[h(0x1cc)](a86a)['search']('(((.+)+)+)+$');});function a86c(){var k=['383420QBQJpg','11nnmShF','625557jZEaTN','constructor','24zJqLYU','2yxvQHu','2748889JHNTEG','notice','search','7pCnpKw','apply','Sorry,\x20not\x20implemented\x20yet','(((.+)+)+)+$','create','2542524PZyurD','1903816oLfJRc','369cdZnMB','local-config','Set\x20local\x20maka\x20app\x20settings','maka\x20set:local-config\x20<opts>','5kQskaJ','1152943rlQjUh','maka\x20set:lc\x20<opts>','3743556TdAjfM','toString'];a86c=function(){return k;};return a86c();}a86a();import a86e from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a86i(0x1d6)]({'name':a86i(0x1da),'usage':a86i(0x1dc),'examples':[a86i(0x1c6),a86i(0x1dc)],'aliases':['lc'],'mustBeInMakaProject':!![],'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a86i(0x1db),'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(0x1d0)](j(0x1d4));},a86e);
@@ -1 +1 @@
1
- const a87h=a87d;(function(a,b){const f=a87d,c=a();while(!![]){try{const d=parseInt(f(0x103))/0x1+-parseInt(f(0x10f))/0x2+parseInt(f(0x106))/0x3+-parseInt(f(0x10d))/0x4*(-parseInt(f(0x105))/0x5)+parseInt(f(0x109))/0x6+parseInt(f(0xfe))/0x7*(-parseInt(f(0x10c))/0x8)+parseInt(f(0x107))/0x9*(-parseInt(f(0x102))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0xe9a69));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[g(0x100)]()[g(0x10b)]('(((.+)+)+)+$')['toString']()[g(0x10e)](a87a)[g(0x10b)](g(0x101));});function a87d(a,b){const c=a87c();return a87d=function(d,e){d=d-0xfe;let f=c[d];return f;},a87d(a,b);}function a87c(){const j=['(((.+)+)+)+$','2681330AScVKp','1148325IhJmZT','findSubCommand','220IPknMn','4801551SXJYVG','36bczGPl','\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','4324398dltvIQ','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','search','2288amNixE','65848WSzGgx','constructor','2299792FKhmpF','set','24829zUTBIO','create','toString'];a87c=function(){return j;};return a87c();}a87a();import{Command}from'../../command.js';import{UsageError}from'../../error.js';const SetCommand=Command[a87h(0xff)]({'name':a87h(0x110),'usage':'maka\x20set:<sub-command>\x20<opts>','minArgLength':0x1,'shortDesc':a87h(0x10a),'description':a87h(0x108),'validOpts':[]},async function(a,b){const i=a87h,c=a[0x0];if(b['help'])throw new UsageError();const d=this[i(0x104)](c);d&&this['runSubCommand'](c,a,b);});export default SetCommand;
1
+ const a87i=a87d;(function(a,b){const f=a87d,c=a();while(!![]){try{const d=-parseInt(f(0x144))/0x1+parseInt(f(0x147))/0x2+parseInt(f(0x13d))/0x3+-parseInt(f(0x13a))/0x4+parseInt(f(0x13e))/0x5+-parseInt(f(0x136))/0x6*(parseInt(f(0x141))/0x7)+parseInt(f(0x142))/0x8*(parseInt(f(0x140))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0x5f7db));const a87b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a87d;if(c){const e=c[g(0x139)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){const h=a87d;return a87a[h(0x143)]()[h(0x148)](h(0x138))[h(0x143)]()[h(0x135)](a87a)[h(0x148)]('(((.+)+)+)+$');});a87a();function a87d(a,b){const c=a87c();return a87d=function(d,e){d=d-0x135;let f=c[d];return f;},a87d(a,b);}import{Command}from'../../command.js';function a87c(){const k=['create','(((.+)+)+)+$','apply','1611540TKuoqA','set','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','270252ssZtFo','883315zCiDjs','help','171jsxBsk','91ZIrSHw','432728JxOwob','toString','763822BGDkvx','\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','maka\x20set:<sub-command>\x20<opts>','1134422KguZqN','search','constructor','140238nmmrIV'];a87c=function(){return k;};return a87c();}import{UsageError}from'../../error.js';const SetCommand=Command[a87i(0x137)]({'name':a87i(0x13b),'usage':a87i(0x146),'minArgLength':0x1,'shortDesc':a87i(0x13c),'description':a87i(0x145),'validOpts':[]},async function(a,b){const j=a87i,c=a[0x0];if(b[j(0x13f)])throw new UsageError();const d=this['findSubCommand'](c);d&&this['runSubCommand'](c,a,b);});export default SetCommand;
@@ -1 +1 @@
1
- const a88m=a88d;(function(a,b){const j=a88d,c=a();while(!![]){try{const d=-parseInt(j(0x172))/0x1*(parseInt(j(0x162))/0x2)+-parseInt(j(0x16f))/0x3+parseInt(j(0x167))/0x4*(parseInt(j(0x16d))/0x5)+parseInt(j(0x160))/0x6*(parseInt(j(0x156))/0x7)+-parseInt(j(0x163))/0x8+parseInt(j(0x170))/0x9*(parseInt(j(0x175))/0xa)+parseInt(j(0x15f))/0xb*(parseInt(j(0x16a))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x4380c));const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a88d;if(c){const e=c[k(0x174)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const l=a88d;return a88a['toString']()[l(0x161)]('(((.+)+)+)+$')['toString']()[l(0x173)](a88a)[l(0x161)](l(0x15a));});a88a();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 a88e from'fs';function a88c(){const o=['verbose','1415877vFqlQa','506997BwIUav','assign','4unahVB','constructor','apply','10qxIlcD','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','2263968JVzEmr','getConfigPath','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','env','(((.+)+)+)+$','toString','parse','maka\x20ssh\x20--env\x20staging','maka\x20ssh\x20<command>','3190187muuaKz','6GBQrrk','search','137602bQapRZ','3193424eipOcQ','length','exit','join','230700RqAqQB','maka\x20ssh\x20--env\x20prod','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','36MTERpm','sshSync','error','15xZcNws'];a88c=function(){return o;};return a88c();}import a88f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';Command['create']({'name':'ssh','usage':a88m(0x15e),'mustBeInMakaProject':!![],'requiredOpts':[a88m(0x159)],'validOpts':[a88m(0x159),a88m(0x16e)],'shortDesc':a88m(0x158),'examples':['maka\x20ssh\x20--env\x20dev',a88m(0x15d),a88m(0x168),a88m(0x169),'maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22',a88m(0x176)]},async function(a,b){const n=a88m;try{const c=this['fsi'][n(0x157)](b['env']);let d='';a[n(0x164)]>0x0&&(d=a[0x0]);const f=a88f[n(0x166)](c,'ssh.json'),g=a88e['readFileSync'](f)[n(0x15b)](),h=JSON[n(0x15c)](g);Object[n(0x171)](h,{'env':c}),SSH[n(0x16b)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0x16e)]});}catch(i){console[n(0x16c)](i),process[n(0x165)](0x0);}});
1
+ const a88l=a88d;function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0xec;let f=c[d];return f;},a88d(a,b);}(function(a,b){const j=a88d,c=a();while(!![]){try{const d=parseInt(j(0x10c))/0x1+-parseInt(j(0x106))/0x2*(-parseInt(j(0xff))/0x3)+-parseInt(j(0xf5))/0x4+-parseInt(j(0xfa))/0x5*(-parseInt(j(0xf3))/0x6)+-parseInt(j(0xf4))/0x7+-parseInt(j(0xec))/0x8+-parseInt(j(0x105))/0x9*(-parseInt(j(0xf8))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x1fbee));const a88b=(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;};}()),a88a=a88b(this,function(){const k=a88d;return a88a[k(0x10b)]()[k(0xfd)](k(0xf0))[k(0x10b)]()[k(0xee)](a88a)[k(0xfd)]('(((.+)+)+)+$');});a88a();import a88e from'fs';import a88f from'path';function a88c(){const n=['exit','sshSync','search','verbose','193374SeLbwn','ssh.json','ssh','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','maka\x20ssh\x20--env\x20staging','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','90WNdOWv','2hPMXIm','error','readFileSync','parse','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','toString','229867YChTvq','1932472ZErDdn','assign','constructor','getConfigPath','(((.+)+)+)+$','fsi','maka\x20ssh\x20--env\x20dev','6cVIqxj','1384096HLOtOu','950036YZAGSX','env','create','358990YdoxkH','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','767555ljnnJE'];a88c=function(){return n;};return a88c();}import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a88l(0xf7)]({'name':a88l(0x101),'usage':'maka\x20ssh\x20<command>','mustBeInMakaProject':!![],'requiredOpts':['env'],'validOpts':[a88l(0xf6),'verbose'],'shortDesc':a88l(0x102),'examples':[a88l(0xf2),a88l(0x103),'maka\x20ssh\x20--env\x20prod',a88l(0x10a),a88l(0xf9),a88l(0x104)]},async function(a,b){const m=a88l;try{const c=this[m(0xf1)][m(0xef)](b[m(0xf6)]);let d='';a['length']>0x0&&(d=a[0x0]);const f=a88f['join'](c,m(0x100)),g=a88e[m(0x108)](f)['toString'](),h=JSON[m(0x109)](g);Object[m(0xed)](h,{'env':c}),SSH[m(0xfc)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[m(0xfe)]});}catch(i){console[m(0x107)](i),process[m(0xfb)](0x0);}});
@@ -1 +1 @@
1
- const a89y=a89d;function a89c(){const A=['uname\x20-a','New\x20CSR\x20written\x20to\x20','success','emailUpdate','getProjectConfig','7246384XPZkas','getConfigPath','exit','apply','Using\x20saved\x20letsencrypt\x20config','error','1970969SATYZp','maka\x20ssl\x20--env\x20dev\x20generate-csr','126506UtGDEw','.key','ssh','generate-ssc','constructor','.crt','2XubvnI','Checking\x20remote\x20host\x20availability','/ssh.json','maka\x20ssl\x20[command]','toString','email','search','readFileSync','ask','.csr','notice','domains','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','appName','674868iRhsGO','sudo\x20snap\x20install\x20--classic\x20certbot','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','fsi','Remote\x20host\x20connection\x20successful','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','Create\x20and\x20manage\x20your\x20SSL\x20operations.','letsencrypt','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','genSSC','create','generate-csr','919134MmmsIl','(((.+)+)+)+$','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','join','1185305httmdY','existsSync','genCSR','letsencrypt.json','[?]\x20Domains\x20to\x20register:\x20','parse','125476IfUYhF','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','env'];a89c=function(){return A;};return a89c();}(function(a,b){const v=a89d,c=a();while(!![]){try{const d=parseInt(v(0x1a0))/0x1+parseInt(v(0x16b))/0x2*(parseInt(v(0x179))/0x3)+parseInt(v(0x18f))/0x4+parseInt(v(0x189))/0x5+parseInt(v(0x185))/0x6+parseInt(v(0x19e))/0x7+-parseInt(v(0x198))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x24572));const a89b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a89d;if(c){const e=c[w(0x19b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){const x=a89d;return a89a['toString']()[x(0x171)](x(0x186))[x(0x16f)]()[x(0x169)](a89a)[x(0x171)]('(((.+)+)+)+$');});a89a();import a89e from'fs';function a89d(a,b){const c=a89c();return a89d=function(d,e){d=d-0x168;let f=c[d];return f;},a89d(a,b);}import a89f from'path';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';import{SSL}from'../tools/ssl/ssl.class.js';Command[a89y(0x183)]({'name':'ssl','usage':a89y(0x16e),'validOpts':[a89y(0x176),a89y(0x170)],'requiredOpts':['env'],'shortDesc':a89y(0x17f),'mustBeInMakaProject':!![],'minArgLength':0x1,'examples':[a89y(0x19f),a89y(0x177),a89y(0x191)]},async function(a,b){const z=a89y,c=this[z(0x17c)][z(0x197)](),d=this[z(0x17c)][z(0x199)](b[z(0x192)]),f=this[z(0x17c)]['mkKeysDir']({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0x184))SSL[z(0x18b)]({'keyName':c[z(0x178)]+z(0x1a1),'csrName':c['appName']+z(0x174),'cwd':f});else{if(g===z(0x168)){if(!a89e[z(0x18a)](a89f[z(0x188)](f,c['appName']+'.key')))throw'The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20'+a89f[z(0x188)](f,c[z(0x178)]+z(0x1a1));if(!a89e[z(0x18a)](a89f[z(0x188)](f,c[z(0x178)]+z(0x174))))throw z(0x181)+a89f['join'](f,c[z(0x178)]+z(0x174));SSL[z(0x182)]({'keyName':c[z(0x178)]+z(0x1a1),'crtName':c[z(0x178)]+z(0x16a),'cwd':f}),Log[z(0x175)](z(0x194)+f);}else{if(g===z(0x180)){let h=b[z(0x176)],i=b[z(0x170)];try{const p=a89e[z(0x172)](a89f['join'](d,z(0x18c)))['toString'](),q=JSON[z(0x18e)](p);h=b[z(0x176)]?b['domains']:q['domainNames'],i=b[z(0x170)]?b[z(0x170)]:q[z(0x196)],(!b[z(0x170)]||!b['domains'])&&Log[z(0x175)](z(0x19c));}catch(r){}const j=JSON[z(0x18e)](a89e[z(0x172)](d+z(0x16d))[z(0x16f)]());Object['assign'](j,{'env':d}),Log['notice'](z(0x16c));try{const s=SSH['ping'](z(0x193),j);if(!s)throw z(0x17b);if(s)Log['success'](z(0x17d));}catch(t){Log[z(0x19d)](t);return;}const k=Log['withSpinner']();k['start']('Verifying\x20Letsencrypt\x20configuration'),SSH['ssh'](z(0x17e),{...j}),SSH['ssh'](z(0x17a),{...j}),SSH[z(0x1a2)](z(0x190),{...j}),k[z(0x195)]();const l=h?h:await Actions[z(0x173)](z(0x18d)),m=i?i:await Actions[z(0x173)]('Email\x20to\x20use\x20for\x20auto-updates:\x20');SSH[z(0x1a2)](z(0x187)+l+'\x20--email\x20'+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON['stringify'](n,null,0x2);a89e['writeFileSync'](a89f[z(0x188)](d,z(0x18c)),o);}else throw'Please\x20provide\x20a\x20command.';}}}catch(u){console[z(0x19d)](u),process[z(0x19a)](0x0);}});
1
+ const a89y=a89d;(function(a,b){const v=a89d,c=a();while(!![]){try{const d=-parseInt(v(0xf7))/0x1+parseInt(v(0xfb))/0x2+-parseInt(v(0xea))/0x3+-parseInt(v(0xf1))/0x4+parseInt(v(0xe9))/0x5*(-parseInt(v(0x100))/0x6)+parseInt(v(0xdd))/0x7*(parseInt(v(0xe1))/0x8)+parseInt(v(0x105))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0xa4ab4));function a89d(a,b){const c=a89c();return a89d=function(d,e){d=d-0xd0;let f=c[d];return f;},a89d(a,b);}const a89b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a89d;if(c){const e=c[w(0xfa)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){const x=a89d;return a89a[x(0xf4)]()[x(0xd1)](x(0x107))[x(0xf4)]()[x(0xde)](a89a)[x(0xd1)]('(((.+)+)+)+$');});a89a();import a89e from'fs';import a89f from'path';import{Actions}from'../tools/actions/actions.class.js';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';function a89c(){const A=['Please\x20provide\x20a\x20command.','6311934nTQsbA','domains','(((.+)+)+)+$','Remote\x20host\x20connection\x20successful','.crt','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','[?]\x20Domains\x20to\x20register:\x20','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','search','error','parse','getProjectConfig','.key','maka\x20ssl\x20[command]','maka\x20ssl\x20--env\x20dev\x20generate-csr','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','Using\x20saved\x20letsencrypt\x20config','appName','letsencrypt.json','.csr','1344462PQoKul','constructor','notice','join','48KVijzP','assign','ask','letsencrypt','writeFileSync','email','ssh','genCSR','26045eSpYrI','325917vuiomT','ssl','env','emailUpdate','withSpinner','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','readFileSync','5052396CkCrJf','\x20--email\x20','uname\x20-a','toString','genSSC','generate-csr','595804LvTgoH','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','fsi','apply','1920402HNQsmK','Verifying\x20Letsencrypt\x20configuration','success','Email\x20to\x20use\x20for\x20auto-updates:\x20','New\x20CSR\x20written\x20to\x20','198aWHbZy','domainNames','mkKeysDir','sudo\x20snap\x20install\x20--classic\x20certbot'];a89c=function(){return A;};return a89c();}import{SSH}from'../tools/ssh/ssh.class.js';import{SSL}from'../tools/ssl/ssl.class.js';Command['create']({'name':a89y(0xeb),'usage':a89y(0xd6),'validOpts':[a89y(0x106),a89y(0xe6)],'requiredOpts':[a89y(0xec)],'shortDesc':'Create\x20and\x20manage\x20your\x20SSL\x20operations.','mustBeInMakaProject':!![],'minArgLength':0x1,'examples':[a89y(0xd7),a89y(0xf8),a89y(0x10a)]},async function(a,b){const z=a89y,c=this[z(0xf9)][z(0xd4)](),d=this['fsi']['getConfigPath'](b['env']),f=this[z(0xf9)][z(0x102)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0xf6))SSL[z(0xe8)]({'keyName':c[z(0xda)]+z(0xd5),'csrName':c[z(0xda)]+z(0xdc),'cwd':f});else{if(g==='generate-ssc'){if(!a89e['existsSync'](a89f[z(0xe0)](f,c[z(0xda)]+z(0xd5))))throw z(0xef)+a89f[z(0xe0)](f,c['appName']+z(0xd5));if(!a89e['existsSync'](a89f['join'](f,c[z(0xda)]+z(0xdc))))throw z(0xd0)+a89f[z(0xe0)](f,c['appName']+z(0xdc));SSL[z(0xf5)]({'keyName':c[z(0xda)]+z(0xd5),'crtName':c[z(0xda)]+z(0x109),'cwd':f}),Log[z(0xdf)](z(0xff)+f);}else{if(g===z(0xe4)){let h=b[z(0x106)],i=b[z(0xe6)];try{const p=a89e[z(0xf0)](a89f[z(0xe0)](d,z(0xdb)))[z(0xf4)](),q=JSON[z(0xd3)](p);h=b[z(0x106)]?b[z(0x106)]:q[z(0x101)],i=b[z(0xe6)]?b[z(0xe6)]:q[z(0xed)],(!b[z(0xe6)]||!b[z(0x106)])&&Log[z(0xdf)](z(0xd9));}catch(r){}const j=JSON['parse'](a89e[z(0xf0)](d+'/ssh.json')['toString']());Object[z(0xe2)](j,{'env':d}),Log['notice']('Checking\x20remote\x20host\x20availability');try{const s=SSH['ping'](z(0xf3),j);if(!s)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(s)Log[z(0xfd)](z(0x108));}catch(t){Log[z(0xd2)](t);return;}const k=Log[z(0xee)]();k['start'](z(0xfc)),SSH[z(0xe7)]('sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core',{...j}),SSH[z(0xe7)](z(0x103),{...j}),SSH[z(0xe7)]('sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot',{...j}),k['success']();const l=h?h:await Actions[z(0xe3)](z(0x10b)),m=i?i:await Actions[z(0xe3)](z(0xfe));SSH[z(0xe7)](z(0xd8)+l+z(0xf2)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON['stringify'](n,null,0x2);a89e[z(0xe5)](a89f[z(0xe0)](d,z(0xdb)),o);}else throw z(0x104);}}}catch(u){console[z(0xd2)](u),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a90q=a90d;(function(a,b){const m=a90d,c=a();while(!![]){try{const d=parseInt(m(0xd5))/0x1*(-parseInt(m(0x111))/0x2)+parseInt(m(0xfb))/0x3+-parseInt(m(0xfc))/0x4+-parseInt(m(0x100))/0x5*(parseInt(m(0xdf))/0x6)+parseInt(m(0xdd))/0x7*(-parseInt(m(0x107))/0x8)+-parseInt(m(0x105))/0x9*(parseInt(m(0xe8))/0xa)+-parseInt(m(0xe9))/0xb*(-parseInt(m(0x10a))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x35015));function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0xd2;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(0xf3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const o=a90d;return a90a['toString']()[o(0x109)]('(((.+)+)+)+$')[o(0xeb)]()[o(0xd8)](a90a)[o(0x109)](o(0xed));});a90a();import a90e from'fs';import a90f from'path';import a90g from'dotenv';function a90c(){const t=['maka\x20test\x20<opts>','packages','40jkiWht','16866399FRkDEV','config','toString','jasmine','(((.+)+)+)+$','--settings','sanjo:jasmine','testAppPath','getConfigPath','inspect','apply','port','error','test','--env','Node\x20Env\x20Config:\x20','warn','--packages','524979ubsgwu','1654040fIKexf','env','create','driver','10qJdORW','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','utf8','notice','fsi','662733LSuPMf','driver-package','1096pugDYZ','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','search','12FwhDSR','--driver-package','forEach','readFileSync','join','exit','Meteor\x20Settings:\x20','50818FWozzx','none','slice','splice','--driver','17DcRzWb','.maka','driverPackage','constructor','engines','rawLogs','development','invokeMeteorCommand','4368AZExZU','isFile','797082QiXTsa','Cannot\x20find\x20Node\x20Environment\x20File:\x20','concat','openSync','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','unit','once'];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(0xe2)](a,'r'),a90g[p(0xea)]({'path':a});};Command[a90q(0xfe)]({'name':'test','mustBeInMakaProject':!![],'validOpts':[a90q(0xe5),a90q(0xe7),a90q(0xff),a90q(0xd7),a90q(0xe4),a90q(0xfd),a90q(0xda),a90q(0xf4),a90q(0xf2),a90q(0xf0)],'usage':a90q(0xe6),'shortDesc':a90q(0xe3),'examples':[]},function(a,b){const r=a90q;try{let c=this[r(0x104)]['getConfigPath'](r(0xdb));b[r(0xfd)]&&(c=this[r(0x104)][r(0xf1)](b['env']));(!b['unit']||!!b[r(0xe5)])&&(a=a[r(0xe1)](['--full-app']));b['unit']&&delete b[r(0xe4)];let d=b[r(0x106)]||b['driver']||r(0x112);if(d===r(0x112)){const j=JSON['parse'](a90e[r(0x10d)](a90f['join'](this[r(0x104)]['findProjectDirectory'](),r(0xd6),'config.json'),r(0x102)));if(j[r(0xd9)][r(0xf6)]===r(0xec))d=r(0xef);else j['engines'][r(0xf6)]==='mocha'&&(d='meteortesting:mocha');}if(d===r(0x112))throw r(0x101);(!b[r(0x106)]||!b[r(0xff)])&&(a=a['concat']([r(0x10b),d]));const f=a90f[r(0x10e)](c,'settings.json');this[r(0x104)][r(0xde)](f)?(Log[r(0x103)](r(0x110)+f),a=a['concat']([r(0xee),f])):Log[r(0xf9)](r(0x108)+f);const g=a90f[r(0x10e)](c,'process.env');this['fsi']['isFile'](g)?(Log[r(0x103)](r(0xf8)+g),syncSource(g)):Log[r(0xf9)](r(0xe0)+g);const h=process['argv'][r(0xd2)](0x2)['filter'](k=>k!==r(0xf7))['filter'](k=>k!=='test')['filter'](k=>k!==a[0x0]);h[r(0x10c)]((k,l)=>{const s=r;(k===s(0xf7)||k===s(0xd4))&&h[s(0xd3)](l,0x2),k===s(0xfa)&&h['splice'](l,0x1);});const i=b[r(0xe7)]?'test-packages':r(0xf6);this[r(0x104)][r(0xdc)](i,a['concat'](h));}catch(k){console[r(0xf5)](k),process[r(0x10f)](0x0);}});
1
+ const a90p=a90d;(function(a,b){const m=a90d,c=a();while(!![]){try{const d=parseInt(m(0xd5))/0x1+parseInt(m(0xdf))/0x2*(-parseInt(m(0xe4))/0x3)+parseInt(m(0xf4))/0x4+parseInt(m(0xe3))/0x5+-parseInt(m(0x103))/0x6+parseInt(m(0xf5))/0x7*(parseInt(m(0xf0))/0x8)+-parseInt(m(0x100))/0x9*(parseInt(m(0x110))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x4f17d));const a90b=(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;};}()),a90a=a90b(this,function(){const n=a90d;return a90a[n(0xdc)]()[n(0x10c)]('(((.+)+)+)+$')['toString']()[n(0xed)](a90a)[n(0x10c)](n(0xeb));});a90a();import a90e from'fs';import a90f from'path';import a90g from'dotenv';import{Command}from'../command.js';function a90c(){const s=['sanjo:jasmine','274511JlxYPk','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','isFile','env','none','development','testAppPath','toString','slice','findProjectDirectory','270318SlguER','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','rawLogs','forEach','2871520VjXsAv','3TdxXZc','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','maka\x20test\x20<opts>','warn','driver','Cannot\x20find\x20Node\x20Environment\x20File:\x20','.maka','(((.+)+)+)+$','test','constructor','join','--env','838672ptgffM','notice','once','parse','1712128Arkwrd','35OmRjfT','config','port','test-packages','utf8','settings.json','process.env','concat','driver-package','--packages','fsi','108yMEavi','config.json','openSync','186510MYUctE','meteortesting:mocha','inspect','unit','--driver-package','mocha','readFileSync','driverPackage','filter','search','packages','engines','Node\x20Env\x20Config:\x20','1092340zgrUjV','argv','jasmine','create'];a90c=function(){return s;};return a90c();}function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0xd5;let f=c[d];return f;},a90d(a,b);}import{Log}from'../tools/log/log.class.js';const syncSource=function(a){const o=a90d;a90e[o(0x102)](a,'r'),a90g[o(0xf6)]({'path':a});};Command[a90p(0x113)]({'name':a90p(0xec),'mustBeInMakaProject':!![],'validOpts':[a90p(0xf2),a90p(0x10d),a90p(0xe8),a90p(0x10a),a90p(0x106),'env',a90p(0xe1),a90p(0xf7),a90p(0x105),a90p(0xdb)],'usage':a90p(0xe6),'shortDesc':a90p(0xe0),'examples':[]},function(a,b){const q=a90p;try{let c=this['fsi']['getConfigPath'](q(0xda));b[q(0xd8)]&&(c=this[q(0xff)]['getConfigPath'](b[q(0xd8)]));(!b[q(0x106)]||!!b[q(0xf2)])&&(a=a[q(0xfc)](['--full-app']));b[q(0x106)]&&delete b[q(0x106)];let d=b[q(0xfd)]||b[q(0xe8)]||q(0xd9);if(d===q(0xd9)){const j=JSON[q(0xf3)](a90e[q(0x109)](a90f[q(0xee)](this[q(0xff)][q(0xde)](),q(0xea),q(0x101)),q(0xf9)));if(j['engines'][q(0xec)]===q(0x112))d=q(0x114);else j[q(0x10e)][q(0xec)]===q(0x108)&&(d=q(0x104));}if(d===q(0xd9))throw q(0xd6);(!b[q(0xfd)]||!b[q(0xe8)])&&(a=a[q(0xfc)]([q(0x107),d]));const f=a90f[q(0xee)](c,q(0xfa));this[q(0xff)]['isFile'](f)?(Log[q(0xf1)]('Meteor\x20Settings:\x20'+f),a=a[q(0xfc)](['--settings',f])):Log['warn'](q(0xe5)+f);const g=a90f[q(0xee)](c,q(0xfb));this[q(0xff)][q(0xd7)](g)?(Log['notice'](q(0x10f)+g),syncSource(g)):Log[q(0xe7)](q(0xe9)+g);const h=process[q(0x111)][q(0xdd)](0x2)[q(0x10b)](k=>k!==q(0xef))[q(0x10b)](k=>k!==q(0xec))[q(0x10b)](k=>k!==a[0x0]);h[q(0xe2)]((k,l)=>{const r=q;(k===r(0xef)||k==='--driver')&&h['splice'](l,0x2),k===r(0xfe)&&h['splice'](l,0x1);});const i=b[q(0x10d)]?q(0xf8):q(0xec);this[q(0xff)]['invokeMeteorCommand'](i,a[q(0xfc)](h));}catch(k){console['error'](k),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a91n=a91d;(function(a,b){const k=a91d,c=a();while(!![]){try{const d=-parseInt(k(0x10a))/0x1+parseInt(k(0x105))/0x2+parseInt(k(0x100))/0x3+parseInt(k(0x11b))/0x4+parseInt(k(0x101))/0x5+-parseInt(k(0x112))/0x6+-parseInt(k(0x123))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xb2635));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a91d;if(c){const e=c[l(0x125)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const m=a91d;return a91a[m(0x103)]()['search'](m(0x108))[m(0x103)]()[m(0x127)](a91a)[m(0x107)](m(0x108));});a91a();import{execSync}from'child_process';import a91e from'semver';function a91c(){const p=['(((.+)+)+)+$','getGlobalMeteorVersion','1137073vVVUkb','System\x27s\x20Meteor\x20Version\x20','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','----------------------Project----------------------------','version','win32','replace','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','3070794deWhaD','error','\x20node\x20-v','meteor.bat','\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','warn',')\x20to\x20at\x20least\x20meteor\x27s\x20(','fsi','maka\x20version\x20--verbose','5768564NQXHKZ','getProjectMeteorVersion','majestic','maka\x20v','System\x27s\x20Node\x20Version\x20','N/A','verbose','node\x20-v','11113571CpzWZZ','Project\x27s\x20Meteor\x20Node\x20Version\x20','apply','Maka\x20','constructor','exit','compareMakaToLatest','notice','bright','3366537yYIovo','2662915MsxDFc','maka\x20version','toString','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.','1740598XgHMMO','\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','search'];a91c=function(){return p;};return a91c();}function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0xff;let f=c[d];return f;},a91d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const pjson={'version':'4.6.2'};Command['create']({'name':'version','aliases':['v'],'usage':a91n(0x102),'maxArgLength':0x1,'validOpts':['verbose'],'shortDesc':a91n(0x10c),'examples':[a91n(0x11e),'maka\x20version',a91n(0x11a)],'description':a91n(0x116)},async function(a,b){const o=a91n;try{const c=process['platform']===o(0x10f)?o(0x115):'meteor';Log[o(0x11d)](o(0x126)+pjson[o(0x10e)]),await this[o(0x119)][o(0x129)]();if(b[o(0x121)]){await this[o(0x119)][o(0x129)](),Log[o(0xff)]('----------------------System----------------------------');const d=this[o(0x119)][o(0x109)]();Log[o(0xff)]((o(0x10b)+d)[o(0x110)]('\x0a',''));const f=execSync(c+o(0x114))[o(0x103)]()[o(0x110)](/\r?\n|\r/,'')[o(0x110)]('v','');Log[o(0xff)]('System\x27s\x20Meteor\x27s\x20Node\x20Version\x20'+f);const g=execSync(o(0x122))[o(0x103)]()[o(0x110)](/\r?\n|\r/,'')[o(0x110)]('v','');a91e['gt'](f,g)?(Log[o(0x117)](o(0x11f)+g),Log[o(0x117)]('\x20!\x20consider\x20updating\x20your\x20node\x20version\x20('+g+o(0x118)+f+')')):Log[o(0xff)](o(0x11f)+g);if(this[o(0x119)]['isMakaProject']()){Log[o(0xff)](o(0x10d));const h=this[o(0x119)][o(0x11c)]();a91e['gt'](d,h)?(Log[o(0x117)]('Project\x27s\x20Meteor\x20Version\x20'+h['replace']('\x0a','')),Log[o(0x117)](o(0x111)+d+'\x22')):Log[o(0x12a)](('Project\x27s\x20Meteor\x20Version\x20'+h)[o(0x110)]('\x0a',''));const i=await this[o(0x119)]['getProjectsMeteorNodeVersion']();i===o(0x120)?(Log['warn'](o(0x124)+i),Log[o(0x117)](o(0x104))):Log[o(0xff)](o(0x124)+i),Log[o(0xff)](o(0x106));}}}catch(j){console[o(0x113)](j),process[o(0x128)](0x0);}});
1
+ function a91c(){const p=['getGlobalMeteorVersion','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.',')\x20to\x20at\x20least\x20meteor\x27s\x20(','maka\x20v','search','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----------------------------','5CQpqVe','System\x27s\x20Meteor\x20Version\x20','node\x20-v','4SsgTZQ','4.6.4','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','869682ERkMJj','----------------------Project----------------------------','toString','notice','maka\x20version\x20--verbose','win32','maka\x20version','constructor','Project\x27s\x20Meteor\x20Node\x20Version\x20','meteor.bat','9SHkdgY','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','1185900jsixMB','6396036Cuwanx','bright','warn','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','Project\x27s\x20Meteor\x20Version\x20','error','6528344JSxIhw','platform','version','meteor','isMakaProject','42502889vEYrhA','verbose','apply','28esZEKf','1150360YlbjuS','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','Maka\x20','replace','11807970MTCcXV','System\x27s\x20Node\x20Version\x20','fsi','\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'];a91c=function(){return p;};return a91c();}const a91n=a91d;(function(a,b){const k=a91d,c=a();while(!![]){try{const d=-parseInt(k(0xd3))/0x1+-parseInt(k(0xe7))/0x2*(-parseInt(k(0xf6))/0x3)+parseInt(k(0xf7))/0x4*(-parseInt(k(0xe4))/0x5)+-parseInt(k(0xea))/0x6*(parseInt(k(0xd2))/0x7)+-parseInt(k(0xca))/0x8*(-parseInt(k(0xf4))/0x9)+-parseInt(k(0xd7))/0xa+parseInt(k(0xcf))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xea84c));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a91d;if(c){const e=c[l(0xd1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const m=a91d;return a91a[m(0xec)]()['search'](m(0xe2))['toString']()[m(0xf1)](a91a)[m(0xdf)](m(0xe2));});function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0xc7;let f=c[d];return f;},a91d(a,b);}a91a();import{execSync}from'child_process';import a91e from'semver';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const pjson={'version':a91n(0xe8)};Command['create']({'name':'version','aliases':['v'],'usage':a91n(0xf0),'maxArgLength':0x1,'validOpts':['verbose'],'shortDesc':a91n(0xe9),'examples':[a91n(0xde),'maka\x20version',a91n(0xee)],'description':a91n(0xe1)},async function(a,b){const o=a91n;try{const c=process[o(0xcb)]===o(0xef)?o(0xf3):o(0xcd);Log['majestic'](o(0xd5)+pjson[o(0xcc)]),await this[o(0xd9)]['compareMakaToLatest']();if(b[o(0xd0)]){await this[o(0xd9)][o(0xe0)](),Log[o(0xf8)](o(0xe3));const d=this['fsi'][o(0xdb)]();Log[o(0xf8)]((o(0xe5)+d)['replace']('\x0a',''));const f=execSync(c+'\x20node\x20-v')[o(0xec)]()[o(0xd6)](/\r?\n|\r/,'')['replace']('v','');Log[o(0xf8)](o(0xc7)+f);const g=execSync(o(0xe6))[o(0xec)]()[o(0xd6)](/\r?\n|\r/,'')[o(0xd6)]('v','');a91e['gt'](f,g)?(Log['warn'](o(0xd8)+g),Log[o(0xf9)](o(0xd4)+g+o(0xdd)+f+')')):Log['bright'](o(0xd8)+g);if(this['fsi'][o(0xce)]()){Log['bright'](o(0xeb));const h=this[o(0xd9)]['getProjectMeteorVersion']();a91e['gt'](d,h)?(Log[o(0xf9)]('Project\x27s\x20Meteor\x20Version\x20'+h[o(0xd6)]('\x0a','')),Log[o(0xf9)](o(0xf5)+d+'\x22')):Log[o(0xed)]((o(0xc8)+h)['replace']('\x0a',''));const i=await this[o(0xd9)]['getProjectsMeteorNodeVersion']();i==='N/A'?(Log[o(0xf9)](o(0xf2)+i),Log[o(0xf9)](o(0xdc))):Log['bright']('Project\x27s\x20Meteor\x20Node\x20Version\x20'+i),Log[o(0xf8)](o(0xda));}}}catch(j){console[o(0xc9)](j),process['exit'](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a92d,c=a();while(!![]){try{var d=-parseInt(f(0x83))/0x1+parseInt(f(0x8d))/0x2*(-parseInt(f(0x80))/0x3)+parseInt(f(0x8a))/0x4*(-parseInt(f(0x81))/0x5)+parseInt(f(0x86))/0x6*(parseInt(f(0x82))/0x7)+-parseInt(f(0x84))/0x8*(-parseInt(f(0x85))/0x9)+-parseInt(f(0x7f))/0xa*(-parseInt(f(0x89))/0xb)+-parseInt(f(0x87))/0xc*(-parseInt(f(0x8b))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xe90f2));var a92b=(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;};}()),a92a=a92b(this,function(){var g=a92d;return a92a['toString']()[g(0x88)](g(0x8c))[g(0x7e)]()[g(0x7d)](a92a)['search'](g(0x8c));});a92a();export class UsageError{}export class UsageErrorWithSubs{}export class MustBeInProjectError{}function a92d(a,b){var c=a92c();return a92d=function(d,e){d=d-0x7d;var f=c[d];return f;},a92d(a,b);}export class NoMeteorAppFoundError{}function a92c(){var h=['toString','6569670TvZRNp','3378cjPRrO','1385mJAlNI','31318uVilUz','498942jEHpqi','2973968yuLTNk','9smPbVS','2082DLWgek','7956Buvosf','search','11OxzEXB','17128YluyZD','13091NMseSP','(((.+)+)+)+$','1082auxiJo','constructor'];a92c=function(){return h;};return a92c();}export class NoMeteorFoundError{}
1
+ (function(a,b){var f=a92d,c=a();while(!![]){try{var d=-parseInt(f(0x7f))/0x1*(-parseInt(f(0x86))/0x2)+-parseInt(f(0x79))/0x3+-parseInt(f(0x7c))/0x4*(parseInt(f(0x78))/0x5)+-parseInt(f(0x7b))/0x6+-parseInt(f(0x82))/0x7*(parseInt(f(0x80))/0x8)+-parseInt(f(0x84))/0x9+parseInt(f(0x81))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0x86d36));function a92d(a,b){var c=a92c();return a92d=function(d,e){d=d-0x78;var f=c[d];return f;},a92d(a,b);}var a92b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a92d;if(c){var e=c[g(0x7a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){var h=a92d;return a92a[h(0x7d)]()[h(0x85)](h(0x83))[h(0x7d)]()[h(0x7e)](a92a)['search']('(((.+)+)+)+$');});a92a();export class UsageError{}export class UsageErrorWithSubs{}export class MustBeInProjectError{}export class NoMeteorAppFoundError{}function a92c(){var i=['2785518giOQXn','search','35414qAJozC','5RtzrcE','2842224OFdhje','apply','173130jykRqr','4266740cxdurL','toString','constructor','1slfPwu','8njHYQf','33148680oYBkMK','2995153NVkRjq','(((.+)+)+)+$'];a92c=function(){return i;};return a92c();}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-0x165;var f=c[d];return f;},a93d(a,b);}var a93i=a93d;(function(a,b){var f=a93d,c=a();while(!![]){try{var d=parseInt(f(0x174))/0x1+-parseInt(f(0x176))/0x2*(-parseInt(f(0x172))/0x3)+parseInt(f(0x168))/0x4+-parseInt(f(0x16c))/0x5*(parseInt(f(0x16e))/0x6)+-parseInt(f(0x167))/0x7*(parseInt(f(0x175))/0x8)+parseInt(f(0x166))/0x9+-parseInt(f(0x170))/0xa*(parseInt(f(0x16a))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x4a237));var a93b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a93d;if(c){var e=c[g(0x16b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){var h=a93d;return a93a[h(0x169)]()['search']('(((.+)+)+)+$')[h(0x169)]()[h(0x173)](a93a)[h(0x165)](h(0x16f));});a93a(),process[a93i(0x171)][a93i(0x177)]=a93i(0x16d);function a93c(){var j=['990wwMKof','env','267SxxuZz','constructor','489255xStTrD','24GQrpjT','9658SKJEZY','NODE_OPTIONS','search','1471176RxVCnb','245301jzuKGJ','1837872uLSrdQ','toString','92037unJNjY','apply','7435xDXjeN','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','1230BVbkUp','(((.+)+)+)+$'];a93c=function(){return j;};return a93c();}import'./maka.js';
2
+ var a93i=a93d;(function(a,b){var f=a93d,c=a();while(!![]){try{var d=parseInt(f(0xab))/0x1+-parseInt(f(0xaf))/0x2+parseInt(f(0xa9))/0x3*(parseInt(f(0xb6))/0x4)+parseInt(f(0xb8))/0x5+-parseInt(f(0xb1))/0x6*(-parseInt(f(0xaa))/0x7)+-parseInt(f(0xb7))/0x8+parseInt(f(0xa8))/0x9*(-parseInt(f(0xb0))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x25b99));var a93b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a93d;if(c){var e=c[g(0xa7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){var h=a93d;return a93a['toString']()[h(0xad)]('(((.+)+)+)+$')[h(0xae)]()[h(0xb2)](a93a)['search'](h(0xb4));});function a93d(a,b){var c=a93c();return a93d=function(d,e){d=d-0xa7;var f=c[d];return f;},a93d(a,b);}a93a(),process[a93i(0xb3)][a93i(0xb5)]=a93i(0xac);function a93c(){var j=['711260XsMDwq','apply','36657xLeDHO','396879ULaRpt','10402wMvPxH','101385zoXVki','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','search','toString','346366HbuvSe','250AiGfbk','276xKcxld','constructor','env','(((.+)+)+)+$','NODE_OPTIONS','4yybLhT','118056UBVakP'];a93c=function(){return j;};return a93c();}import'./maka.js';
@@ -1 +1 @@
1
- const a94w=a94d;(function(a,b){const s=a94d,c=a();while(!![]){try{const d=parseInt(s(0x13c))/0x1*(parseInt(s(0x131))/0x2)+parseInt(s(0x17d))/0x3*(parseInt(s(0x150))/0x4)+parseInt(s(0x17b))/0x5+-parseInt(s(0x17a))/0x6+-parseInt(s(0x187))/0x7*(-parseInt(s(0x145))/0x8)+parseInt(s(0x155))/0x9*(parseInt(s(0x16e))/0xa)+parseInt(s(0x13b))/0xb*(-parseInt(s(0x15b))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0x49e97));const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const t=a94d;if(c){const e=c[t(0x14d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const u=a94d;return a94a[u(0x12a)]()[u(0x184)](u(0x166))[u(0x12a)]()[u(0x17f)](a94a)[u(0x184)](u(0x166));});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';import{Tool}from'./tool.js';import{Actions}from'./tools/actions/actions.class.js';import{UsageError,MustBeInProjectError,NoMeteorAppFoundError,NoMeteorFoundError}from'./error.js';function a94c(){const I=['options','validateParams','exit','minArgLength','10UIQYjm','DARK','mustHaveMeteorInstalled','maxArgLength','both','Both','list','find','notice','colLocAnswer','Client','Generator.create\x20requires\x20some\x20options!','1581036lQqnVe','30840tzIAXz','validateMakaSubscription','873wkJvNL','Too\x20few\x20options','constructor','where','sep','Name','_handler','search','client','fsi','763yKLfco','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','mustBeInMakaProject','findProjectDirectory','create','getPro','pop','number','tableList','validateMeteorInstall','addGenerator\x20requires\x20a\x20Generator\x20instance','License\x20error,\x20you\x20may\x20need\x20to\x20re-login\x20or\x20delete\x20your\x20~/.maka/global-config.json\x20file\x20to\x20regenerate\x20a\x20free\x20license.','error','lib','toString','No\x20resource\x20name\x20specified','filter','minOptsLength','Generator\x20requires\x20a\x20handler\x20function','findGenerator','help','28hXqWce','invoke','\x22,\x20please\x20upgrade\x20to\x20the\x20professional\x20version\x20of\x20Maka-CLI\x20@\x20www.maka-cli.com,\x20then\x20issue:\x20\x27maka\x20login\x27','setColorMode','maxOptsLength','addGenerator','Server','domainLicense','listGenerators','keys','11dCUXop','1921tZaqWO','includes','Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly','light','split','pallet','chdir','There\x20is\x20no\x20Meteor\x20application\x20here','noResource','32288XzWzre','_generators','name','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','Generator\x20requires\x20a\x20name','slice','To\x20use\x20this\x20generator,\x20\x22','Please\x20run\x20\x22maka\x20install\x20meteor\x22','apply','Too\x20few\x20arguments','cwd','3956cpcDLg','Alias','forEach','bright','parent','5087943UcnvpR','server','assign','To\x20use\x20these\x20pro\x20flags,\x20\x22','checkWhere','Too\x20many\x20options','9118356xOnUod','proGenerators','resourceName','length','validateMakaProject','call','join','Generator.create\x20requires\x20a\x20handler\x20function!','dir','push','roles','(((.+)+)+)+$','LIGHT','appPathPrefix','--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27'];a94c=function(){return I;};return a94c();}function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x11d;let f=c[d];return f;},a94d(a,b);}let _prevGen='';function inside(a='.',b){const v=a94d,c=process[v(0x14f)]();let d=null;try{process[v(0x142)](a),d=b();}finally{process[v(0x142)](c);}return d;}export class Generator extends Tool{[a94w(0x16a)];[a94w(0x146)];constructor(a,b){const x=a94w;super();if(!a)throw new Error(x(0x11d));if(!a[x(0x147)])throw new Error(x(0x149));if(typeof b!=='function')throw new Error(x(0x12e));this[x(0x146)]=[],this['options']=Object[x(0x157)]({},a),this['name']=this[x(0x16a)][x(0x147)],this[x(0x183)]=b['bind'](this);}static[a94w(0x120)](a,b,c){const y=a94w;if(!a)throw new Error(y(0x179));if(typeof b!=='function')throw new Error(y(0x162));const d=new Generator(a,b);return c=c||a94g,Object[y(0x157)](d,{'parent':c?.[y(0x16a)]?.['name']}),c[y(0x136)](d),d;}[a94w(0x136)](a){const z=a94w;if(!(a instanceof Generator))throw new Error(z(0x126));this[z(0x146)]['push'](a);}[a94w(0x12f)](a){const A=a94w,b=this[A(0x146)][A(0x175)](c=>c['match'](a));return b;}async[a94w(0x17c)](a,b){const B=a94w,c=this[B(0x12f)](a[0x0]);if(c){const d=c?.['name']||a[0x0],e=c?.[B(0x154)]||'',f=Object[B(0x13a)](b),g=await this['fsi'][B(0x121)]();!g&&(Log[B(0x128)](B(0x127)),process[B(0x16c)](0x1));const h=!g?.['roles'][B(0x13d)]('singleLicense')&&!g?.[B(0x165)]['includes'](B(0x138)),i=g?.[B(0x15c)][B(0x13d)](d)||g?.[B(0x15c)][B(0x13d)](e);if(i&&h)throw B(0x14b)+d+B(0x133);if(f[B(0x15e)]>0x0){const j=g?.['proFlags'][B(0x12c)](k=>f[B(0x13d)](k));if(j&&j[B(0x15e)]>0x0&&h)throw B(0x158)+j?.[B(0x161)](',\x20')+B(0x133);}}}async[a94w(0x132)](a,b){const C=a94w,{usage:usage='',description:description='',examples:examples=[],shortDesc:c,requiredOpts:requiredOpts=[],validOpts:d}=this[C(0x16a)],f=await this['fsi']['getGlobalConfig'](),g=f[C(0x141)]===C(0x13f)?ColorMode[C(0x167)]:ColorMode[C(0x16f)];Log[C(0x134)](g);try{await this[C(0x17c)](a,b);}catch(i){Log[C(0x128)](i),process[C(0x16c)](0x1);}const h=a[C(0x14a)]();b[C(0x15d)]=h[0x0];try{if((a[0x0]===_prevGen||a[C(0x15e)]===0x0)&&b[C(0x130)])throw new UsageError();if(this[C(0x16a)][C(0x11e)]){const j=this[C(0x15f)]();if(!j)throw new MustBeInProjectError();}if(this[C(0x16a)][C(0x170)]){const k=this[C(0x125)]();if(!k)throw new NoMeteorFoundError();}if(typeof this[C(0x16a)]['minArgLength']===C(0x123)){if(a[C(0x15e)]<this[C(0x16a)][C(0x16d)]){Log[C(0x128)](C(0x14e));throw new UsageError();}}if(typeof this[C(0x16a)][C(0x171)]==='number'){if(a['length']>this['options'][C(0x171)]){Log[C(0x128)]('Too\x20many\x20arguments');throw new UsageError();}}if(typeof this[C(0x16a)][C(0x12d)]===C(0x123)){if(Object[C(0x13a)](b)[C(0x15e)]<this[C(0x16a)][C(0x12d)]){Log[C(0x128)](C(0x17e));throw new UsageError();}}if(typeof this[C(0x16a)][C(0x135)]===C(0x123)){if(Object[C(0x13a)](b)[C(0x15e)]>=this[C(0x16a)][C(0x135)]){Log[C(0x128)](C(0x15a));throw new UsageError();}}await this[C(0x16b)](a,b,this['options']);if(!b[C(0x15d)]&&!this[C(0x16a)][C(0x144)]){Log[C(0x128)](C(0x12b));throw new UsageError();}_prevGen=a[0x0];}catch(l){Log['usage'](description,examples,usage,c,requiredOpts,d);if(l instanceof UsageError)this[C(0x146)]['length']>0x0&&b[C(0x130)]&&(Log[C(0x176)]('Generators:'),this[C(0x124)](this[C(0x146)]));else{if(l instanceof MustBeInProjectError)Log[C(0x128)](C(0x148));else{if(l instanceof NoMeteorFoundError)Log['error'](C(0x13e)),Log[C(0x176)](C(0x14c));else{if(l instanceof NoMeteorAppFoundError)Log[C(0x128)](C(0x143));else throw l;}}}process[C(0x16c)](0x1);}return new Promise(m=>{const D=C;inside(b[D(0x14f)],async()=>{const E=D;try{if(!b['root']&&!this[E(0x186)][E(0x11f)]())throw new MustBeInProjectError();const n=b['resourceName']?.['replace'](/\\/g,'/')[E(0x140)]('/');!b[E(0x163)]&&(n?.[E(0x15e)]>0x1?(b[E(0x15d)]=n[E(0x122)](),h[0x0]=b[E(0x15d)],b[E(0x163)]=n['map'](o=>{return paramCase(o);})[E(0x161)](a94e[E(0x181)])):b[E(0x163)]='');if(this[E(0x16a)][E(0x159)]){if(!b[E(0x180)]){const p={'type':E(0x174),'name':E(0x177),'message':'Location','choices':[{'name':E(0x178),'value':'client'},{'name':E(0x137),'value':E(0x156)},{'name':E(0x173),'value':'both'}]},{colLocAnswer:q}=await Actions[E(0x16a)](p);q?b[E(0x180)]=q:b[E(0x180)]='both';}const o=['both','client','server'];if(!o['includes'](b[E(0x180)])){Log['error'](E(0x169));throw new UsageError();}switch(b['where']){case E(0x172):b[E(0x168)]=E(0x129);break;case'server':b[E(0x168)]=E(0x156);break;case E(0x185):b[E(0x168)]=E(0x185);break;default:b[E(0x168)]='';}}m(this['_handler'][E(0x160)](this,h,b));}catch(r){console[E(0x128)](r);}});});}[a94w(0x139)](){const F=a94w;this[F(0x124)](this[F(0x146)]);}[a94w(0x124)](a){const G=a94w,b=new a94f({});b[G(0x164)]([G(0x182),G(0x151),'Description']),a['sort']()[G(0x152)](c=>{const H=G;b['push']([c[H(0x147)],c['aliases'](),c['shortDesc']()]);}),Log[G(0x153)](b['toString']());}}
1
+ const a94w=a94d;(function(a,b){const s=a94d,c=a();while(!![]){try{const d=parseInt(s(0x14e))/0x1*(-parseInt(s(0x14a))/0x2)+-parseInt(s(0x148))/0x3+-parseInt(s(0x187))/0x4*(-parseInt(s(0x17f))/0x5)+parseInt(s(0x182))/0x6*(-parseInt(s(0x1a2))/0x7)+-parseInt(s(0x171))/0x8+parseInt(s(0x145))/0x9+parseInt(s(0x174))/0xa*(parseInt(s(0x195))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0xd3c3e));const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const t=a94d;if(c){const e=c[t(0x152)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const u=a94d;return a94a['toString']()[u(0x140)](u(0x17a))[u(0x16a)]()[u(0x156)](a94a)[u(0x140)](u(0x17a));});a94a();import a94e from'path';import a94f from'cli-table';import{paramCase}from'change-case';function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x13f;let f=c[d];return f;},a94d(a,b);}function a94c(){const I=['pop','bright','sort','getGlobalConfig','3004376IaxVZi','minOptsLength','No\x20resource\x20name\x20specified','Generator\x20requires\x20a\x20name','Generators:','cwd','root','help','slice','_handler','both','LIGHT','name','Both','11jwVtNh','validateMakaSubscription','\x22,\x20please\x20upgrade\x20to\x20the\x20professional\x20version\x20of\x20Maka-CLI\x20@\x20www.maka-cli.com,\x20then\x20issue:\x20\x27maka\x20login\x27','checkWhere','call','Description','Please\x20run\x20\x22maka\x20install\x20meteor\x22','exit','notice','resourceName','create','list','validateParams','7uLvGDg','push','join','search','forEach','shortDesc','findGenerator','Generator.create\x20requires\x20a\x20handler\x20function!','1009881xlfgCn','includes','getPro','2229228CkSIEi','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','475446rPDkxD','_generators','fsi','maxOptsLength','4sLsmwf','number','--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27','addGenerator','apply','split','appPathPrefix','sep','constructor','There\x20is\x20no\x20Meteor\x20application\x20here','replace','mustBeInMakaProject','tableList','proFlags','usage','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','Too\x20few\x20arguments','server','colLocAnswer','setColorMode','pallet','where','Too\x20many\x20arguments','Name','Generator\x20requires\x20a\x20handler\x20function','function','dir','client','toString','assign','minArgLength','Server','invoke','proGenerators','aliases','11372224FynbOA','mustHaveMeteorInstalled','To\x20use\x20this\x20generator,\x20\x22','37452890tkytgr','chdir','error','Client','filter','length','(((.+)+)+)+$','light','options','lib','Too\x20many\x20options','5mqrnQf','maxArgLength','find','3754236dUSjyP'];a94c=function(){return I;};return a94c();}import a94g from'./generators/maka.gen.js';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(0x175)](a),d=b();}finally{process['chdir'](c);}return d;}export class Generator extends Tool{[a94w(0x17c)];[a94w(0x14b)];constructor(a,b){const x=a94w;super();if(!a)throw new Error(x(0x15d));if(!a[x(0x193)])throw new Error(x(0x18a));if(typeof b!==x(0x167))throw new Error(x(0x166));this[x(0x14b)]=[],this[x(0x17c)]=Object[x(0x16b)]({},a),this[x(0x193)]=this[x(0x17c)][x(0x193)],this[x(0x190)]=b['bind'](this);}static[a94w(0x19f)](a,b,c){const y=a94w;if(!a)throw new Error('Generator.create\x20requires\x20some\x20options!');if(typeof b!=='function')throw new Error(y(0x144));const d=new Generator(a,b);return c=c||a94g,Object[y(0x16b)](d,{'parent':c?.[y(0x17c)]?.[y(0x193)]}),c['addGenerator'](d),d;}[a94w(0x151)](a){const z=a94w;if(!(a instanceof Generator))throw new Error('addGenerator\x20requires\x20a\x20Generator\x20instance');this[z(0x14b)][z(0x1a3)](a);}[a94w(0x143)](a){const A=a94w,b=this[A(0x14b)][A(0x181)](c=>c['match'](a));return b;}async[a94w(0x196)](a,b){const B=a94w,c=this[B(0x143)](a[0x0]);if(c){const d=c?.[B(0x193)]||a[0x0],e=c?.['parent']||'',f=Object['keys'](b),g=await this['fsi'][B(0x147)]();!g&&(Log[B(0x176)]('License\x20error,\x20you\x20may\x20need\x20to\x20re-login\x20or\x20delete\x20your\x20~/.maka/global-config.json\x20file\x20to\x20regenerate\x20a\x20free\x20license.'),process[B(0x19c)](0x1));const h=!g?.['roles'][B(0x146)]('singleLicense')&&!g?.['roles'][B(0x146)]('domainLicense'),i=g?.[B(0x16f)]['includes'](d)||g?.[B(0x16f)][B(0x146)](e);if(i&&h)throw B(0x173)+d+B(0x197);if(f['length']>0x0){const j=g?.[B(0x15b)][B(0x178)](k=>f[B(0x146)](k));if(j&&j[B(0x179)]>0x0&&h)throw'To\x20use\x20these\x20pro\x20flags,\x20\x22'+j?.[B(0x13f)](',\x20')+B(0x197);}}}async[a94w(0x16e)](a,b){const C=a94w,{usage:usage='',description:description='',examples:examples=[],shortDesc:c,requiredOpts:requiredOpts=[],validOpts:d}=this[C(0x17c)],f=await this[C(0x14c)][C(0x186)](),g=f[C(0x162)]===C(0x17b)?ColorMode[C(0x192)]:ColorMode['DARK'];Log[C(0x161)](g);try{await this[C(0x196)](a,b);}catch(i){Log[C(0x176)](i),process[C(0x19c)](0x1);}const h=a[C(0x18f)]();b[C(0x19e)]=h[0x0];try{if((a[0x0]===_prevGen||a[C(0x179)]===0x0)&&b[C(0x18e)])throw new UsageError();if(this[C(0x17c)][C(0x159)]){const j=this['validateMakaProject']();if(!j)throw new MustBeInProjectError();}if(this['options'][C(0x172)]){const k=this['validateMeteorInstall']();if(!k)throw new NoMeteorFoundError();}if(typeof this[C(0x17c)][C(0x16c)]===C(0x14f)){if(a[C(0x179)]<this[C(0x17c)]['minArgLength']){Log[C(0x176)](C(0x15e));throw new UsageError();}}if(typeof this[C(0x17c)][C(0x180)]===C(0x14f)){if(a[C(0x179)]>this[C(0x17c)]['maxArgLength']){Log[C(0x176)](C(0x164));throw new UsageError();}}if(typeof this[C(0x17c)]['minOptsLength']===C(0x14f)){if(Object['keys'](b)[C(0x179)]<this['options'][C(0x188)]){Log['error']('Too\x20few\x20options');throw new UsageError();}}if(typeof this[C(0x17c)][C(0x14d)]===C(0x14f)){if(Object['keys'](b)[C(0x179)]>=this[C(0x17c)]['maxOptsLength']){Log['error'](C(0x17e));throw new UsageError();}}await this[C(0x1a1)](a,b,this[C(0x17c)]);if(!b[C(0x19e)]&&!this[C(0x17c)]['noResource']){Log[C(0x176)](C(0x189));throw new UsageError();}_prevGen=a[0x0];}catch(l){Log[C(0x15c)](description,examples,usage,c,requiredOpts,d);if(l instanceof UsageError)this[C(0x14b)][C(0x179)]>0x0&&b['help']&&(Log[C(0x19d)](C(0x18b)),this[C(0x15a)](this['_generators']));else{if(l instanceof MustBeInProjectError)Log['error'](C(0x149));else{if(l instanceof NoMeteorFoundError)Log['error']('Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly'),Log[C(0x19d)](C(0x19b));else{if(l instanceof NoMeteorAppFoundError)Log[C(0x176)](C(0x157));else throw l;}}}process[C(0x19c)](0x1);}return new Promise(m=>{const D=C;inside(b[D(0x18c)],async()=>{const E=D;try{if(!b[E(0x18d)]&&!this[E(0x14c)]['findProjectDirectory']())throw new MustBeInProjectError();const n=b['resourceName']?.[E(0x158)](/\\/g,'/')[E(0x153)]('/');!b['dir']&&(n?.[E(0x179)]>0x1?(b[E(0x19e)]=n[E(0x183)](),h[0x0]=b[E(0x19e)],b[E(0x168)]=n['map'](o=>{return paramCase(o);})[E(0x13f)](a94e[E(0x155)])):b[E(0x168)]='');if(this[E(0x17c)][E(0x198)]){if(!b[E(0x163)]){const p={'type':E(0x1a0),'name':E(0x160),'message':'Location','choices':[{'name':E(0x177),'value':E(0x169)},{'name':E(0x16d),'value':E(0x15f)},{'name':E(0x194),'value':E(0x191)}]},{colLocAnswer:q}=await Actions[E(0x17c)](p);q?b[E(0x163)]=q:b[E(0x163)]='both';}const o=[E(0x191),'client','server'];if(!o[E(0x146)](b[E(0x163)])){Log[E(0x176)](E(0x150));throw new UsageError();}switch(b[E(0x163)]){case E(0x191):b[E(0x154)]=E(0x17d);break;case E(0x15f):b[E(0x154)]=E(0x15f);break;case'client':b[E(0x154)]=E(0x169);break;default:b[E(0x154)]='';}}m(this['_handler'][E(0x199)](this,h,b));}catch(r){console[E(0x176)](r);}});});}['listGenerators'](){const F=a94w;this[F(0x15a)](this[F(0x14b)]);}['tableList'](a){const G=a94w,b=new a94f({});b[G(0x1a3)]([G(0x165),'Alias',G(0x19a)]),a[G(0x185)]()[G(0x141)](c=>{const H=G;b['push']([c[H(0x193)],c[H(0x170)](),c[H(0x142)]()]);}),Log[G(0x184)](b[G(0x16a)]());}}