@maka/maka-cli 4.6.17 → 4.6.19

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 (139) hide show
  1. package/bundle/obf/package.json +31 -31
  2. package/bundle/obf/src/command.js +1 -1
  3. package/bundle/obf/src/commands/_index.js +1 -1
  4. package/bundle/obf/src/commands/ai.js +1 -1
  5. package/bundle/obf/src/commands/aws/_index.js +1 -1
  6. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  7. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  8. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  9. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/build/_index.js +1 -1
  20. package/bundle/obf/src/commands/build/build.js +1 -1
  21. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  22. package/bundle/obf/src/commands/create.js +1 -1
  23. package/bundle/obf/src/commands/debug.js +1 -1
  24. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  25. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  26. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  27. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  28. package/bundle/obf/src/commands/game/_index.js +1 -1
  29. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  30. package/bundle/obf/src/commands/game/play.command.js +1 -1
  31. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  33. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  66. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  67. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  68. package/bundle/obf/src/commands/generate.js +1 -1
  69. package/bundle/obf/src/commands/get/_index.js +1 -1
  70. package/bundle/obf/src/commands/get/get.command.js +1 -1
  71. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  74. package/bundle/obf/src/commands/help.js +1 -1
  75. package/bundle/obf/src/commands/install.js +1 -1
  76. package/bundle/obf/src/commands/jsdoc.js +1 -1
  77. package/bundle/obf/src/commands/lint.js +1 -1
  78. package/bundle/obf/src/commands/login.js +1 -1
  79. package/bundle/obf/src/commands/logout.js +1 -1
  80. package/bundle/obf/src/commands/logs.js +1 -1
  81. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  82. package/bundle/obf/src/commands/murder.js +1 -1
  83. package/bundle/obf/src/commands/proxy.js +1 -1
  84. package/bundle/obf/src/commands/reconfig.js +1 -1
  85. package/bundle/obf/src/commands/run/_index.js +1 -1
  86. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  87. package/bundle/obf/src/commands/run/run.command.js +1 -1
  88. package/bundle/obf/src/commands/set/_index.js +1 -1
  89. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  90. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  91. package/bundle/obf/src/commands/set/set.command.js +1 -1
  92. package/bundle/obf/src/commands/ssh.js +1 -1
  93. package/bundle/obf/src/commands/ssl.js +1 -1
  94. package/bundle/obf/src/commands/test.js +1 -1
  95. package/bundle/obf/src/commands/version.js +1 -1
  96. package/bundle/obf/src/error.js +1 -1
  97. package/bundle/obf/src/exec.js +1 -1
  98. package/bundle/obf/src/generator.js +1 -1
  99. package/bundle/obf/src/generators/_index.js +1 -1
  100. package/bundle/obf/src/generators/api.js +1 -1
  101. package/bundle/obf/src/generators/collection.js +1 -1
  102. package/bundle/obf/src/generators/component.js +1 -1
  103. package/bundle/obf/src/generators/config.js +1 -1
  104. package/bundle/obf/src/generators/dbc.js +1 -1
  105. package/bundle/obf/src/generators/dockerfile.js +1 -1
  106. package/bundle/obf/src/generators/hook.js +1 -1
  107. package/bundle/obf/src/generators/kit.js +1 -1
  108. package/bundle/obf/src/generators/layout.js +1 -1
  109. package/bundle/obf/src/generators/maka.gen.js +1 -1
  110. package/bundle/obf/src/generators/methods.js +1 -1
  111. package/bundle/obf/src/generators/package.js +1 -1
  112. package/bundle/obf/src/generators/page.js +1 -1
  113. package/bundle/obf/src/generators/publish.js +1 -1
  114. package/bundle/obf/src/generators/route.js +1 -1
  115. package/bundle/obf/src/generators/service.js +1 -1
  116. package/bundle/obf/src/generators/services/_index.js +1 -1
  117. package/bundle/obf/src/generators/services/openssl.js +1 -1
  118. package/bundle/obf/src/generators/services/translation.js +1 -1
  119. package/bundle/obf/src/maka.js +1 -1
  120. package/bundle/obf/src/tool.js +1 -1
  121. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  122. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  123. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  124. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  125. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  126. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  127. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  128. package/bundle/obf/src/tools/https/https.class.js +1 -1
  129. package/bundle/obf/src/tools/https/https.interface.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/progress/progress.class.js +1 -1
  134. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  135. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  137. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  138. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  139. package/package.json +31 -31
@@ -1 +1 @@
1
- const a74z=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=parseInt(v(0xa4))/0x1*(-parseInt(v(0xae))/0x2)+-parseInt(v(0xe0))/0x3*(-parseInt(v(0xb7))/0x4)+-parseInt(v(0x98))/0x5+-parseInt(v(0xb8))/0x6*(-parseInt(v(0xc2))/0x7)+-parseInt(v(0xea))/0x8+parseInt(v(0xdc))/0x9+parseInt(v(0xda))/0xa*(parseInt(v(0xb1))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x2e8c6));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a74d;if(c){const e=c[w(0xb2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a[x(0xd1)]()['search'](x(0xbb))[x(0xd1)]()[x(0x9f)](a74a)['search'](x(0xbb));});a74a();import a74e from'os';function a74c(){const C=['install','.meteor','constructor','platform','/.zshrc','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','2326UbgiBJ','maka\x20install\x20meteor\x20--version\x202.13.3','/.bash_profile','fileContainsString','packages','\x20is\x20not\x20available.','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Aborting\x20install','zsh','SHELL','2HJPYZF','replace','linux','121zPOKpx','apply','Using\x20CA\x20Cert\x20','Network\x20error,\x20please\x20try\x20again.','checkAvailability','info','716yYuiXO','817158lMzfrt','grep','getGlobalConfig','(((.+)+)+)+$','injectAtEndOfFile','version','-rf','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','meteor','success','7wHYifq','setPath','arm64','&release=','exit','Path\x20already\x20set\x20in\x20/etc/profile','Aborted','osx','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','fsi','Preparing\x20to\x20install\x20Meteor\x20','error','cert','Setting\x20Path\x20in\x20','meteor.tar.gz','toString','windows','Cleaning\x20up','Path\x20already\x20set\x20in\x20','package-metadata','string',':$PATH','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','Meteor\x20version\x20','285490fYuFJf','win32','1431549mInrEy','maka\x20i','/etc/profile','force','699rJDMTQ','getuid','downloadFile','/.bashrc','x86_64','cacert','env','notice','keepInstallFile','get','2333584OitYMy','join','data','Setting\x20Path\x20in\x20\x20','https://packages.meteor.com/bootstrap-link?arch=os.','maka\x20install\x20meteor\x20--force','extractTarGz','confirm','warn','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','Proceed\x20anyway?','withSpinner','831570eIaCtO','https://install.meteor.com','\x20installed.\x0a','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','isFile'];a74c=function(){return C;};return a74c();}import a74f from'path';import a74g from'fs';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x8f;let f=c[d];return f;},a74d(a,b);}import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a74e['homedir']();function isRoot(){const y=a74d;return process[y(0xe1)]&&process[y(0xe1)]()===0x0;}Command['create']({'name':a74z(0x9d),'aliases':['i'],'validOpts':[a74z(0xdf),a74z(0xbd),a74z(0xe5),'setPath',a74z(0xe8)],'usage':'maka\x20install','shortDesc':a74z(0xa3),'description':a74z(0xbf),'examples':['maka\x20install\x20meteor',a74z(0x90),a74z(0xa5),a74z(0xdd)]},async function(a,b){const A=a74z;try{let c='';if(b['cacert']){if(this[A(0xcb)][A(0x9c)](b[A(0xe5)]))Log['notice'](A(0xb3)+b[A(0xe5)]),c=b['cacert'];else throw A(0xaa)+c;}const d=await this[A(0xcb)][A(0xba)]();if(d['cert']){if(this[A(0xcb)][A(0x9c)](d[A(0xce)]))c=d[A(0xce)];else throw'CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+c;}let f=![];if(b['f']||b[A(0xdf)])f=!![];else{const p=isRoot();p?(Log[A(0x93)](A(0xca)),f=await Actions['confirm'](A(0x96),![])):f=!![];}if(!f)throw A(0xc8);const g=process[A(0xa0)]===A(0xdb),h=await HTTPS[A(0xe9)]({'url':A(0x99),'cert':c}),i=await this[A(0xcb)][A(0xb9)](h[A(0xec)],'RELEASE=');if(i['length']===0x0)throw A(0xb4);process['env']['NO_NODE_WARNINGS']='1',Log[A(0xe7)](A(0xcc)+i[0x0][A(0xaf)](/[^0-9.]/gi,'')[A(0xaf)](/\r?\n|\r/,''));let j=i[0x0]['replace'](/[^0-9.]/gi,'')[A(0xaf)](/\r?\n|\r/,'');(typeof b['v']==='string'||typeof b[A(0xbd)]===A(0xd6))&&(j=b['v']||b['version']);const k={'win32':A(0xd2),'darwin':A(0xc9),'linux':A(0xb0)},l=A(0x8f)+k[a74e[A(0xa0)]()]+'.'+(a74e['arch']()===A(0xc4)?'arm64':A(0xe4))+A(0xc5)+j,m=await HTTPS[A(0xb5)]({'url':l,'cert':c});!m&&(Log[A(0xcd)](A(0xd9)+j+A(0xa9)),process[A(0xc6)](0x0));const n=a74f['join'](homeDir,A(0x9e)),o=async()=>{const B=A,q='export\x20PATH='+n+B(0xd7);if(process[B(0xe6)][B(0xad)]&&process[B(0xe6)]['SHELL']['includes'](B(0xac))){const r=await this[B(0xcb)]['fileContainsString'](homeDir+B(0xa1),q);if(!r)Log[B(0xb6)](B(0xed)+homeDir+'/.zshrc'),this[B(0xcb)][B(0xbc)]({'filePath':homeDir+B(0xa1),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xc3)]&&Log[B(0xb6)](B(0xd4)+homeDir+B(0xa1));}else{const s=await this[B(0xcb)][B(0xa7)](homeDir+B(0xe3),q);if(!s)Log['info'](B(0xcf)+homeDir+B(0xe3)),this[B(0xcb)][B(0xbc)]({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xc3)]&&Log[B(0xb6)](B(0xd4)+homeDir+B(0xe3));const t=await this[B(0xcb)][B(0xa7)](homeDir+B(0xa6),q);if(!t)Log[B(0xb6)](B(0xcf)+homeDir+B(0xa6)),this[B(0xcb)][B(0xbc)]({'filePath':homeDir+B(0xa6),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xc3)]&&Log[B(0xb6)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0xa6));if(isRoot()){const u=await this[B(0xcb)][B(0xa7)](B(0xde),q);if(!u)Log['info']('Setting\x20Path\x20in\x20/etc/profile'),this[B(0xcb)]['injectAtEndOfFile']({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b['setPath']&&Log['info'](B(0xc7));}}};b['setPath']&&(await o(),process['exit'](0x0));if(g)Log[A(0xcd)](A(0xa2)),process[A(0xc6)](0x0);else{if(a74g['existsSync'](n)){let q=![];b['f']||b[A(0xdf)]?q=!![]:q=await Actions[A(0x92)](A(0x95),![]),q?(await SpawnAsync[A(0x97)]('rm',[A(0xbe),a74f[A(0xeb)](n,A(0xa8))],{'message':A(0x9b)}),await SpawnAsync['withSpinner']('rm',[A(0xbe),a74f[A(0xeb)](n,A(0xd5))],{'message':A(0x94)}),await SpawnAsync[A(0x97)]('rm',[A(0xbe),a74f[A(0xeb)](n,A(0xc0))],{'message':A(0xd8)})):(Log['info'](A(0xab)),process['exit'](0x0));}try{await HTTPS[A(0xe2)]({'url':l,'destPath':a74f[A(0xeb)](homeDir,A(0xd0)),'cert':c});try{const r=a74f[A(0xeb)](homeDir,A(0xd0));await this[A(0xcb)][A(0x91)](r,homeDir);}catch(s){Log[A(0xcd)]('Error\x20extracting\x20meteor.tar.gz\x20file');}!b[A(0xe8)]&&await SpawnAsync[A(0x97)]('rm',[A(0xbe),a74f['join'](homeDir,A(0xd0))],{'message':A(0xd3)}),await o();}catch(t){console['error'](t),process['exit'](0x0);}Log[A(0xc1)](A(0xd9)+j+A(0x9a));}}catch(u){console[A(0xcd)](u),process[A(0xc6)](0x0);}});
1
+ const a74z=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=-parseInt(v(0x18f))/0x1+parseInt(v(0x1bc))/0x2+-parseInt(v(0x1e0))/0x3*(parseInt(v(0x191))/0x4)+-parseInt(v(0x1ee))/0x5+-parseInt(v(0x1c9))/0x6*(-parseInt(v(0x1c1))/0x7)+parseInt(v(0x1ad))/0x8+parseInt(v(0x1e1))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xc6613));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a74d;if(c){const e=c[w(0x1c8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a[x(0x1b1)]()[x(0x1c3)](x(0x1c0))[x(0x1b1)]()[x(0x19b)](a74a)[x(0x1c3)](x(0x1c0));});a74a();import a74e from'os';import a74f from'path';import a74g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a74c(){const C=['toString','RELEASE=','package-metadata','notice','success','maka\x20install\x20meteor\x20--version\x202.13.3','Setting\x20Path\x20in\x20/etc/profile','info','replace','-rf','cacert','1419524ddeKou','string','Network\x20error,\x20please\x20try\x20again.','packages','(((.+)+)+)+$','2352MPXaty','fsi','search','/etc/profile','arm64','extractTarGz','error','apply','7206rctQno','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','&release=','existsSync','Setting\x20Path\x20in\x20','osx','Preparing\x20to\x20install\x20Meteor\x20','version','Setting\x20Path\x20in\x20\x20','Path\x20already\x20set\x20in\x20','getGlobalConfig','join','isFile','https://packages.meteor.com/bootstrap-link?arch=os.','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','create','confirm','.meteor','withSpinner','setPath','getuid','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Cleaning\x20up','952635QXJwPf','10211040TqFbGZ','/.bash_profile','exit','NO_NODE_WARNINGS','Path\x20already\x20set\x20in\x20/etc/profile','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','meteor','fileContainsString','get','/.zshrc','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','arch','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','813095QpbukW','includes',':$PATH','803685ZEKCoi','export\x20PATH=','12DXyMIg','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','Meteor\x20version\x20','keepInstallFile','meteor.tar.gz','\x20installed.\x0a','platform','checkAvailability','downloadFile','warn','constructor','x86_64','maka\x20i','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','grep','/.bashrc','\x20is\x20not\x20available.','force','win32','Using\x20CA\x20Cert\x20','install','data','SHELL','maka\x20install\x20meteor\x20--force','https://install.meteor.com','maka\x20install','injectAtEndOfFile','Proceed\x20anyway?','3869152NZcLTt','length','windows','env'];a74c=function(){return C;};return a74c();}function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x18f;let f=c[d];return f;},a74d(a,b);}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a74e['homedir']();function isRoot(){const y=a74d;return process[y(0x1dd)]&&process[y(0x1dd)]()===0x0;}Command[a74z(0x1d8)]({'name':a74z(0x1a5),'aliases':['i'],'validOpts':[a74z(0x1a2),a74z(0x1d0),'cacert',a74z(0x1dc),'keepInstallFile'],'usage':a74z(0x1aa),'shortDesc':'Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','description':a74z(0x1ed),'examples':['maka\x20install\x20meteor',a74z(0x1a8),a74z(0x1b6),a74z(0x19d)]},async function(a,b){const A=a74z;try{let c='';if(b[A(0x1bb)]){if(this['fsi'][A(0x1d5)](b[A(0x1bb)]))Log['notice'](A(0x1a4)+b[A(0x1bb)]),c=b[A(0x1bb)];else throw A(0x1de)+c;}const d=await this[A(0x1c2)][A(0x1d3)]();if(d['cert']){if(this[A(0x1c2)]['isFile'](d['cert']))c=d['cert'];else throw A(0x1ca)+c;}let f=![];if(b['f']||b[A(0x1a2)])f=!![];else{const p=isRoot();p?(Log[A(0x19a)](A(0x1e6)),f=await Actions[A(0x1d9)](A(0x1ac),![])):f=!![];}if(!f)throw'Aborted';const g=process['platform']===A(0x1a3),h=await HTTPS[A(0x1e9)]({'url':A(0x1a9),'cert':c}),i=await this[A(0x1c2)][A(0x19f)](h[A(0x1a6)],A(0x1b2));if(i[A(0x1ae)]===0x0)throw A(0x1be);process['env'][A(0x1e4)]='1',Log[A(0x1b4)](A(0x1cf)+i[0x0][A(0x1b9)](/[^0-9.]/gi,'')[A(0x1b9)](/\r?\n|\r/,''));let j=i[0x0]['replace'](/[^0-9.]/gi,'')[A(0x1b9)](/\r?\n|\r/,'');(typeof b['v']===A(0x1bd)||typeof b['version']===A(0x1bd))&&(j=b['v']||b[A(0x1d0)]);const k={'win32':A(0x1af),'darwin':A(0x1ce),'linux':'linux'},l=A(0x1d6)+k[a74e[A(0x197)]()]+'.'+(a74e[A(0x1ec)]()===A(0x1c5)?A(0x1c5):A(0x19c))+A(0x1cb)+j,m=await HTTPS[A(0x198)]({'url':l,'cert':c});!m&&(Log[A(0x1c7)](A(0x193)+j+A(0x1a1)),process[A(0x1e3)](0x0));const n=a74f[A(0x1d4)](homeDir,A(0x1da)),o=async()=>{const B=A,q=B(0x190)+n+B(0x1f0);if(process[B(0x1b0)][B(0x1a7)]&&process[B(0x1b0)][B(0x1a7)][B(0x1ef)]('zsh')){const r=await this[B(0x1c2)][B(0x1e8)](homeDir+'/.zshrc',q);if(!r)Log['info'](B(0x1d1)+homeDir+B(0x1ea)),this['fsi'][B(0x1ab)]({'filePath':homeDir+B(0x1ea),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x1dc)]&&Log['info'](B(0x1d2)+homeDir+B(0x1ea));}else{const s=await this[B(0x1c2)][B(0x1e8)](homeDir+B(0x1a0),q);if(!s)Log[B(0x1b8)](B(0x1cd)+homeDir+B(0x1a0)),this['fsi'][B(0x1ab)]({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x1dc)]&&Log[B(0x1b8)](B(0x1d2)+homeDir+B(0x1a0));const t=await this[B(0x1c2)][B(0x1e8)](homeDir+B(0x1e2),q);if(!t)Log[B(0x1b8)](B(0x1cd)+homeDir+B(0x1e2)),this[B(0x1c2)]['injectAtEndOfFile']({'filePath':homeDir+B(0x1e2),'content':q+'\x0a','opts':{'verbose':!![]}});else b['setPath']&&Log[B(0x1b8)]('Path\x20already\x20set\x20in\x20'+homeDir+'/.bash_profile');if(isRoot()){const u=await this['fsi'][B(0x1e8)](B(0x1c4),q);if(!u)Log[B(0x1b8)](B(0x1b7)),this['fsi'][B(0x1ab)]({'filePath':B(0x1c4),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x1dc)]&&Log[B(0x1b8)](B(0x1e5));}}};b[A(0x1dc)]&&(await o(),process['exit'](0x0));if(g)Log[A(0x1c7)]('Windows\x20is\x20not\x20supported\x20at\x20this\x20time.'),process[A(0x1e3)](0x0);else{if(a74g[A(0x1cc)](n)){let q=![];b['f']||b[A(0x1a2)]?q=!![]:q=await Actions[A(0x1d9)](A(0x192),![]),q?(await SpawnAsync[A(0x1db)]('rm',[A(0x1ba),a74f[A(0x1d4)](n,A(0x1bf))],{'message':A(0x1d7)}),await SpawnAsync[A(0x1db)]('rm',['-rf',a74f[A(0x1d4)](n,A(0x1b3))],{'message':A(0x19e)}),await SpawnAsync[A(0x1db)]('rm',[A(0x1ba),a74f['join'](n,A(0x1e7))],{'message':A(0x1eb)})):(Log['info']('Aborting\x20install'),process['exit'](0x0));}try{await HTTPS[A(0x199)]({'url':l,'destPath':a74f[A(0x1d4)](homeDir,A(0x195)),'cert':c});try{const r=a74f['join'](homeDir,A(0x195));await this[A(0x1c2)][A(0x1c6)](r,homeDir);}catch(s){Log[A(0x1c7)]('Error\x20extracting\x20meteor.tar.gz\x20file');}!b[A(0x194)]&&await SpawnAsync[A(0x1db)]('rm',[A(0x1ba),a74f['join'](homeDir,A(0x195))],{'message':A(0x1df)}),await o();}catch(t){console[A(0x1c7)](t),process[A(0x1e3)](0x0);}Log[A(0x1b5)](A(0x193)+j+A(0x196));}}catch(u){console['error'](u),process[A(0x1e3)](0x0);}});
@@ -1 +1 @@
1
- const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=-parseInt(j(0x1ef))/0x1*(-parseInt(j(0x1dc))/0x2)+parseInt(j(0x1e9))/0x3*(parseInt(j(0x1d0))/0x4)+parseInt(j(0x1f0))/0x5+parseInt(j(0x1ee))/0x6+parseInt(j(0x1e5))/0x7*(parseInt(j(0x1f4))/0x8)+-parseInt(j(0x1f6))/0x9*(parseInt(j(0x1d6))/0xa)+-parseInt(j(0x1e3))/0xb*(parseInt(j(0x1d3))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x6b10a));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x1da)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a[l(0x1d9)]()[l(0x1ea)]('(((.+)+)+)+$')[l(0x1d9)]()['constructor'](a75a)[l(0x1ea)](l(0x1d5));});a75a();import a75e from'path';import a75f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x1d0;let f=c[d];return f;},a75d(a,b);}function a75c(){const o=['config','1367697VqCuhV','search','.+\x5c.(j|t)s(doc|x)?$','pathFromProject','app/private','1543314zxPwwE','1zdOcSk','3955920SMsgEP','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','docs','jsdoc','8cNGkTK','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','20205yLTSks','writeFileSync','sep','inherit','4DLtKyb','\x20-r\x20app','logError','22488rSpcnn','stringify','(((.+)+)+)+$','2200lZGvrN','isFile','maka\x20jsdoc\x20--init','toString','apply','fsi','432074cmuXEp','closure','logNotice','app/public','create','\x20-c\x20','maka\x20jsdoc','5071YbgKpv','logWithSpinner','532091JXKoKB','join','stop'];a75c=function(){return o;};return a75c();}Command[a75m(0x1e0)]({'name':'jsdoc','usage':a75m(0x1e2),'mustBeInMakaProject':!![],'shortDesc':'Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','examples':[a75m(0x1d8),a75m(0x1e2)],'validOpts':[]},function(){const n=a75m,a=a75e[n(0x1e6)](this[n(0x1db)][n(0x1ec)]({}),n(0x1f2)+a75e[n(0x1f8)]),b=a75e['join'](this[n(0x1db)][n(0x1ec)]({}),n(0x1e8),'jsdoc-config.json'),c=this[n(0x1db)]['pathFromProject']({}),d=n(0x1f3);if(!this[n(0x1d7)](b)){const g={'plugins':['plugins/markdown'],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x1f3),n(0x1dd)]},'source':{'includePattern':n(0x1eb),'excludePattern':n(0x1f1),'exclude':['app/packages','app/node_modules',n(0x1df),n(0x1ed)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a75f[n(0x1f7)](b,JSON[n(0x1d4)](g,null,0x4));}const f=this[n(0x1e4)]('Running\x20'+d);try{const h=d+n(0x1e1)+b+n(0x1d1)+a75e[n(0x1f8)]+'\x20-d\x20'+a;execSync(h,{'cwd':c,'stdio':n(0x1f9)}),this[n(0x1de)]('\x0a[+]\x20Documentation\x20written\x20to\x20'+a);}catch(i){this[n(0x1d2)](i),this[n(0x1d2)](n(0x1f5));}finally{f[n(0x1e7)]();}});
1
+ const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=parseInt(j(0x110))/0x1*(parseInt(j(0x108))/0x2)+parseInt(j(0x129))/0x3*(-parseInt(j(0x111))/0x4)+parseInt(j(0x128))/0x5+parseInt(j(0x125))/0x6+-parseInt(j(0x11d))/0x7+-parseInt(j(0x11c))/0x8+parseInt(j(0x123))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0xa9328));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x124)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a[l(0x122)]()[l(0x10b)](l(0x114))['toString']()[l(0x126)](a75a)[l(0x10b)](l(0x114));});function a75c(){const o=['plugins/markdown','inherit','jsdoc','app/node_modules','toString','6855354Ronvtb','apply','5247276xAAQVi','constructor','maka\x20jsdoc','6616195SEpfzV','3219bkqDwQ','fsi','writeFileSync','\x20-r\x20app','stop','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','.+\x5c.(j|t)s(doc|x)?$','142AsjBGj','join','maka\x20jsdoc\x20--init','search','sep','config','Running\x20','utf-8','1cVJIdj','2432pXBKFT','isFile','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','(((.+)+)+)+$','closure','pathFromProject','logNotice','app/public','stringify','docs','logError','9368168vcXmGA','3101875JMlysp'];a75c=function(){return o;};return a75c();}a75a();import a75e from'path';import a75f from'fs';import{execSync}from'child_process';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x108;let f=c[d];return f;},a75d(a,b);}import{Command}from'../command.js';Command['create']({'name':a75m(0x120),'usage':'maka\x20jsdoc','mustBeInMakaProject':!![],'shortDesc':'Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','examples':[a75m(0x10a),a75m(0x127)],'validOpts':[]},function(){const n=a75m,a=a75e[n(0x109)](this[n(0x12a)][n(0x116)]({}),n(0x11a)+a75e[n(0x10c)]),b=a75e[n(0x109)](this[n(0x12a)][n(0x116)]({}),n(0x10d),'jsdoc-config.json'),c=this[n(0x12a)][n(0x116)]({}),d=n(0x120);if(!this[n(0x112)](b)){const g={'plugins':[n(0x11e)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x120),n(0x115)]},'source':{'includePattern':n(0x12f),'excludePattern':n(0x12e),'exclude':['app/packages',n(0x121),n(0x118),'app/private']},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0x10f)}};a75f[n(0x12b)](b,JSON[n(0x119)](g,null,0x4));}const f=this['logWithSpinner'](n(0x10e)+d);try{const h=d+'\x20-c\x20'+b+n(0x12c)+a75e['sep']+'\x20-d\x20'+a;execSync(h,{'cwd':c,'stdio':n(0x11f)}),this[n(0x117)]('\x0a[+]\x20Documentation\x20written\x20to\x20'+a);}catch(i){this[n(0x11b)](i),this[n(0x11b)](n(0x113));}finally{f[n(0x12d)]();}});
@@ -1 +1 @@
1
- const a76s=a76d;(function(a,b){const p=a76d,c=a();while(!![]){try{const d=parseInt(p(0xf8))/0x1*(-parseInt(p(0xef))/0x2)+-parseInt(p(0xea))/0x3+parseInt(p(0xf7))/0x4*(parseInt(p(0xec))/0x5)+parseInt(p(0x104))/0x6+-parseInt(p(0x105))/0x7*(-parseInt(p(0x101))/0x8)+parseInt(p(0xe9))/0x9*(-parseInt(p(0x106))/0xa)+parseInt(p(0xf6))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x4391d));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a76d;if(c){const e=c[q(0x100)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const r=a76d;return a76a[r(0x102)]()[r(0xee)](r(0x103))[r(0x102)]()[r(0xe2)](a76a)[r(0xee)](r(0x103));});a76a();function a76c(){const u=['loadFormatter','eslint-plugin-react','length','/imports','eslint-plugin-css','constructor','success','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','maka\x20lint\x20--fix','findAppDirectory','bright','eslint/eslintrc.json','9NxmFDV','1284219MNfvAd','maka\x20lint','4535nfKgYV','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','search','2ZyoLhy','join','notice','Lint\x20results\x20for\x20','lint','push','outputFixes','5617227puxxuV','344ejpfZt','382595qqwORE','stylish','fix','eslint','format','.eslintrc.json','fsi','imports','apply','1310952ssrXuF','toString','(((.+)+)+)+$','1252986GnVgOT','14LNmPkY','377950SUQdIv','checkNpmPackage','service'];a76c=function(){return u;};return a76c();}function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0xdd;let f=c[d];return f;},a76d(a,b);}import a76e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';Command['create']({'name':a76s(0xf3),'usage':a76s(0xeb),'maxArgLength':0x1,'validOpts':[a76s(0xfa)],'mustBeInMakaProject':!![],'shortDesc':a76s(0xe4),'description':'\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','examples':[a76s(0xe5)]},async function(a,b){const t=a76s;try{const c=this['fsi'][t(0xe6)](),d=this[t(0xfe)][t(0x107)](t(0xfb)),f=this[t(0xfe)][t(0x107)](t(0xde)),g=this[t(0xfe)][t(0x107)](t(0xe1)),h=[];!d&&h[t(0xf4)](t(0xfb));!f&&h[t(0xf4)](t(0xde));!g&&h[t(0xf4)]('eslint-plugin-css');h[t(0xdf)]>0x0&&await this[t(0xfe)]['installNpmPackage'](h[t(0xf0)]('\x20'),{'dev':!![]});const i=this[t(0xfe)]['isFile'](a76e[t(0xf0)](c,t(0xfd)));if(!i){const n={'noRename':!![]};await this[t(0xfe)]['template']({'srcPath':t(0xe8),'destPath':a76e[t(0xf0)](c,t(0xfd)),'framework':t(0x108),'context':n});}const j=new ESLint(),k=await j['lintFiles']([a76e[t(0xf0)](c,t(0xff),'**')]),l=await j[t(0xdd)](t(0xf9)),m=l[t(0xfc)](k);m[t(0xdf)]>0x0?Log[t(0xe7)](m):Log[t(0xe3)]('All\x20good!\x20:)'),Log['notice'](t(0xf2)+c+t(0xe0)),b[t(0xfa)]?await ESLint[t(0xf5)](k):Log[t(0xf1)](t(0xed));}catch(o){console['error'](o);}});
1
+ const a76r=a76d;(function(a,b){const p=a76d,c=a();while(!![]){try{const d=-parseInt(p(0x1d1))/0x1+-parseInt(p(0x1e2))/0x2+-parseInt(p(0x1e1))/0x3+-parseInt(p(0x1dc))/0x4*(-parseInt(p(0x1f4))/0x5)+parseInt(p(0x1d3))/0x6*(parseInt(p(0x1cf))/0x7)+-parseInt(p(0x1d7))/0x8*(parseInt(p(0x1d6))/0x9)+parseInt(p(0x1de))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0xaa442));function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x1cd;let f=c[d];return f;},a76d(a,b);}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 q=a76d;return a76a['toString']()['search'](q(0x1e6))[q(0x1da)]()[q(0x1ec)](a76a)[q(0x1d4)]('(((.+)+)+)+$');});function a76c(){const t=['isFile','74180LrnPSa','join','service','eslint-plugin-react','format','fix','4380817OUdzMw','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','1008341FDEBAK','bright','6PxDaDc','search','findAppDirectory','10631646eFuptn','8EzELru','eslint-plugin-css','lint','toString','length','72jDamLi','fsi','33271870rNHZVg','loadFormatter','maka\x20lint\x20--fix','591681Degrip','2271588pNfHmO','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','stylish','(((.+)+)+)+$','error','lintFiles','create','notice','eslint','constructor','push','maka\x20lint','checkNpmPackage','Lint\x20results\x20for\x20','imports','outputFixes'];a76c=function(){return t;};return a76c();}a76a();import a76e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';Command[a76r(0x1e9)]({'name':a76r(0x1d9),'usage':a76r(0x1ee),'maxArgLength':0x1,'validOpts':[a76r(0x1ce)],'mustBeInMakaProject':!![],'shortDesc':a76r(0x1e3),'description':a76r(0x1d0),'examples':[a76r(0x1e0)]},async function(a,b){const s=a76r;try{const c=this[s(0x1dd)][s(0x1d5)](),d=this[s(0x1dd)][s(0x1ef)](s(0x1eb)),f=this['fsi'][s(0x1ef)]('eslint-plugin-react'),g=this[s(0x1dd)][s(0x1ef)](s(0x1d8)),h=[];!d&&h[s(0x1ed)](s(0x1eb));!f&&h[s(0x1ed)](s(0x1f7));!g&&h[s(0x1ed)]('eslint-plugin-css');h[s(0x1db)]>0x0&&await this['fsi']['installNpmPackage'](h['join']('\x20'),{'dev':!![]});const i=this[s(0x1dd)][s(0x1f3)](a76e[s(0x1f5)](c,'.eslintrc.json'));if(!i){const n={'noRename':!![]};await this[s(0x1dd)]['template']({'srcPath':'eslint/eslintrc.json','destPath':a76e[s(0x1f5)](c,'.eslintrc.json'),'framework':s(0x1f6),'context':n});}const j=new ESLint(),k=await j[s(0x1e8)]([a76e[s(0x1f5)](c,s(0x1f1),'**')]),l=await j[s(0x1df)](s(0x1e5)),m=l[s(0x1cd)](k);m[s(0x1db)]>0x0?Log[s(0x1d2)](m):Log['success']('All\x20good!\x20:)'),Log[s(0x1ea)](s(0x1f0)+c+'/imports'),b['fix']?await ESLint[s(0x1f2)](k):Log[s(0x1ea)](s(0x1e4));}catch(o){console[s(0x1e7)](o);}});
@@ -1 +1 @@
1
- const a77y=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=-parseInt(w(0x17a))/0x1*(-parseInt(w(0x161))/0x2)+-parseInt(w(0x17e))/0x3+-parseInt(w(0x154))/0x4+parseInt(w(0x15a))/0x5*(parseInt(w(0x17b))/0x6)+-parseInt(w(0x176))/0x7+parseInt(w(0x153))/0x8*(parseInt(w(0x174))/0x9)+-parseInt(w(0x168))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0xe2724));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 x=a77d;return a77a[x(0x183)]()['search'](x(0x188))[x(0x183)]()['constructor'](a77a)[x(0x173)](x(0x188));});a77a();function a77c(){const A=['Logging\x20into\x20https://','10927224dKMNiD','True','sha256','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','321781ArVFPw','10412130HZFeBN','get','email','67443Iufini','getGlobalConfig','Using\x20CA\x20Cert\x20','ask','digest','toString','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','login','success','debug','(((.+)+)+)+$','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','localhost','error','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','/api/v1/status','post','8yemEcB','4218912YVOypk','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','setGlobalConfig','Preflight\x20Check','create','/api/v1/login','5ZzZqqo','header','/api/v1/encodeJwt','toHex','cacert','update','notice','10ffYVlA','password','fsi','parse','isFile','env','authToken','9081240JNbfUV','Email:','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','start','https://','Password:\x20','cert','maka\x20login','exit','assign','failure','search','10166661OFsWlU'];a77c=function(){return A;};return a77c();}import a77e from'node-forge';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a77y(0x166)]['MAKA_DEV']===a77y(0x177)?a77y(0x14e):'www.maka-cli.com';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x14e;let f=c[d];return f;},a77d(a,b);}Command[a77y(0x158)]({'name':a77y(0x185),'validOpts':[a77y(0x17d),a77y(0x162),'help',a77y(0x15e),a77y(0x187)],'usage':a77y(0x16f),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77y(0x155),'examples':[a77y(0x16f),'maka\x20login\x20--email\x20<address>\x20--password\x20<password>']},async function(a,b){const z=a77y,c=Log['withSpinner']();try{let d='';b[z(0x15e)]&&(this[z(0x163)][z(0x165)](b[z(0x15e)])?(d=b[z(0x15e)],Log[z(0x160)](z(0x180)+d)):Log[z(0x14f)](z(0x150)+d));const f=await this[z(0x163)][z(0x17f)]();if(f['cert']){if(this[z(0x163)][z(0x165)](f[z(0x16e)]))d=f[z(0x16e)];else{Log[z(0x14f)](z(0x179)+d);return;}}Log[z(0x15b)](z(0x175)+hostname);const g={'url':z(0x16c)+hostname+z(0x151)};b[z(0x15e)]&&Object[z(0x171)](g,{'cert':d});c[z(0x16b)](z(0x157));const {statusCode:h}=await HTTPS[z(0x17c)](g);if(h===0x198){c[z(0x172)]();throw z(0x16a);}if(h!==0xc8){c[z(0x172)]();throw z(0x16c)+hostname+z(0x189);}c[z(0x186)]();const i=b[z(0x17d)]?b['email']:await Actions[z(0x181)](z(0x169)),j=b[z(0x162)]?b[z(0x162)]:await Actions[z(0x181)](z(0x16d),!![]),k=a77e['md'][z(0x178)][z(0x158)]();k[z(0x15f)](j);const l=k[z(0x182)]()[z(0x15d)](),m={'hostname':hostname,'path':z(0x159),'data':{'email':i,'password':l,'hashed':!![]}};b[z(0x15e)]&&Object['assign'](m,{'cert':d});c['start']('Logging\x20in');const {data:n,statusCode:o}=await HTTPS[z(0x152)](m);if(o===0x198){c[z(0x172)]('\x0a');throw z(0x184)+hostname;}const p=JSON[z(0x164)](n);if(p[z(0x167)]){const q={'hostname':hostname,'path':z(0x15c),'headers':{'x-auth-token':p[z(0x167)]},'data':{}};b[z(0x15e)]&&Object[z(0x171)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[z(0x152)](q),{token:t}=JSON[z(0x164)](r);if(s===0x198)throw z(0x184)+hostname;const u={'token':p,'hash':t};this['fsi'][z(0x156)](u);}else{c[z(0x172)]();throw p;}c['success']();}catch(v){c['failure'](),console[z(0x14f)](v),process[z(0x170)](0x0);}});
1
+ const a77z=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=parseInt(w(0x1ca))/0x1+parseInt(w(0x1e0))/0x2+-parseInt(w(0x1db))/0x3+parseInt(w(0x1da))/0x4+-parseInt(w(0x1bd))/0x5+-parseInt(w(0x1c0))/0x6*(parseInt(w(0x1cb))/0x7)+parseInt(w(0x1b8))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0xb8292));function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x1ab;let f=c[d];return f;},a77d(a,b);}const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a77d;if(c){const e=c[x(0x1b4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const y=a77d;return a77a[y(0x1bc)]()[y(0x1c4)](y(0x1b3))[y(0x1bc)]()[y(0x1ac)](a77a)[y(0x1c4)](y(0x1b3));});a77a();import a77e from'node-forge';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';function a77c(){const B=['assign','notice','login','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','cacert','2201244asGitV','3359169PWGttC','/api/v1/login','setGlobalConfig','True','authToken','2820228UGCfUk','header','cert','constructor','ask','https://','Preflight\x20Check','failure','password','/api/v1/encodeJwt','(((.+)+)+)+$','apply','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','maka\x20login','exit','1596088OQQqQn','help','isFile','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','toString','1132980bvxUFl','digest','start','8924568PSlDOH','create','error','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','search','email','localhost','post','withSpinner','Using\x20CA\x20Cert\x20','1428133CJDxiI','7PtpjCc','success','sha256','/api/v1/status','env','fsi','debug','getGlobalConfig','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','Password:\x20'];a77c=function(){return B;};return a77c();}const hostname=process[a77z(0x1cf)]['MAKA_DEV']===a77z(0x1de)?a77z(0x1c6):'www.maka-cli.com';Command['create']({'name':a77z(0x1d7),'validOpts':[a77z(0x1c5),a77z(0x1b1),a77z(0x1b9),a77z(0x1d9),a77z(0x1d1)],'usage':a77z(0x1b6),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77z(0x1c3),'examples':[a77z(0x1b6),'maka\x20login\x20--email\x20<address>\x20--password\x20<password>']},async function(a,b){const A=a77z,c=Log[A(0x1c8)]();try{let d='';b[A(0x1d9)]&&(this[A(0x1d0)][A(0x1ba)](b[A(0x1d9)])?(d=b[A(0x1d9)],Log[A(0x1d6)](A(0x1c9)+d)):Log['error'](A(0x1bb)+d));const f=await this[A(0x1d0)][A(0x1d2)]();if(f[A(0x1ab)]){if(this['fsi']['isFile'](f[A(0x1ab)]))d=f['cert'];else{Log[A(0x1c2)](A(0x1d8)+d);return;}}Log[A(0x1e1)]('Logging\x20into\x20https://'+hostname);const g={'url':A(0x1ae)+hostname+A(0x1ce)};b[A(0x1d9)]&&Object[A(0x1d5)](g,{'cert':d});c[A(0x1bf)](A(0x1af));const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c[A(0x1b0)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}if(h!==0xc8){c[A(0x1b0)]();throw'https://'+hostname+A(0x1d3);}c['success']();const i=b[A(0x1c5)]?b[A(0x1c5)]:await Actions['ask']('Email:'),j=b[A(0x1b1)]?b['password']:await Actions[A(0x1ad)](A(0x1d4),!![]),k=a77e['md'][A(0x1cd)][A(0x1c1)]();k['update'](j);const l=k[A(0x1be)]()['toHex'](),m={'hostname':hostname,'path':A(0x1dc),'data':{'email':i,'password':l,'hashed':!![]}};b[A(0x1d9)]&&Object[A(0x1d5)](m,{'cert':d});c[A(0x1bf)]('Logging\x20in');const {data:n,statusCode:o}=await HTTPS[A(0x1c7)](m);if(o===0x198){c[A(0x1b0)]('\x0a');throw A(0x1b5)+hostname;}const p=JSON['parse'](n);if(p[A(0x1df)]){const q={'hostname':hostname,'path':A(0x1b2),'headers':{'x-auth-token':p[A(0x1df)]},'data':{}};b[A(0x1d9)]&&Object[A(0x1d5)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[A(0x1c7)](q),{token:t}=JSON['parse'](r);if(s===0x198)throw A(0x1b5)+hostname;const u={'token':p,'hash':t};this['fsi'][A(0x1dd)](u);}else{c['failure']();throw p;}c[A(0x1cc)]();}catch(v){c['failure'](),console[A(0x1c2)](v),process[A(0x1b7)](0x0);}});
@@ -1 +1 @@
1
- const a78n=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=-parseInt(l(0x210))/0x1+parseInt(l(0x212))/0x2+-parseInt(l(0x1ed))/0x3*(parseInt(l(0x1ef))/0x4)+parseInt(l(0x1f5))/0x5+parseInt(l(0x1f9))/0x6+parseInt(l(0x1fc))/0x7*(parseInt(l(0x20f))/0x8)+-parseInt(l(0x1e9))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x551f1));const a78b=(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;};}()),a78a=a78b(this,function(){const m=a78d;return a78a[m(0x203)]()[m(0x1eb)](m(0x1ee))[m(0x203)]()[m(0x206)](a78a)[m(0x1eb)](m(0x1ee));});a78a();function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x1e7;let f=c[d];return f;},a78d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78n(0x200)][a78n(0x1ec)]===a78n(0x209)?a78n(0x201):a78n(0x1f8);Command['create']({'name':'logout','validOpts':['cacert'],'usage':'maka\x20logout','maxArgLength':0x2,'shortDesc':a78n(0x20d),'disableAuthCheck':!![],'examples':[a78n(0x1f4)]},async function(a,b){const o=a78n,c=Log[o(0x20a)]();try{let d='';b['cacert']&&(this[o(0x1f7)][o(0x1f6)](b[o(0x1fa)])?(d=b[o(0x1fa)],Log['notice'](o(0x205)+d)):Log[o(0x1ff)](o(0x1f0)+d));const f=await this[o(0x1f7)][o(0x1ea)]();if(f[o(0x1f2)]){if(this[o(0x1f7)][o(0x1f6)](f['cert']))d=f[o(0x1f2)];else{c[o(0x1f1)]();throw Log['error'](o(0x1e8)+d);}}Log['header'](o(0x208)+hostname);const g={'url':o(0x1fb)+hostname+o(0x213)};b[o(0x1fa)]&&Object['assign'](g,{'cert':d});c[o(0x1fd)](o(0x211));const {statusCode:h}=await HTTPS[o(0x207)](g);if(h===0x198){c['failure']();throw o(0x20e);}c[o(0x202)]();if(h!==0xc8){c['failure']();throw'https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli';}if(!f?.[o(0x1f3)]?.[o(0x1e7)])throw Log[o(0x1ff)]('Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?');c[o(0x1fd)](o(0x1fe));const i={'hostname':hostname,'path':o(0x204),'data':{},'headers':{'x-auth-token':f['token'][o(0x1e7)]}};b['cacert']&&Object[o(0x20b)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c[o(0x1f1)]('\x0a');throw o(0x20e);}this[o(0x1f7)][o(0x20c)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[o(0x202)]();}catch(k){k&&console[o(0x1ff)](k),process['exit'](0x0);}});function a78c(){const p=['3WzLiQz','(((.+)+)+)+$','960812KEhIJU','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','failure','cert','token','maka\x20logout','1417025mdhipk','isFile','fsi','www.maka-cli.com','2924892yuLDBG','cacert','https://','28KeknYV','start','Logging\x20out','error','env','localhost','success','toString','/api/v1/logoutAll','Using\x20CA\x20Cert\x20','constructor','get','Logging\x20out\x20of\x20https://','True','withSpinner','assign','setGlobalConfig','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','219088KdWRqc','108260mvrhUE','Preflight\x20Check','1234292tbuEDc','/api/v1/status','authToken','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','7204113nxflIP','getGlobalConfig','search','MAKA_DEV'];a78c=function(){return p;};return a78c();}
1
+ const a78o=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=parseInt(l(0x1df))/0x1+parseInt(l(0x1ed))/0x2+-parseInt(l(0x1e7))/0x3*(-parseInt(l(0x1fd))/0x4)+parseInt(l(0x1e6))/0x5+-parseInt(l(0x1e0))/0x6*(-parseInt(l(0x203))/0x7)+parseInt(l(0x202))/0x8*(-parseInt(l(0x1f6))/0x9)+-parseInt(l(0x1e8))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x878e1));const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a78d;if(c){const e=c[m(0x1eb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const n=a78d;return a78a['toString']()[n(0x1fc)](n(0x1f5))[n(0x201)]()['constructor'](a78a)[n(0x1fc)](n(0x1f5));});function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x1db;let f=c[d];return f;},a78d(a,b);}a78a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78o(0x1f1)][a78o(0x205)]===a78o(0x209)?a78o(0x1dd):a78o(0x204);Command[a78o(0x1ef)]({'name':a78o(0x1f0),'validOpts':[a78o(0x1f9)],'usage':'maka\x20logout','maxArgLength':0x2,'shortDesc':a78o(0x200),'disableAuthCheck':!![],'examples':['maka\x20logout']},async function(a,b){const p=a78o,c=Log[p(0x1f7)]();try{let d='';b[p(0x1f9)]&&(this[p(0x207)][p(0x1fa)](b['cacert'])?(d=b['cacert'],Log[p(0x20b)](p(0x1f2)+d)):Log[p(0x1e2)](p(0x1f3)+d));const f=await this['fsi'][p(0x1ee)]();if(f['cert']){if(this[p(0x207)]['isFile'](f[p(0x1ff)]))d=f['cert'];else{c[p(0x1e3)]();throw Log[p(0x1e2)](p(0x1e5)+d);}}Log[p(0x206)](p(0x1e4)+hostname);const g={'url':p(0x1dc)+hostname+p(0x1e1)};b['cacert']&&Object[p(0x1fb)](g,{'cert':d});c['start']('Preflight\x20Check');const {statusCode:h}=await HTTPS[p(0x1ea)](g);if(h===0x198){c['failure']();throw p(0x1db);}c['success']();if(h!==0xc8){c['failure']();throw p(0x20a);}if(!f?.[p(0x1de)]?.[p(0x1f8)])throw Log[p(0x1e2)](p(0x1f4));c[p(0x1ec)](p(0x208));const i={'hostname':hostname,'path':p(0x20c),'data':{},'headers':{'x-auth-token':f[p(0x1de)]['authToken']}};b[p(0x1f9)]&&Object[p(0x1fb)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c[p(0x1e3)]('\x0a');throw p(0x1db);}this['fsi']['setGlobalConfig']({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[p(0x1e9)]();}catch(k){k&&console[p(0x1e2)](k),process[p(0x1fe)](0x0);}});function a78c(){const q=['www.maka-cli.com','MAKA_DEV','header','fsi','Logging\x20out','True','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','notice','/api/v1/logoutAll','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','https://','localhost','token','52701cIJaTO','6300246gYYpWo','/api/v1/status','error','failure','Logging\x20out\x20of\x20https://','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','1845945qlNoeE','1269111SkutON','22477410aQvXMN','success','get','apply','start','1661138KQVukx','getGlobalConfig','create','logout','env','Using\x20CA\x20Cert\x20','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','(((.+)+)+)+$','21600FMEKbq','withSpinner','authToken','cacert','isFile','assign','search','8NSBbHM','exit','cert','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','toString','1152OFxRaH','7qwVWVe'];a78c=function(){return q;};return a78c();}
@@ -1 +1 @@
1
- function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x150;let f=c[d];return f;},a79d(a,b);}const a79k=a79d;(function(a,b){const h=a79d,c=a();while(!![]){try{const d=-parseInt(h(0x156))/0x1*(-parseInt(h(0x153))/0x2)+parseInt(h(0x163))/0x3+parseInt(h(0x169))/0x4+parseInt(h(0x165))/0x5+-parseInt(h(0x162))/0x6+parseInt(h(0x160))/0x7+-parseInt(h(0x151))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x28e5c));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a79d;if(c){const e=c[i(0x16a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const j=a79d;return a79a[j(0x15c)]()[j(0x159)](j(0x15d))['toString']()[j(0x15e)](a79a)[j(0x159)](j(0x15d));});function a79c(){const m=['6220360BHYDgl','sshSync','744kJosxj','readFileSync','ssh.json','62wXLoUC','log','getConfigPath','search','join','maka\x20logs\x20--env\x20dev','toString','(((.+)+)+)+$','constructor','View\x20the\x20PM2\x20logs','1849421oFhxgt','logs','40704GbzZip','762756OQBKgf','create','924050bJzZDN','maka\x20l\x20-e\x20p','env','fsi','902064odZhFj','apply','verbose','maka\x20logs','parse'];a79c=function(){return m;};return a79c();}a79a();import a79e from'fs';import a79f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a79k(0x164)]({'name':a79k(0x161),'aliases':['l',a79k(0x157)],'usage':a79k(0x16c),'requiredOpts':[a79k(0x167)],'mustBeInMakaProject':!![],'validOpts':[a79k(0x16b)],'shortDesc':a79k(0x15f),'examples':[a79k(0x15b),'maka\x20logs\x20--env\x20staging',a79k(0x166)]},function(a,b){const l=a79k,c='pm2\x20logs',d=this[l(0x168)][l(0x158)](b[l(0x167)]),e=a79f[l(0x15a)](d,l(0x155)),f=a79e[l(0x154)](e),g=JSON[l(0x150)](f[l(0x15c)]());Object['assign'](g,{'env':d}),SSH[l(0x152)](c,g,{'tty':!![],'verbose':!![]});});
1
+ const a79k=a79d;(function(a,b){const h=a79d,c=a();while(!![]){try{const d=parseInt(h(0x116))/0x1+-parseInt(h(0x118))/0x2+-parseInt(h(0x10a))/0x3*(parseInt(h(0x112))/0x4)+parseInt(h(0x106))/0x5+parseInt(h(0x100))/0x6*(-parseInt(h(0x10f))/0x7)+parseInt(h(0x10c))/0x8*(parseInt(h(0x109))/0x9)+parseInt(h(0x103))/0xa*(parseInt(h(0x114))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x57822));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a79d;if(c){const e=c[i(0x113)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const j=a79d;return a79a[j(0x10e)]()[j(0xfe)](j(0x105))[j(0x10e)]()['constructor'](a79a)[j(0xfe)](j(0x105));});a79a();function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0xfb;let f=c[d];return f;},a79d(a,b);}import a79e from'fs';import a79f from'path';import{Command}from'../command.js';function a79c(){const m=['1312158ZqTFVM','assign','sshSync','log','search','env','4194090bsGXCo','logs','readFileSync','170IKwTBQ','maka\x20l\x20-e\x20p','(((.+)+)+)+$','3465255YVPCcE','ssh.json','fsi','9IMaedO','676554sTQoob','maka\x20logs','5367208PAMMgm','pm2\x20logs','toString','7OfJNGv','join','parse','12xMOpPU','apply','426976mFkXAe','maka\x20logs\x20--env\x20staging','366258xIBsRt','maka\x20logs\x20--env\x20dev'];a79c=function(){return m;};return a79c();}import{SSH}from'../tools/ssh/ssh.class.js';Command['create']({'name':a79k(0x101),'aliases':['l',a79k(0xfd)],'usage':a79k(0x10b),'requiredOpts':[a79k(0xff)],'mustBeInMakaProject':!![],'validOpts':['verbose'],'shortDesc':'View\x20the\x20PM2\x20logs','isPro':!![],'examples':[a79k(0x117),a79k(0x115),a79k(0x104)]},function(a,b){const l=a79k,c=l(0x10d),d=this[l(0x108)]['getConfigPath'](b['env']),e=a79f[l(0x110)](d,l(0x107)),f=a79e[l(0x102)](e),g=JSON[l(0x111)](f[l(0x10e)]());Object[l(0xfb)](g,{'env':d}),SSH[l(0xfc)](c,g,{'tty':!![],'verbose':!![]});});
@@ -1 +1 @@
1
- const a80i=a80d;(function(a,b){const g=a80d,c=a();while(!![]){try{const d=parseInt(g(0x13c))/0x1*(parseInt(g(0x13d))/0x2)+parseInt(g(0x13a))/0x3+-parseInt(g(0x13b))/0x4*(-parseInt(g(0x132))/0x5)+-parseInt(g(0x135))/0x6+parseInt(g(0x127))/0x7*(-parseInt(g(0x12a))/0x8)+-parseInt(g(0x128))/0x9*(-parseInt(g(0x138))/0xa)+-parseInt(g(0x12d))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0x8fda0));function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x125;let f=c[d];return f;},a80d(a,b);}const a80b=(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;};}()),a80a=a80b(this,function(){const h=a80d;return a80a[h(0x137)]()[h(0x126)](h(0x13e))['toString']()[h(0x131)](a80a)[h(0x126)]('(((.+)+)+)+$');});a80a();import{Command}from'../command.js';const Maka=new Command({'name':a80i(0x13f),'minArgLength':0x1,'shortDesc':a80i(0x125),'validOpts':[],'usage':a80i(0x130),'disableAuthCheck':!![],'examples':[a80i(0x12f),a80i(0x12c),a80i(0x141),a80i(0x12e)],'description':a80i(0x140)},async function(a,b){const j=a80i;try{const c=a[0x0],d=this[j(0x134)](c);d?this[j(0x139)](c,a['slice'](0x1),b):this[j(0x12b)][j(0x133)]();}catch(f){console[j(0x136)](f),process[j(0x129)](0x1);}});export default Maka;function a80c(){const k=['A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','search','168581WHThcT','1098774jhkoqL','exit','320zukcfD','fsi','maka\x20install\x20meteor','13915770kcloEJ','maka\x20run','maka\x20--help','maka\x20<command>\x20[<args>]\x20[<opts>]','constructor','55eZxheR','maybeProxyCommandToMeteor','findSubCommand','132954aqDKtL','error','toString','40ThRrgo','runSubCommand','3278523kdLUvA','256148YtycIk','554173hKsTHP','2NIgoHE','(((.+)+)+)+$','maka','\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'];a80c=function(){return k;};return a80c();}
1
+ const a80i=a80d;(function(a,b){const g=a80d,c=a();while(!![]){try{const d=parseInt(g(0x87))/0x1*(parseInt(g(0x8d))/0x2)+parseInt(g(0x8c))/0x3*(parseInt(g(0x79))/0x4)+-parseInt(g(0x89))/0x5*(parseInt(g(0x88))/0x6)+parseInt(g(0x7a))/0x7+-parseInt(g(0x85))/0x8+-parseInt(g(0x7e))/0x9*(parseInt(g(0x91))/0xa)+-parseInt(g(0x8a))/0xb*(-parseInt(g(0x90))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0x56c00));const a80b=(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;};}()),a80a=a80b(this,function(){const h=a80d;return a80a[h(0x93)]()[h(0x8e)](h(0x7c))['toString']()[h(0x84)](a80a)[h(0x8e)]('(((.+)+)+)+$');});a80a();import{Command}from'../command.js';const Maka=new Command({'name':a80i(0x7f),'minArgLength':0x1,'shortDesc':a80i(0x83),'validOpts':[],'usage':'maka\x20<command>\x20[<args>]\x20[<opts>]','disableAuthCheck':!![],'examples':[a80i(0x7d),'maka\x20install\x20meteor',a80i(0x7b),'maka\x20run'],'description':a80i(0x92)},async function(a,b){const j=a80i;try{const c=a[0x0],d=this[j(0x82)](c);d?this[j(0x8b)](c,a[j(0x80)](0x1),b):this[j(0x8f)][j(0x81)]();}catch(f){console[j(0x86)](f),process['exit'](0x1);}});function a80c(){const k=['39GKtzwe','258bOBfSo','35025EyQlYB','5459267qIJLPk','runSubCommand','183807NwbqoV','1744xHYfGu','search','fsi','24sOSAyQ','10XayNNQ','\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','toString','8QdQbZx','4271736FKurTv','maka\x20create\x20Todo','(((.+)+)+)+$','maka\x20--help','3808926KBnCxV','maka','slice','maybeProxyCommandToMeteor','findSubCommand','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','constructor','5437048ttqFKS','error'];a80c=function(){return k;};return a80c();}function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x79;let f=c[d];return f;},a80d(a,b);}export default Maka;
@@ -1 +1 @@
1
- var a81i=a81d;function a81c(){var k=['search','86280bKEJwK','font-family:\x20monospace','%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','1109040lbhjqw','4963836JmILGq','12151674HeRRjr','apply','constructor','Murrrrderrrrr','exit','(((.+)+)+)+$','create','922837LjFLLU','maka\x20murder','88ycjxlG','74560EILnEO','1004286YvmUyF','35sHmNSX'];a81c=function(){return k;};return a81c();}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x7c))/0x1+parseInt(f(0x7e))/0x2*(-parseInt(f(0x70))/0x3)+-parseInt(f(0x74))/0x4+-parseInt(f(0x7f))/0x5+parseInt(f(0x6d))/0x6*(parseInt(f(0x6e))/0x7)+parseInt(f(0x73))/0x8+parseInt(f(0x75))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xb18cf));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x76)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a['toString']()[h(0x6f)](h(0x7a))['toString']()[h(0x77)](a81a)[h(0x6f)](h(0x7a));});function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x6d;var f=c[d];return f;},a81d(a,b);}a81a();import{Command}from'../command.js';Command[a81i(0x7b)]({'name':'murder','usage':a81i(0x7d),'maxArgLength':0x1,'shortDesc':a81i(0x78),'validOpts':[]},async function(){var j=a81i;try{console['log'](j(0x72),j(0x71));}catch(a){console['error'](a),process[j(0x79)](0x0);}});
1
+ function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x119;var f=c[d];return f;},a81d(a,b);}var a81h=a81d;(function(a,b){var f=a81d,c=a();while(!![]){try{var d=-parseInt(f(0x127))/0x1*(parseInt(f(0x11e))/0x2)+-parseInt(f(0x120))/0x3*(-parseInt(f(0x126))/0x4)+-parseInt(f(0x11c))/0x5*(parseInt(f(0x129))/0x6)+-parseInt(f(0x12b))/0x7+-parseInt(f(0x122))/0x8+-parseInt(f(0x124))/0x9*(-parseInt(f(0x125))/0xa)+parseInt(f(0x12a))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xcba1f));function a81c(){var j=['2XNQjLz','toString','64266bhSebg','15949417LfusTx','364CIzKBA','error','maka\x20murder','Murrrrderrrrr','exit','constructor','5tZSGht','log','5134cAVRRc','create','29634GlzPPL','murder','11085048jpZXXB','%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','498717gDJqqE','140CaNxvL','4tfzcEe'];a81c=function(){return j;};return a81c();}var a81b=(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;};}()),a81a=a81b(this,function(){var g=a81d;return a81a['toString']()['search']('(((.+)+)+)+$')[g(0x128)]()[g(0x11b)](a81a)['search']('(((.+)+)+)+$');});a81a();import{Command}from'../command.js';Command[a81h(0x11f)]({'name':a81h(0x121),'usage':a81h(0x12d),'maxArgLength':0x1,'shortDesc':a81h(0x119),'validOpts':[]},async function(){var i=a81h;try{console[i(0x11d)](i(0x123),'font-family:\x20monospace');}catch(a){console[i(0x12c)](a),process[i(0x11a)](0x0);}});
@@ -1 +1 @@
1
- const a82q=a82d;function a82c(){const s=['(((.+)+)+)+$','\x20to\x20','4DViqwI','331869rEEfXT','4055680jZuJtO','create','maka\x20proxy','createProxyServer','maka\x20proxy\x20--target-host\x20http://192.168.1.20','help','listen','genSSC','appName','bright','5698305JvVEFx','listenPort','genCSR','.csr','error','\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','proxy','3070907GffDdR','search','targetHost','constructor','readFileSync','sslconfig','248624vGqdRv','invoke','findGenerator','.key','12iYuZFJ','targetPort','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','2161800MVCHso','join','.crt','isFile','localhost','toString','apply','831426oMviKw','utf8','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','getConfigPath','fsi','153HBSgvy'];a82c=function(){return s;};return a82c();}(function(a,b){const n=a82d,c=a();while(!![]){try{const d=-parseInt(n(0x1da))/0x1+parseInt(n(0x1b3))/0x2*(parseInt(n(0x1b4))/0x3)+parseInt(n(0x1d3))/0x4+-parseInt(n(0x1bf))/0x5+parseInt(n(0x1d0))/0x6*(parseInt(n(0x1c6))/0x7)+-parseInt(n(0x1cc))/0x8*(-parseInt(n(0x1df))/0x9)+parseInt(n(0x1b5))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x92f31));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a82d;if(c){const e=c[o(0x1d9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const p=a82d;return a82a['toString']()['search'](p(0x1e0))[p(0x1d8)]()[p(0x1c9)](a82a)[p(0x1c7)](p(0x1e0));});a82a();import a82e from'fs';import a82f from'path';import a82g from'http-proxy';import{Command}from'../command.js';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x1b3;let f=c[d];return f;},a82d(a,b);}import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';import{SSL}from'../tools/ssl/ssl.class.js';import a82h from'../generators/maka.gen.js';Command[a82q(0x1b6)]({'name':a82q(0x1c5),'usage':'maka\x20proxy','mustBeInMakaProject':!![],'validOpts':[a82q(0x1ba),a82q(0x1d1),a82q(0x1c0),a82q(0x1c8)],'maxArgLength':0x1,'shortDesc':a82q(0x1d2),'description':a82q(0x1c4),'examples':[a82q(0x1b7),a82q(0x1dc),a82q(0x1b9)]},async function(a,b){const r=a82q,c=this[r(0x1de)]['getProjectConfig'](),d='development',e=this[r(0x1de)][r(0x1dd)](d),f=this[r(0x1de)]['mkKeysDir']({'configPath':e}),g=b[r(0x1d1)]?Number(b[r(0x1d1)]):0xbb8,h=b[r(0x1c0)]?Number(b['listenPort']):0xd73,i=b[r(0x1c8)]?b['targetHost']:r(0x1d7),j=a82f[r(0x1d4)](f,c[r(0x1bd)]+r(0x1cf)),k=a82f['join'](f,c[r(0x1bd)]+r(0x1d5));if(!this[r(0x1de)][r(0x1d6)](j)||!this[r(0x1de)][r(0x1d6)](k)){const m=a82h[r(0x1ce)](r(0x1cb));m&&await m[r(0x1cd)]([r(0x1cb)],{'env':d}),SSL[r(0x1c1)]({'keyName':c[r(0x1bd)]+r(0x1cf),'csrName':c[r(0x1bd)]+r(0x1c2),'cwd':f}),SSL[r(0x1bc)]({'keyName':c[r(0x1bd)]+r(0x1cf),'crtName':c['appName']+'.crt','cwd':f});}if(g===h){Log[r(0x1c3)]('Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.');throw new UsageError();}const l={'ssl':{'key':a82e[r(0x1ca)](j,r(0x1db)),'cert':a82e['readFileSync'](k,r(0x1db))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[r(0x1b8)](l)[r(0x1bb)](Number(h)),Log[r(0x1be)]('=>\x20SSL\x20Proxy\x20forwarding\x20'+h+r(0x1e1)+g);});
1
+ const a82p=a82d;(function(a,b){const n=a82d,c=a();while(!![]){try{const d=-parseInt(n(0x150))/0x1*(-parseInt(n(0x132))/0x2)+-parseInt(n(0x14d))/0x3+parseInt(n(0x153))/0x4+-parseInt(n(0x14a))/0x5+parseInt(n(0x139))/0x6*(-parseInt(n(0x157))/0x7)+-parseInt(n(0x130))/0x8+parseInt(n(0x138))/0x9*(parseInt(n(0x156))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x85a66));const a82b=(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;};}()),a82a=a82b(this,function(){const o=a82d;return a82a[o(0x135)]()['search'](o(0x14e))[o(0x135)]()[o(0x147)](a82a)[o(0x13d)](o(0x14e));});a82a();import a82e from'fs';import a82f from'path';import a82g from'http-proxy';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x12e;let f=c[d];return f;},a82d(a,b);}import{SSL}from'../tools/ssl/ssl.class.js';function a82c(){const r=['toString','targetHost','join','16254558uCHlNH','725982PdXnJE','fsi','error','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','search','genCSR','invoke','listenPort','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','proxy','genSSC','targetPort','.crt','createProxyServer','constructor','mkKeysDir','maka\x20proxy','3510980EoRWwJ','appName','help','3070317yPXfoi','(((.+)+)+)+$','localhost','1bQsvGi','bright','\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','3442928yprDjt','readFileSync','findGenerator','10GThsnQ','42MsOfPk','=>\x20SSL\x20Proxy\x20forwarding\x20','.key','utf8','isFile','926960mrmPkE','getConfigPath','896246wwFtwa','maka\x20proxy\x20--target-host\x20http://192.168.1.20','development'];a82c=function(){return r;};return a82c();}import a82h from'../generators/maka.gen.js';Command['create']({'name':a82p(0x142),'usage':a82p(0x149),'mustBeInMakaProject':!![],'validOpts':[a82p(0x14c),'targetPort',a82p(0x140),a82p(0x136)],'maxArgLength':0x1,'shortDesc':'Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','description':a82p(0x152),'examples':[a82p(0x149),a82p(0x13c),a82p(0x133)]},async function(a,b){const q=a82p,c=this[q(0x13a)]['getProjectConfig'](),d=q(0x134),e=this[q(0x13a)][q(0x131)](d),f=this[q(0x13a)][q(0x148)]({'configPath':e}),g=b['targetPort']?Number(b[q(0x144)]):0xbb8,h=b[q(0x140)]?Number(b['listenPort']):0xd73,i=b['targetHost']?b[q(0x136)]:q(0x14f),j=a82f[q(0x137)](f,c[q(0x14b)]+q(0x159)),k=a82f[q(0x137)](f,c[q(0x14b)]+q(0x145));if(!this['fsi']['isFile'](j)||!this[q(0x13a)][q(0x12f)](k)){const m=a82h[q(0x155)]('sslconfig');m&&await m[q(0x13f)](['sslconfig'],{'env':d}),SSL[q(0x13e)]({'keyName':c[q(0x14b)]+q(0x159),'csrName':c[q(0x14b)]+'.csr','cwd':f}),SSL[q(0x143)]({'keyName':c[q(0x14b)]+q(0x159),'crtName':c[q(0x14b)]+'.crt','cwd':f});}if(g===h){Log[q(0x13b)](q(0x141));throw new UsageError();}const l={'ssl':{'key':a82e[q(0x154)](j,'utf8'),'cert':a82e[q(0x154)](k,q(0x12e))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[q(0x146)](l)['listen'](Number(h)),Log[q(0x151)](q(0x158)+h+'\x20to\x20'+g);});
@@ -1 +1 @@
1
- function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x1bb;let f=c[d];return f;},a83d(a,b);}const a83q=a83d;(function(a,b){const n=a83d,c=a();while(!![]){try{const d=-parseInt(n(0x1d9))/0x1+-parseInt(n(0x1df))/0x2+-parseInt(n(0x1c3))/0x3*(parseInt(n(0x1d8))/0x4)+-parseInt(n(0x1de))/0x5+-parseInt(n(0x1d4))/0x6*(-parseInt(n(0x1cf))/0x7)+parseInt(n(0x1da))/0x8*(-parseInt(n(0x1c9))/0x9)+parseInt(n(0x1d6))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x6b509));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a83d;if(c){const e=c[o(0x1bf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const p=a83d;return a83a[p(0x1db)]()[p(0x1c8)](p(0x1cd))[p(0x1db)]()[p(0x1e3)](a83a)[p(0x1c8)](p(0x1cd));});a83a();import a83e from'fs';import a83f from'path';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a83c(){const s=['scp','ping','settings.json','Remote\x20host\x20connection\x20successful','search','403389GTTDob','assign','fsi','ses.json','(((.+)+)+)+$','~/settings.json','77eOUBon','ssh.json','exit','maka\x20reconfig\x20--env\x20prod','Reconfigure\x20your\x20deployed\x20applications','384582rnjLqo','uname\x20-a','22273870pKIcxV','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','4nMGmVM','428689AaSTwH','8VOhZio','toString','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','3387565QaZrlV','1446622QUqawy','ssh','parse','pm2.config.js','constructor','success','getConfigPath','maka\x20reconfig','notice','sshSync','error','~/ses.json','apply','join','existsSync','\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','1855677VhVldV'];a83c=function(){return s;};return a83c();}import{SSH}from'../tools/ssh/ssh.class.js';Command['create']({'name':'reconfig','validOpts':[''],'requiredOpts':[a83q(0x1dd)],'mustBeInMakaProject':!![],'usage':a83q(0x1e6),'shortDesc':a83q(0x1d3),'description':a83q(0x1c2),'examples':[a83q(0x1d2)]},async function(a,b){const r=a83q;try{const c=this[r(0x1cb)][r(0x1e5)](b[r(0x1dd)]),d=a83f[r(0x1c0)](c,r(0x1d0)),f=a83e['readFileSync'](d)[r(0x1db)](),g=JSON[r(0x1e1)](f);Object[r(0x1ca)](g,{'env':c}),Log[r(0x1bb)]('Checking\x20remote\x20host\x20availability');const h=SSH[r(0x1c5)](r(0x1d5),g);if(!h)throw r(0x1d7);if(h)Log[r(0x1e4)](r(0x1c7));const i=a83f[r(0x1c0)](c,'_keys',r(0x1cc));if(a83e[r(0x1c1)](i)){const l={'source':i,'dest':r(0x1be),'verbose':!![]};SSH[r(0x1c4)](l,{...g});}const j=a83f[r(0x1c0)](c,r(0x1e2));SSH['scp']({'source':j,'dest':'~/pm2.config.js','verbose':!![]},{...g});const k=a83f[r(0x1c0)](c,r(0x1c6));SSH[r(0x1c4)]({'source':k,'dest':r(0x1ce),'verbose':!![]},{...g}),SSH[r(0x1bc)]('pm2\x20delete\x20all',g),await SSH[r(0x1e0)](r(0x1dc),{...g},{'verbose':!![]});}catch(m){console[r(0x1bd)](m),process[r(0x1d1)](0x0);}});
1
+ const a83p=a83d;(function(a,b){const n=a83d,c=a();while(!![]){try{const d=-parseInt(n(0x1ad))/0x1+parseInt(n(0x19f))/0x2+-parseInt(n(0x1b7))/0x3*(parseInt(n(0x1b0))/0x4)+-parseInt(n(0x19b))/0x5*(parseInt(n(0x192))/0x6)+parseInt(n(0x1a5))/0x7*(-parseInt(n(0x199))/0x8)+parseInt(n(0x19e))/0x9+-parseInt(n(0x1b9))/0xa*(-parseInt(n(0x198))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0xec338));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 o=a83d;return a83a[o(0x193)]()[o(0x1af)]('(((.+)+)+)+$')['toString']()['constructor'](a83a)[o(0x1af)](o(0x1aa));});a83a();import a83e from'fs';import a83f from'path';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a83c(){const r=['~/pm2.config.js','ssh','pm2.config.js','(((.+)+)+)+$','Reconfigure\x20your\x20deployed\x20applications','readFileSync','1367430HpuBQB','ping','search','8RTVjNp','create','ssh.json','maka\x20reconfig\x20--env\x20prod','existsSync','error','settings.json','1487571rVoZoT','exit','7674580ICemFb','join','12AelBch','toString','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','Checking\x20remote\x20host\x20availability','scp','pm2\x20delete\x20all','22sRJeRX','52024nfPWEK','\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','2763050MSsrSX','fsi','maka\x20reconfig','14395770YVDTOy','2698844VkYtbr','Remote\x20host\x20connection\x20successful','sshSync','assign','echo\x20\x22\x22\x20&&\x20pm2\x20start\x20pm2.config.js\x20&&\x20echo\x20\x22\x22\x20||\x20echo\x20\x22Cound\x20not\x20find\x20PM2,\x20have\x20you\x20deployed\x20the\x20app\x20yet?\x22','uname\x20-a','56zAuXxK','~/settings.json'];a83c=function(){return r;};return a83c();}import{SSH}from'../tools/ssh/ssh.class.js';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x191;let f=c[d];return f;},a83d(a,b);}Command[a83p(0x1b1)]({'name':'reconfig','validOpts':[''],'requiredOpts':['env'],'mustBeInMakaProject':!![],'usage':a83p(0x19d),'isPro':!![],'shortDesc':a83p(0x1ab),'description':a83p(0x19a),'examples':[a83p(0x1b3)]},async function(a,b){const q=a83p;try{const c=this[q(0x19c)]['getConfigPath'](b['env']),d=a83f[q(0x191)](c,q(0x1b2)),f=a83e[q(0x1ac)](d)[q(0x193)](),g=JSON['parse'](f);Object[q(0x1a2)](g,{'env':c}),Log['notice'](q(0x195));const h=SSH[q(0x1ae)](q(0x1a4),g);if(!h)throw q(0x194);if(h)Log['success'](q(0x1a0));const i=a83f[q(0x191)](c,'_keys','ses.json');if(a83e[q(0x1b4)](i)){const l={'source':i,'dest':'~/ses.json','verbose':!![]};SSH['scp'](l,{...g});}const j=a83f['join'](c,q(0x1a9));SSH[q(0x196)]({'source':j,'dest':q(0x1a7),'verbose':!![]},{...g});const k=a83f[q(0x191)](c,q(0x1b6));SSH[q(0x196)]({'source':k,'dest':q(0x1a6),'verbose':!![]},{...g}),SSH[q(0x1a1)](q(0x197),g),await SSH[q(0x1a8)](q(0x1a3),{...g},{'verbose':!![]});}catch(m){console[q(0x1b5)](m),process[q(0x1b8)](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0x1fb))/0x1*(-parseInt(f(0x1fd))/0x2)+parseInt(f(0x1f7))/0x3+parseInt(f(0x1f8))/0x4*(parseInt(f(0x1ff))/0x5)+-parseInt(f(0x1fa))/0x6*(parseInt(f(0x1f9))/0x7)+parseInt(f(0x1fc))/0x8+-parseInt(f(0x1f6))/0x9*(-parseInt(f(0x200))/0xa)+parseInt(f(0x201))/0xb*(-parseInt(f(0x1f3))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0x1a483));function a84c(){var i=['420706ZRJlJi','apply','15VZQCUS','21530NWshqn','6627269zhjYcS','(((.+)+)+)+$','12hAZfpZ','search','toString','558Jocaaq','566247FVADqq','133204fdrrXR','523390WaebpM','6OVuEJc','1IMHwrv','1219272zfuQOn'];a84c=function(){return i;};return a84c();}var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0x1fe)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a[h(0x1f5)]()[h(0x1f4)](h(0x1f2))[h(0x1f5)]()['constructor'](a84a)[h(0x1f4)]('(((.+)+)+)+$');});function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x1f2;var f=c[d];return f;},a84d(a,b);}a84a();import'./run.command.js';import'./docker.sub.cmd.js';
1
+ function a84c(){var h=['toString','4169224uQtPKd','10uIjLBQ','11708262zXuQyC','20355280hKmKsP','7ogbcWo','(((.+)+)+)+$','constructor','520yuVqoi','search','4959488LwnyVp','4749525Zrchwx','1654AEQZle','1511RdraDL','109254vqBsHZ'];a84c=function(){return h;};return a84c();}(function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0x190))/0x1*(parseInt(f(0x18f))/0x2)+parseInt(f(0x18e))/0x3+-parseInt(f(0x18d))/0x4+-parseInt(f(0x18b))/0x5*(-parseInt(f(0x191))/0x6)+parseInt(f(0x188))/0x7*(parseInt(f(0x184))/0x8)+-parseInt(f(0x186))/0x9*(-parseInt(f(0x185))/0xa)+-parseInt(f(0x187))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xea239));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['toString']()[g(0x18c)](g(0x189))[g(0x192)]()[g(0x18a)](a84a)[g(0x18c)](g(0x189));});a84a();import'./run.command.js';function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x184;var f=c[d];return f;},a84d(a,b);}import'./docker.sub.cmd.js';
@@ -1 +1 @@
1
- function a85c(){const n=['getProjectConfig','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','appName','apply','\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','join','337026NzGNnk','6497976mfQrkN','notice','config/docker-compose.yaml','constructor','1120260JRxjYC','existsSync','980514MwydbX','(((.+)+)+)+$','1689927ZCDsrC','\x20up\x20--remove-orphans','search','fsi','exit','toString','maka\x20run\x20docker','PM2\x20Config\x20File:\x20','inherit','57654BWMDOa','templateContent','docker-compose\x20--project-directory\x20','docker','60JyaUDM','546602vqqMvs'];a85c=function(){return n;};return a85c();}const a85l=a85d;(function(a,b){const i=a85d,c=a();while(!![]){try{const d=parseInt(i(0xb0))/0x1+-parseInt(i(0xb7))/0x2+-parseInt(i(0xb9))/0x3+parseInt(i(0xb5))/0x4+-parseInt(i(0xc6))/0x5*(parseInt(i(0xc2))/0x6)+parseInt(i(0xc7))/0x7+parseInt(i(0xb1))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x52a76));const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a85d;if(c){const e=c[j(0xcb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const k=a85d;return a85a[k(0xbe)]()[k(0xbb)](k(0xb8))['toString']()[k(0xb4)](a85a)[k(0xbb)](k(0xb8));});a85a();import a85e from'./run.command.js';import{execSync}from'child_process';import a85f from'path';import a85g from'fs';function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0xaf;let f=c[d];return f;},a85d(a,b);}import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';Command['create']({'name':'docker','aliases':['d'],'shortDesc':a85l(0xc9),'description':a85l(0xcc),'usage':a85l(0xbf),'validOpts':['']},async function(){const m=a85l;try{const a=this[m(0xbc)][m(0xc8)](),b=this['fsi']['getConfigPath'](m(0xc5)),c=a85f[m(0xaf)](b,'docker-compose.yaml'),d=a85f[m(0xaf)](b,'pm2.config.js');Log[m(0xb2)](m(0xc0)+d),Log[m(0xb2)]('Docker\x20Compose\x20Path:\x20'+c);if(!a85g[m(0xb6)](c)){const f={'app':a[m(0xca)],'appFileCase':paramCase(a[m(0xca)])},g=this[m(0xbc)][m(0xc3)]({'srcPath':m(0xb3),'context':f})+'\x0a';this[m(0xbc)]['createFile']({'filePath':c,'data':g});}execSync(m(0xc4)+b+m(0xba),{'stdio':m(0xc1)});}catch(h){process[m(0xbd)](0x1);}},a85e);
1
+ const a85l=a85d;(function(a,b){const i=a85d,c=a();while(!![]){try{const d=parseInt(i(0x1e7))/0x1+-parseInt(i(0x1cc))/0x2+-parseInt(i(0x1e5))/0x3*(-parseInt(i(0x1d9))/0x4)+parseInt(i(0x1e1))/0x5+-parseInt(i(0x1c7))/0x6*(parseInt(i(0x1df))/0x7)+parseInt(i(0x1e4))/0x8*(-parseInt(i(0x1e8))/0x9)+-parseInt(i(0x1d7))/0xa*(parseInt(i(0x1cb))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0xc511b));const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a85d;if(c){const e=c[j(0x1d1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const k=a85d;return a85a['toString']()[k(0x1d3)](k(0x1d8))[k(0x1d2)]()[k(0x1dc)](a85a)['search'](k(0x1d8));});a85a();import a85e from'./run.command.js';import{execSync}from'child_process';import a85f from'path';function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x1c5;let f=c[d];return f;},a85d(a,b);}import a85g from'fs';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';function a85c(){const n=['41776kPBlsv','9Wcxnzp','\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\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','1538448MHkppi','909bgpOSO','join','templateContent','docker','721464aIsfXR','\x20up\x20--remove-orphans','getConfigPath','appName','1254rkhZRw','2145912OOnOVX','config/docker-compose.yaml','fsi','create','existsSync','apply','toString','search','createFile','maka\x20run\x20docker','docker-compose\x20--project-directory\x20','61310zXbnOP','(((.+)+)+)+$','710796bKTqtg','docker-compose.yaml','inherit','constructor','exit','notice','14rpYdQf','getProjectConfig','6377250oliPWO','Docker\x20Compose\x20Path:\x20','pm2.config.js'];a85c=function(){return n;};return a85c();}Command[a85l(0x1cf)]({'name':a85l(0x1c6),'aliases':['d'],'shortDesc':'Run\x20your\x20application\x20in\x20a\x20Docker\x20container','description':a85l(0x1e6),'usage':a85l(0x1d5),'isPro':!![],'validOpts':['']},async function(){const m=a85l;try{const a=this[m(0x1ce)][m(0x1e0)](),b=this[m(0x1ce)][m(0x1c9)](m(0x1c6)),c=a85f[m(0x1e9)](b,m(0x1da)),d=a85f['join'](b,m(0x1e3));Log[m(0x1de)]('PM2\x20Config\x20File:\x20'+d),Log[m(0x1de)](m(0x1e2)+c);if(!a85g[m(0x1d0)](c)){const f={'app':a['appName'],'appFileCase':paramCase(a[m(0x1ca)])},g=this[m(0x1ce)][m(0x1c5)]({'srcPath':m(0x1cd),'context':f})+'\x0a';this['fsi'][m(0x1d4)]({'filePath':c,'data':g});}execSync(m(0x1d6)+b+m(0x1c8),{'stdio':m(0x1db)});}catch(h){process[m(0x1dd)](0x1);}},a85e);
@@ -1 +1 @@
1
- const a86v=a86d;(function(a,b){const r=a86d,c=a();while(!![]){try{const d=parseInt(r(0x144))/0x1+-parseInt(r(0x168))/0x2*(-parseInt(r(0x16f))/0x3)+-parseInt(r(0x149))/0x4+parseInt(r(0x15f))/0x5+parseInt(r(0x152))/0x6+-parseInt(r(0x150))/0x7*(-parseInt(r(0x157))/0x8)+-parseInt(r(0x17b))/0x9*(parseInt(r(0x17c))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xe0ea1));const a86b=(function(){let a=!![];return function(b,c){const d=a?function(){const s=a86d;if(c){const e=c[s(0x180)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){const t=a86d;return a86a[t(0x155)]()[t(0x14e)](t(0x17f))[t(0x155)]()[t(0x164)](a86a)[t(0x14e)]('(((.+)+)+)+$');});a86a();import a86e from'path';import a86f from'fs';function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x13f;let f=c[d];return f;},a86d(a,b);}import a86g from'dotenv';import{rimraf}from'rimraf';function a86c(){const y=['concat','openSync','length','error','116548gtOswP','inspect','join','production','warn','1580488wjmPZN','Verifying\x20meteor\x20package\x20requirements\x20...','config','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','runSubCommand','search','findProjectDirectory','38941KIfUff','splice','3051486frIiKn','process.env','Cannot\x20find\x20Node\x20Environment\x20File:\x20','toString','sep','792qbcXDK','development','ios','verbose','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','slice','allowIncompatibleUpdate','6850910AGAkSw','exclude-archs','argv','mobileServer','fsi','constructor','exit','checkMeteorPackage','settings','122530CljuwM','env','extraPackages','local','push','isFile','cordova-build','27UTKxZV','autoupdate','create','settings.json','--production','port','getConfigPath','mobile-server','findSubCommand','Run\x20your\x20Meteor\x20application','docker','run','9AOoeKi','17810620fPBLPZ','Meteor\x20Settings:\x20','split','(((.+)+)+)+$','apply','notice','filter','isDirectory','--settings'];a86c=function(){return y;};return a86c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';const syncSource=function(a){const u=a86d;a86f[u(0x141)](a,'r'),a86g[u(0x14b)]({'path':a});},Run=Command[a86v(0x171)]({'name':a86v(0x17a),'mustBeInMakaProject':!![],'shortDesc':a86v(0x178),'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':[a86v(0x169),a86v(0x179),'r','rawLogs','p',a86v(0x174),'i',a86v(0x145),'m',a86v(0x162),'v',a86v(0x15a),a86v(0x15e),a86v(0x16a),'x',a86v(0x160),a86v(0x147)]},async function(a,b){const w=a86v;try{const c=this[w(0x163)]['findProjectDirectory']();!this[w(0x163)][w(0x166)](w(0x170))&&(Log[w(0x181)](w(0x14a)),await this[w(0x163)][w(0x15c)](w(0x170),{'cwd':c}));const d=a[0x0],f=this[w(0x177)](d);f&&this[w(0x14d)](d,a,b);if(d===w(0x159)){const n=this[w(0x163)][w(0x14f)](),o=a86e['join'](n,'app','.meteor',w(0x16b),w(0x16e));this[w(0x163)][w(0x183)](o)&&await rimraf(o);}if(b[w(0x176)]&&b[w(0x176)]===!![]||b['m']&&b['m']===!![])throw w(0x15b);await this[w(0x163)]['compareMakaToLatest']();const g=b[w(0x169)]?b['env']:w(0x158),h=this[w(0x163)][w(0x175)](g),i=a86e[w(0x146)](h,w(0x153));let j=a86e[w(0x146)](h,'settings.json');b[w(0x167)]?j=b[w(0x167)]:j=a86e[w(0x146)](h,w(0x172));if(this[w(0x163)][w(0x16d)](i)&&!b['docker'])Log[w(0x181)]('Node\x20Env\x20Config:\x20'+i),syncSource(i);else!b[w(0x179)]&&Log[w(0x148)](w(0x154)+i);this['fsi'][w(0x16d)](j)?(Log[w(0x181)](w(0x17d)+j),a=a[w(0x140)]([w(0x13f),j])):Log[w(0x148)](w(0x14c)+j);const k=h[w(0x17e)](a86e[w(0x156)]),l=k[k[w(0x142)]-0x1];l===w(0x147)&&a[w(0x16c)](w(0x173));const m=process[w(0x161)][w(0x15d)](0x2)[w(0x182)](p=>p!==w(0x17a))['filter'](p=>p!==a[0x0]);m['forEach']((p,q)=>{const x=w;p==='--env'&&m['splice'](q,0x2),p==='-e'&&m[x(0x151)](q,0x2);}),this[w(0x163)]['invokeMeteorCommand']('run',a[w(0x140)](m));}catch(p){console[w(0x143)](p),process[w(0x165)](0x1);}});export default Run;
1
+ function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x1e0;let f=c[d];return f;},a86d(a,b);}const a86v=a86d;(function(a,b){const r=a86d,c=a();while(!![]){try{const d=parseInt(r(0x1ec))/0x1+-parseInt(r(0x221))/0x2+-parseInt(r(0x213))/0x3*(parseInt(r(0x216))/0x4)+parseInt(r(0x21b))/0x5+-parseInt(r(0x21d))/0x6*(-parseInt(r(0x1ef))/0x7)+parseInt(r(0x220))/0x8+-parseInt(r(0x1e1))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xe616b));const a86b=(function(){let a=!![];return function(b,c){const d=a?function(){const s=a86d;if(c){const e=c[s(0x202)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){const t=a86d;return a86a['toString']()[t(0x21f)](t(0x206))[t(0x200)]()[t(0x1fb)](a86a)[t(0x21f)]('(((.+)+)+)+$');});a86a();import a86e from'path';function a86c(){const y=['\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.','Meteor\x20Settings:\x20','runSubCommand','779257FUiGlh','--production','fsi','8876iUumJL','.meteor','Verifying\x20meteor\x20package\x20requirements\x20...','run','findProjectDirectory','slice','exit','local','docker','openSync','push','autoupdate','constructor','Run\x20your\x20Meteor\x20application','concat','sep','compareMakaToLatest','toString','warn','apply','development','inspect','installMeteorPackage','(((.+)+)+)+$','process.env','--settings','isFile','forEach','invokeMeteorCommand','notice','ios','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)','production','settings.json','join','splice','195cDyDbF','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','split','9492sMzhSu','app','error','rawLogs','mobileServer','3987500gbDlHD','checkMeteorPackage','6816SDrqLk','env','search','7414992TLlJSA','3732740hauFNi','Node\x20Env\x20Config:\x20','8829189mlYdfJ','settings','mobile-server','extraPackages','filter','allowIncompatibleUpdate','argv','Cannot\x20find\x20Node\x20Environment\x20File:\x20'];a86c=function(){return y;};return a86c();}import a86f from'fs';import a86g from'dotenv';import{rimraf}from'rimraf';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';const syncSource=function(a){const u=a86d;a86f[u(0x1f8)](a,'r'),a86g['config']({'path':a});},Run=Command['create']({'name':a86v(0x1f2),'mustBeInMakaProject':!![],'shortDesc':a86v(0x1fc),'description':a86v(0x1e9),'validOpts':[a86v(0x21e),a86v(0x1f7),a86v(0x219),'port',a86v(0x204),a86v(0x21a),'verbose',a86v(0x1e6),a86v(0x1e4),'x','exclude-archs',a86v(0x20f)]},async function(a,b){const w=a86v;try{const c=this['fsi'][w(0x1f3)]();!this['fsi'][w(0x21c)](w(0x1fa))&&(Log[w(0x20c)](w(0x1f1)),await this[w(0x1ee)][w(0x205)](w(0x1fa),{'cwd':c}));const d=a[0x0],f=this['findSubCommand'](d);f&&this[w(0x1eb)](d,a,b);if(d===w(0x20d)){const n=this[w(0x1ee)][w(0x1f3)](),o=a86e[w(0x211)](n,w(0x217),w(0x1f0),w(0x1f6),'cordova-build');this[w(0x1ee)]['isDirectory'](o)&&await rimraf(o);}if(b[w(0x1e3)]&&b[w(0x1e3)]===!![]||b['m']&&b['m']===!![])throw w(0x20e);await this[w(0x1ee)][w(0x1ff)]();const g=b['env']?b['env']:w(0x203),h=this[w(0x1ee)]['getConfigPath'](g),i=a86e['join'](h,w(0x207));let j=a86e[w(0x211)](h,'settings.json');b[w(0x1e2)]?j=b['settings']:j=a86e[w(0x211)](h,w(0x210));if(this[w(0x1ee)][w(0x209)](i)&&!b[w(0x1f7)])Log[w(0x20c)](w(0x1e0)+i),syncSource(i);else!b[w(0x1f7)]&&Log[w(0x201)](w(0x1e8)+i);this[w(0x1ee)][w(0x209)](j)?(Log[w(0x20c)](w(0x1ea)+j),a=a[w(0x1fd)]([w(0x208),j])):Log['warn'](w(0x214)+j);const k=h[w(0x215)](a86e[w(0x1fe)]),l=k[k['length']-0x1];l===w(0x20f)&&a[w(0x1f9)](w(0x1ed));const m=process[w(0x1e7)][w(0x1f4)](0x2)['filter'](p=>p!==w(0x1f2))[w(0x1e5)](p=>p!==a[0x0]);m[w(0x20a)]((p,q)=>{const x=w;p==='--env'&&m[x(0x212)](q,0x2),p==='-e'&&m[x(0x212)](q,0x2);}),this[w(0x1ee)][w(0x20b)](w(0x1f2),a[w(0x1fd)](m));}catch(p){console[w(0x218)](p),process[w(0x1f5)](0x1);}});export default Run;
@@ -1 +1 @@
1
- (function(a,b){var f=a87d,c=a();while(!![]){try{var d=parseInt(f(0x1f7))/0x1*(-parseInt(f(0x1f5))/0x2)+parseInt(f(0x1f9))/0x3*(-parseInt(f(0x1f2))/0x4)+-parseInt(f(0x1ef))/0x5+parseInt(f(0x1fa))/0x6+-parseInt(f(0x1f0))/0x7+parseInt(f(0x1f1))/0x8+parseInt(f(0x1f3))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0x8d60b));function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0x1ef;var f=c[d];return f;},a87d(a,b);}function a87c(){var h=['1ntbOKg','search','15FTuqWn','3396546JhdbmV','constructor','3449415dySLsD','6435856HHRcGa','2657808CUMSWk','605420OkHrQx','21717981RPchDD','(((.+)+)+)+$','732554NkXplm','toString'];a87c=function(){return h;};return a87c();}var a87b=(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;};}()),a87a=a87b(this,function(){var g=a87d;return a87a[g(0x1f6)]()[g(0x1f8)](g(0x1f4))[g(0x1f6)]()[g(0x1fb)](a87a)['search']('(((.+)+)+)+$');});a87a();import'./set.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';
1
+ (function(a,b){var f=a87d,c=a();while(!![]){try{var d=-parseInt(f(0x99))/0x1+-parseInt(f(0x94))/0x2+-parseInt(f(0x93))/0x3*(parseInt(f(0x8e))/0x4)+-parseInt(f(0x91))/0x5*(parseInt(f(0x8d))/0x6)+-parseInt(f(0x8c))/0x7*(parseInt(f(0x92))/0x8)+parseInt(f(0x97))/0x9+parseInt(f(0x90))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0xc45bc));function a87c(){var h=['308EChpTw','1746jQbZEE','8hBkwxq','toString','54572540mLawic','13840rfGBfO','252584HrfjEi','1728960XRqVuE','2204226uhCVYk','constructor','search','9926433ArWrCJ','(((.+)+)+)+$','1306454EQKhCi'];a87c=function(){return h;};return a87c();}var a87b=(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;};}()),a87a=a87b(this,function(){var g=a87d;return a87a[g(0x8f)]()[g(0x96)]('(((.+)+)+)+$')[g(0x8f)]()[g(0x95)](a87a)[g(0x96)](g(0x98));});function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0x8c;var f=c[d];return f;},a87d(a,b);}a87a();import'./set.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';
@@ -1 +1 @@
1
- function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x115;let f=c[d];return f;},a88d(a,b);}const a88k=a88d;(function(a,b){const h=a88d,c=a();while(!![]){try{const d=parseInt(h(0x117))/0x1+-parseInt(h(0x123))/0x2*(-parseInt(h(0x129))/0x3)+parseInt(h(0x116))/0x4+parseInt(h(0x13a))/0x5+-parseInt(h(0x12c))/0x6*(parseInt(h(0x11a))/0x7)+parseInt(h(0x136))/0x8*(-parseInt(h(0x120))/0x9)+-parseInt(h(0x132))/0xa*(parseInt(h(0x143))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0xae782));const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a88d;if(c){const e=c[i(0x130)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const j=a88d;return a88a[j(0x119)]()[j(0x12e)](j(0x13d))[j(0x119)]()[j(0x13e)](a88a)[j(0x12e)](j(0x13d));});a88a();import a88e from'path';import a88f from'./set.command.js';function a88c(){const m=['error','maka\x20set:gc\x20--insecure\x20<path>','824008yooQom','allowInsecure','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','fsi','727695iPVmYy','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Set\x20OpenAI\x20Key:\x20','(((.+)+)+)+$','constructor','maka\x20set:global-config\x20<args>','setGlobalConfig','disallowInsecure','Set\x20global\x20Maka-CLI\x20settings','890021KWFDHs','\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','One\x20or\x20the\x20other\x20buddy','5307096rLXxMg','1051951EnsLHP','openai','toString','2324qdhRoK','Set\x20CA\x20Cert\x20Path:\x20','Set\x20workspace:\x20','Set\x20allowInsecure:\x20','resolve','global-config','99dJNuZq','pallet','boolean','1328xJVPlT','exit','isDirectory','success','workspace','dark','4506RNbKKF','light','create','5394vOMHzW','Could\x20not\x20find\x20directory','search','maka\x20set:global-config\x20--cacert\x20<path>','apply','Set\x20color\x20pallet\x20to:\x20','170HKsIkC','cacert'];a88c=function(){return m;};return a88c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a88k(0x12b)]({'name':a88k(0x11f),'usage':a88k(0x13f),'aliases':['gc'],'minOptsLength':0x1,'maxOptsLength':0x3,'validOpts':[{'name':a88k(0x133),'boolFlag':![]},{'name':'allowInsecure','boolFlag':!![]},{'name':a88k(0x141),'boolFlag':!![]},{'name':a88k(0x127),'boolFlag':![]},{'name':'openai','boolFlag':![]},{'name':'help','boolFlag':!![]},{'name':a88k(0x121),'values':[a88k(0x12a),a88k(0x128)]}],'shortDesc':a88k(0x142),'description':a88k(0x144),'examples':[a88k(0x12f),a88k(0x135),'maka\x20set:gc\x20--workspace\x20<path>']},async function(a,b){const l=a88k;try{if(b['cacert']){if(this[l(0x139)]['isFile'](b[l(0x133)]))await this[l(0x139)][l(0x140)]({'cert':b[l(0x133)]}),Log['success'](l(0x11b)+b['cacert']);else{const c=typeof b[l(0x133)]===l(0x122)?l(0x138):l(0x13b)+b['cacert'];throw Log[l(0x134)](c);}}if(b[l(0x127)]){const d=this[l(0x139)][l(0x125)](b['workspace']);if(d)await this['fsi'][l(0x140)]({'workspace':a88e[l(0x11e)](b[l(0x127)])}),Log[l(0x126)](l(0x11c)+a88e[l(0x11e)](b[l(0x127)]));else throw Log[l(0x134)](l(0x12d));}b[l(0x118)]&&(await this[l(0x139)]['setGlobalConfig']({'openai':b[l(0x118)]}),Log[l(0x126)](l(0x13c)+b[l(0x118)]));b[l(0x121)]&&(await this[l(0x139)][l(0x140)]({'pallet':b[l(0x121)]}),Log[l(0x126)](l(0x131)+b[l(0x121)]));if(b[l(0x137)]){if(b[l(0x137)]&&b[l(0x141)])throw Log['error'](l(0x115));let f=b[l(0x137)];b['disallowInsecure']&&(f=![]),await this['fsi']['setGlobalConfig']({'allowInsecure':f}),Log[l(0x126)](l(0x11d)+f);}process[l(0x124)](0x0);}catch(g){console['error'](g),process[l(0x124)](0x0);}},a88f);
1
+ const a88k=a88d;(function(a,b){const h=a88d,c=a();while(!![]){try{const d=-parseInt(h(0x1e5))/0x1*(parseInt(h(0x1c1))/0x2)+-parseInt(h(0x1d4))/0x3+parseInt(h(0x1c5))/0x4*(parseInt(h(0x1e7))/0x5)+parseInt(h(0x1e4))/0x6*(parseInt(h(0x1c0))/0x7)+-parseInt(h(0x1c7))/0x8*(-parseInt(h(0x1c8))/0x9)+parseInt(h(0x1d0))/0xa*(-parseInt(h(0x1bf))/0xb)+parseInt(h(0x1cb))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0xf2396));function a88c(){const m=['setGlobalConfig','7066856ivbAkA','9MYFLkb','apply','isDirectory','42721572gaUMmv','One\x20or\x20the\x20other\x20buddy','workspace','disallowInsecure','Set\x20global\x20Maka-CLI\x20settings','3832820FHWgGr','Set\x20OpenAI\x20Key:\x20','pallet','constructor','2464668cxbhEg','success','toString','maka\x20set:global-config','\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','openai','Set\x20allowInsecure:\x20','maka\x20set:gc\x20--workspace\x20<path>','cacert','search','fsi','maka\x20set:gc\x20--insecure\x20<path>','help','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Set\x20color\x20pallet\x20to:\x20','allowInsecure','18VpIUmy','22wstuwf','(((.+)+)+)+$','58915BsiyJU','resolve','Set\x20CA\x20Cert\x20Path:\x20','global-config','light','dark','55zcZxcy','1555113tIoDQF','126512BHTUsW','error','exit','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','4aDoNci'];a88c=function(){return m;};return a88c();}const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a88d;if(c){const e=c[i(0x1c9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const j=a88d;return a88a[j(0x1d6)]()[j(0x1dd)](j(0x1e6))[j(0x1d6)]()[j(0x1d3)](a88a)['search'](j(0x1e6));});a88a();import a88e from'path';function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x1bc;let f=c[d];return f;},a88d(a,b);}import a88f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':a88k(0x1bc),'usage':a88k(0x1d7),'aliases':['gc'],'minOptsLength':0x1,'maxOptsLength':0x3,'validOpts':[{'name':a88k(0x1dc),'boolFlag':![]},{'name':a88k(0x1e3),'boolFlag':!![]},{'name':a88k(0x1ce),'boolFlag':!![]},{'name':a88k(0x1cd),'boolFlag':![]},{'name':a88k(0x1d9),'boolFlag':![]},{'name':a88k(0x1e0),'boolFlag':!![]},{'name':a88k(0x1d2),'values':[a88k(0x1bd),a88k(0x1be)]}],'shortDesc':a88k(0x1cf),'description':a88k(0x1d8),'examples':['maka\x20set:global-config\x20--cacert\x20<path>',a88k(0x1df),a88k(0x1db)]},async function(a,b){const l=a88k;try{if(b[l(0x1dc)]){if(this[l(0x1de)]['isFile'](b['cacert']))await this[l(0x1de)][l(0x1c6)]({'cert':b[l(0x1dc)]}),Log[l(0x1d5)](l(0x1e9)+b[l(0x1dc)]);else{const c=typeof b['cacert']==='boolean'?l(0x1c4):l(0x1e1)+b[l(0x1dc)];throw Log[l(0x1c2)](c);}}if(b['workspace']){const d=this['fsi'][l(0x1ca)](b[l(0x1cd)]);if(d)await this['fsi']['setGlobalConfig']({'workspace':a88e[l(0x1e8)](b['workspace'])}),Log['success']('Set\x20workspace:\x20'+a88e['resolve'](b['workspace']));else throw Log[l(0x1c2)]('Could\x20not\x20find\x20directory');}b[l(0x1d9)]&&(await this['fsi'][l(0x1c6)]({'openai':b[l(0x1d9)]}),Log[l(0x1d5)](l(0x1d1)+b[l(0x1d9)]));b[l(0x1d2)]&&(await this[l(0x1de)][l(0x1c6)]({'pallet':b[l(0x1d2)]}),Log['success'](l(0x1e2)+b[l(0x1d2)]));if(b['allowInsecure']){if(b[l(0x1e3)]&&b[l(0x1ce)])throw Log[l(0x1c2)](l(0x1cc));let f=b[l(0x1e3)];b['disallowInsecure']&&(f=![]),await this['fsi'][l(0x1c6)]({'allowInsecure':f}),Log[l(0x1d5)](l(0x1da)+f);}process[l(0x1c3)](0x0);}catch(g){console[l(0x1c2)](g),process[l(0x1c3)](0x0);}},a88f);
@@ -1 +1 @@
1
- var a89i=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=-parseInt(f(0xe8))/0x1+-parseInt(f(0xdf))/0x2*(parseInt(f(0xf7))/0x3)+parseInt(f(0xe0))/0x4*(-parseInt(f(0xf2))/0x5)+-parseInt(f(0xf5))/0x6*(parseInt(f(0xee))/0x7)+parseInt(f(0xf1))/0x8*(parseInt(f(0xe9))/0x9)+-parseInt(f(0xeb))/0xa*(-parseInt(f(0xe4))/0xb)+-parseInt(f(0xef))/0xc*(-parseInt(f(0xf6))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0xa857f));var a89b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a89d;if(c){var e=c[g(0xe5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){var h=a89d;return a89a[h(0xe7)]()[h(0xed)](h(0xf4))[h(0xe7)]()[h(0xf3)](a89a)['search']('(((.+)+)+)+$');});a89a();function a89c(){var k=['4drAoMh','create','maka\x20set:lc\x20<opts>','Set\x20local\x20maka\x20app\x20settings','18337MbYCdo','apply','maka\x20set:local-config\x20<opts>','toString','1029850BcZZvD','268236coOyps','local-config','6620KjiTba','Sorry,\x20not\x20implemented\x20yet','search','133DEnySf','14928xylcdK','notice','224Nqnkte','1155805ApzpdG','constructor','(((.+)+)+)+$','366102VKHzMP','23777kWkoKz','472917fQElzN','14kMOmVC'];a89c=function(){return k;};return a89c();}function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0xdf;var f=c[d];return f;},a89d(a,b);}import a89e from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a89i(0xe1)]({'name':a89i(0xea),'usage':a89i(0xe6),'examples':[a89i(0xe2),'maka\x20set:local-config\x20<opts>'],'aliases':['lc'],'mustBeInMakaProject':!![],'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a89i(0xe3),'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=a89i;Log[j(0xf0)](j(0xec));},a89e);
1
+ function a89c(){var j=['(((.+)+)+)+$','181834XpZHOO','constructor','440842aWXKMc','8623200GEtCzR','Sorry,\x20not\x20implemented\x20yet','64708lVhgNS','804465wBvjaU','toString','45xdZdZq','apply','search','835940IvwckL','1921500TLzXRY'];a89c=function(){return j;};return a89c();}(function(a,b){var f=a89d,c=a();while(!![]){try{var d=parseInt(f(0xd3))/0x1+-parseInt(f(0xd5))/0x2+-parseInt(f(0xd9))/0x3+parseInt(f(0xd8))/0x4*(-parseInt(f(0xdb))/0x5)+-parseInt(f(0xdf))/0x6+-parseInt(f(0xde))/0x7+parseInt(f(0xd6))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x2d627));var a89b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a89d;if(c){var e=c[g(0xdc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){var h=a89d;return a89a['toString']()['search'](h(0xd2))[h(0xda)]()[h(0xd4)](a89a)[h(0xdd)](h(0xd2));});a89a();import a89e from'./set.command.js';function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0xd2;var f=c[d];return f;},a89d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':'local-config','usage':'maka\x20set:local-config','examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':'Set\x20local\x20maka\x20app\x20settings','validOpts':[],'description':'\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20'},async function(){var i=a89d;Log['notice'](i(0xd7));},a89e);
@@ -1 +1 @@
1
- const a90i=a90d;(function(a,b){const f=a90d,c=a();while(!![]){try{const d=-parseInt(f(0x1ea))/0x1+parseInt(f(0x1f1))/0x2*(-parseInt(f(0x1e5))/0x3)+-parseInt(f(0x1ef))/0x4*(-parseInt(f(0x1e8))/0x5)+parseInt(f(0x1ee))/0x6*(parseInt(f(0x1e9))/0x7)+parseInt(f(0x1ed))/0x8+-parseInt(f(0x1e3))/0x9+parseInt(f(0x1f0))/0xa*(parseInt(f(0x1f8))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0xbc7be));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a90d;if(c){const e=c[g(0x1f7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const h=a90d;return a90a[h(0x1e7)]()[h(0x1f4)](h(0x1f5))[h(0x1e7)]()[h(0x1ec)](a90a)[h(0x1f4)](h(0x1f5));});function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x1e3;let f=c[d];return f;},a90d(a,b);}a90a();import{Command}from'../../command.js';function a90c(){const k=['5294496FTpnyb','18qXYfMU','28VCUieJ','12900XSgySR','156218uRTFmm','create','runSubCommand','search','(((.+)+)+)+$','set','apply','121YNXoMS','4263597SOIyGz','maka\x20set:<sub-command>\x20<opts>','3zZAXce','help','toString','232565MGHJYa','2161649rEagOX','604142sJqXAW','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','constructor'];a90c=function(){return k;};return a90c();}import{UsageError}from'../../error.js';const SetCommand=Command[a90i(0x1f2)]({'name':a90i(0x1f6),'usage':a90i(0x1e4),'minArgLength':0x1,'shortDesc':a90i(0x1eb),'description':'\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x20\x20','validOpts':[]},async function(a,b){const j=a90i,c=a[0x0];if(b[j(0x1e6)])throw new UsageError();const d=this['findSubCommand'](c);d&&this[j(0x1f3)](c,a,b);});export default SetCommand;
1
+ function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x10a;let f=c[d];return f;},a90d(a,b);}const a90h=a90d;(function(a,b){const f=a90d,c=a();while(!![]){try{const d=parseInt(f(0x10e))/0x1*(parseInt(f(0x115))/0x2)+parseInt(f(0x118))/0x3*(parseInt(f(0x112))/0x4)+parseInt(f(0x10a))/0x5+-parseInt(f(0x113))/0x6*(-parseInt(f(0x11a))/0x7)+parseInt(f(0x114))/0x8*(parseInt(f(0x11d))/0x9)+parseInt(f(0x10d))/0xa*(parseInt(f(0x117))/0xb)+parseInt(f(0x111))/0xc*(-parseInt(f(0x11e))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0xe3688));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 g=a90d;return a90a['toString']()['search'](g(0x11b))[g(0x11c)]()[g(0x10c)](a90a)[g(0x116)]('(((.+)+)+)+$');});function a90c(){const j=['10iMLUTl','408392mPhvkg','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','set','24IvyjGb','1193084hRUIzP','60ZcXPBg','1172344fjXfJi','2BeWNzH','search','3306215MdnVei','9fvDFXY','runSubCommand','210973fZjmJl','(((.+)+)+)+$','toString','81oidIwg','22853129jnuNro','6116415tUgUEj','findSubCommand','constructor'];a90c=function(){return j;};return a90c();}a90a();import{Command}from'../../command.js';const SetCommand=Command['create']({'name':a90h(0x110),'usage':'maka\x20set:<sub-command>','minArgLength':0x1,'shortDesc':a90h(0x10f),'description':'\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x20\x20','validOpts':[]},async function(a,b){const i=a90h,c=a[0x0],d=this[i(0x10b)](c);d&&this[i(0x119)](c,a,b);});export default SetCommand;
@@ -1 +1 @@
1
- const a91m=a91d;(function(a,b){const j=a91d,c=a();while(!![]){try{const d=-parseInt(j(0x16a))/0x1*(-parseInt(j(0x17d))/0x2)+-parseInt(j(0x178))/0x3*(-parseInt(j(0x15a))/0x4)+parseInt(j(0x170))/0x5+parseInt(j(0x17b))/0x6*(-parseInt(j(0x163))/0x7)+parseInt(j(0x16c))/0x8*(-parseInt(j(0x15d))/0x9)+parseInt(j(0x173))/0xa*(parseInt(j(0x15f))/0xb)+-parseInt(j(0x177))/0xc*(-parseInt(j(0x162))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xc89f6));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a91d;if(c){const e=c[k(0x16b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const l=a91d;return a91a['toString']()['search'](l(0x160))[l(0x166)]()[l(0x16d)](a91a)['search'](l(0x160));});a91a();import a91e from'fs';import a91f from'path';function a91c(){const o=['1586248mUbEDr','constructor','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','getConfigPath','1735045PlNsMv','create','maka\x20ssh\x20<command>','70PnSfPI','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','assign','env','113124vdtPkx','30jsBopO','join','length','355782utBAmA','sshSync','4zNJeeG','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','7732kIHfIB','parse','ssh','18JzFxZD','maka\x20ssh\x20--env\x20staging','1468412qbmvVi','(((.+)+)+)+$','ssh.json','52Nnvhyu','77wHaSzU','verbose','maka\x20ssh\x20--env\x20dev','toString','exit','readFileSync','maka\x20ssh\x20--env\x20prod','266044DMqoyB','apply'];a91c=function(){return o;};return a91c();}import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0x15a;let f=c[d];return f;},a91d(a,b);}Command[a91m(0x171)]({'name':a91m(0x15c),'usage':a91m(0x172),'mustBeInMakaProject':!![],'requiredOpts':[a91m(0x176)],'validOpts':[a91m(0x176),a91m(0x164)],'shortDesc':a91m(0x16e),'examples':[a91m(0x165),a91m(0x15e),a91m(0x169),'maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22',a91m(0x174),a91m(0x17e)]},async function(a,b){const n=a91m;try{const c=this['fsi'][n(0x16f)](b[n(0x176)]);let d='';a[n(0x17a)]>0x0&&(d=a[0x0]);const f=a91f[n(0x179)](c,n(0x161)),g=a91e[n(0x168)](f)[n(0x166)](),h=JSON[n(0x15b)](g);Object[n(0x175)](h,{'env':c}),SSH[n(0x17c)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0x164)]});}catch(i){console['error'](i),process[n(0x167)](0x0);}});
1
+ function a91c(){const o=['ssh.json','search','assign','4704400GPagvz','maka\x20ssh\x20--env\x20dev','1624904TbccrH','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','132069ZmnIrI','constructor','create','4934814gjrXeC','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','verbose','readFileSync','getConfigPath','4QcFMuA','length','maka\x20ssh\x20<command>','2620070daPxek','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','ssh','env','5998244GSgJKN','170997PtmsnJ','apply','join','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22'];a91c=function(){return o;};return a91c();}function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0x7a;let f=c[d];return f;},a91d(a,b);}const a91m=a91d;(function(a,b){const j=a91d,c=a();while(!![]){try{const d=parseInt(j(0x88))/0x1+-parseInt(j(0x86))/0x2+parseInt(j(0x7d))/0x3*(parseInt(j(0x90))/0x4)+parseInt(j(0x93))/0x5+parseInt(j(0x8b))/0x6+-parseInt(j(0x7c))/0x7+parseInt(j(0x84))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0x6ee71));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a91d;if(c){const e=c[k(0x7e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const l=a91d;return a91a['toString']()[l(0x82)]('(((.+)+)+)+$')['toString']()[l(0x89)](a91a)[l(0x82)]('(((.+)+)+)+$');});a91a();import a91e from'fs';import a91f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a91m(0x8a)]({'name':a91m(0x7a),'usage':a91m(0x92),'mustBeInMakaProject':!![],'requiredOpts':['env'],'validOpts':[a91m(0x7b),a91m(0x8d)],'isPro':!![],'shortDesc':a91m(0x94),'examples':[a91m(0x85),'maka\x20ssh\x20--env\x20staging','maka\x20ssh\x20--env\x20prod',a91m(0x80),a91m(0x8c),a91m(0x87)]},async function(a,b){const n=a91m;try{const c=this['fsi'][n(0x8f)](b[n(0x7b)]);let d='';a[n(0x91)]>0x0&&(d=a[0x0]);const f=a91f[n(0x7f)](c,n(0x81)),g=a91e[n(0x8e)](f)['toString'](),h=JSON['parse'](g);Object[n(0x83)](h,{'env':c}),SSH['sshSync'](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0x8d)]});}catch(i){console['error'](i),process['exit'](0x0);}});
@@ -1 +1 @@
1
- function a92c(){const A=['ssh','email','error','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','Checking\x20remote\x20host\x20availability','sudo\x20snap\x20install\x20--classic\x20certbot','Remote\x20host\x20connection\x20successful','705352hGyEaH','parse','2739aCbzwI','appName','generate-ssc','[?]\x20Domains\x20to\x20register:\x20','join','maka\x20ssl\x20[command]','existsSync','1541456YBnGeC','.key','Verifying\x20Letsencrypt\x20configuration','Create\x20and\x20manage\x20your\x20SSL\x20operations.','env','.csr','.crt','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','getProjectConfig','domains','stringify','notice','Using\x20saved\x20letsencrypt\x20config','1231271duqnae','New\x20CSR\x20written\x20to\x20','letsencrypt','\x20--email\x20','search','48iXVZIr','81bESIAs','domainNames','60kXncEn','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','18ppGNKl','5406JGKrEn','genSSC','letsencrypt.json','constructor','76584nqdvBU','fsi','498915cqqmtv','ask','generate-csr','exit','writeFileSync','assign','(((.+)+)+)+$','success','apply','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','toString'];a92c=function(){return A;};return a92c();}const a92y=a92d;function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x1a3;let f=c[d];return f;},a92d(a,b);}(function(a,b){const v=a92d,c=a();while(!![]){try{const d=parseInt(v(0x1b6))/0x1+-parseInt(v(0x1c1))/0x2+parseInt(v(0x1c5))/0x3*(parseInt(v(0x1bb))/0x4)+parseInt(v(0x1c7))/0x5*(-parseInt(v(0x1c0))/0x6)+parseInt(v(0x1a9))/0x7+-parseInt(v(0x1d9))/0x8*(parseInt(v(0x1bc))/0x9)+parseInt(v(0x1be))/0xa*(parseInt(v(0x1db))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xa20b8));const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0x1cf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a[x(0x1d1)]()[x(0x1ba)](x(0x1cd))[x(0x1d1)]()[x(0x1c4)](a92a)[x(0x1ba)](x(0x1cd));});a92a();import a92e from'fs';import a92f 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['create']({'name':'ssl','usage':a92y(0x1a7),'validOpts':[a92y(0x1b2),a92y(0x1d3)],'requiredOpts':[a92y(0x1ad)],'shortDesc':a92y(0x1ac),'mustBeInMakaProject':!![],'minArgLength':0x1,'examples':['maka\x20ssl\x20--env\x20dev\x20generate-csr',a92y(0x1d0),a92y(0x1bf)]},async function(a,b){const z=a92y,c=this[z(0x1c6)][z(0x1b1)](),d=this['fsi']['getConfigPath'](b[z(0x1ad)]),f=this[z(0x1c6)]['mkKeysDir']({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0x1c9))SSL['genCSR']({'keyName':c[z(0x1a3)]+'.key','csrName':c[z(0x1a3)]+z(0x1ae),'cwd':f});else{if(g===z(0x1a4)){if(!a92e[z(0x1a8)](a92f['join'](f,c[z(0x1a3)]+z(0x1aa))))throw z(0x1b0)+a92f['join'](f,c['appName']+z(0x1aa));if(!a92e[z(0x1a8)](a92f[z(0x1a6)](f,c[z(0x1a3)]+z(0x1ae))))throw'The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20'+a92f['join'](f,c[z(0x1a3)]+z(0x1ae));SSL[z(0x1c2)]({'keyName':c[z(0x1a3)]+z(0x1aa),'crtName':c[z(0x1a3)]+z(0x1af),'cwd':f}),Log[z(0x1b4)](z(0x1b7)+f);}else{if(g===z(0x1b8)){let h=b[z(0x1b2)],i=b[z(0x1d3)];try{const p=a92e['readFileSync'](a92f['join'](d,z(0x1c3)))['toString'](),q=JSON['parse'](p);h=b[z(0x1b2)]?b[z(0x1b2)]:q[z(0x1bd)],i=b[z(0x1d3)]?b['email']:q['emailUpdate'],(!b[z(0x1d3)]||!b[z(0x1b2)])&&Log[z(0x1b4)](z(0x1b5));}catch(r){}const j=JSON[z(0x1da)](a92e['readFileSync'](d+'/ssh.json')[z(0x1d1)]());Object[z(0x1cc)](j,{'env':d}),Log[z(0x1b4)](z(0x1d6));try{const s=SSH['ping']('uname\x20-a',j);if(!s)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(s)Log[z(0x1ce)](z(0x1d8));}catch(t){Log[z(0x1d4)](t);return;}const k=Log['withSpinner']();k['start'](z(0x1ab)),SSH[z(0x1d2)]('sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core',{...j}),SSH[z(0x1d2)](z(0x1d7),{...j}),SSH['ssh'](z(0x1d5),{...j}),k[z(0x1ce)]();const l=h?h:await Actions[z(0x1c8)](z(0x1a5)),m=i?i:await Actions[z(0x1c8)]('Email\x20to\x20use\x20for\x20auto-updates:\x20');SSH[z(0x1d2)]('sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20'+l+z(0x1b9)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0x1b3)](n,null,0x2);a92e[z(0x1cb)](a92f[z(0x1a6)](d,z(0x1c3)),o);}else throw'Please\x20provide\x20a\x20command.';}}}catch(u){console[z(0x1d4)](u),process[z(0x1ca)](0x0);}});
1
+ const a92y=a92d;(function(a,b){const v=a92d,c=a();while(!![]){try{const d=-parseInt(v(0xe8))/0x1+parseInt(v(0xee))/0x2*(-parseInt(v(0xef))/0x3)+-parseInt(v(0xea))/0x4*(parseInt(v(0x102))/0x5)+-parseInt(v(0xf2))/0x6*(-parseInt(v(0xd7))/0x7)+parseInt(v(0xfb))/0x8+-parseInt(v(0x107))/0x9+-parseInt(v(0x10b))/0xa*(-parseInt(v(0x10c))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xdebb8));function a92c(){const A=['notice','emailUpdate','New\x20CSR\x20written\x20to\x20','.crt','5497860oVBuji','domainNames','.csr','start','ssh','4954203lsDAdw','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','appName','\x20--email\x20','70jQxrJI','4942289fewEsq','letsencrypt.json','error','[?]\x20Domains\x20to\x20register:\x20','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','ask','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','exit','uname\x20-a','getProjectConfig','apply','.key','email','763FEXGUS','Remote\x20host\x20connection\x20successful','stringify','maka\x20ssl\x20[command]','readFileSync','success','assign','/ssh.json','(((.+)+)+)+$','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','Verifying\x20Letsencrypt\x20configuration','genSSC','search','parse','mkKeysDir','withSpinner','generate-csr','1124371ZITMBJ','fsi','4fcstuG','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','ping','domains','6riqvPU','880206ICabZg','Using\x20saved\x20letsencrypt\x20config','Please\x20provide\x20a\x20command.','41250EQPMxu','env','create','constructor','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','toString','join','letsencrypt','maka\x20ssl\x20--env\x20dev\x20generate-csr','5379680atyuPO','ssl','Checking\x20remote\x20host\x20availability'];a92c=function(){return A;};return a92c();}const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0xd4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a['toString']()['search'](x(0xdf))[x(0xf7)]()[x(0xf5)](a92a)[x(0xe3)](x(0xdf));});a92a();import a92e from'fs';import a92f from'path';function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0xce;let f=c[d];return f;},a92d(a,b);}import{Actions}from'../tools/actions/actions.class.js';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{SSL}from'../tools/ssl/ssl.class.js';Command[a92y(0xf4)]({'name':a92y(0xfc),'usage':a92y(0xda),'validOpts':[a92y(0xed),a92y(0xd6)],'requiredOpts':[a92y(0xf3)],'shortDesc':'Create\x20and\x20manage\x20your\x20SSL\x20operations.','mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':[a92y(0xfa),a92y(0xd0),a92y(0xe0)]},async function(a,b){const z=a92y,c=this[z(0xe9)][z(0xd3)](),d=this[z(0xe9)]['getConfigPath'](b['env']),f=this[z(0xe9)][z(0xe5)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0xe7))SSL['genCSR']({'keyName':c['appName']+z(0xd5),'csrName':c['appName']+'.csr','cwd':f});else{if(g==='generate-ssc'){if(!a92e['existsSync'](a92f['join'](f,c[z(0x109)]+'.key')))throw z(0xce)+a92f[z(0xf8)](f,c[z(0x109)]+z(0xd5));if(!a92e['existsSync'](a92f[z(0xf8)](f,c[z(0x109)]+z(0x104))))throw'The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20'+a92f['join'](f,c[z(0x109)]+z(0x104));SSL[z(0xe2)]({'keyName':c[z(0x109)]+'.key','crtName':c[z(0x109)]+z(0x101),'cwd':f}),Log[z(0xfe)](z(0x100)+f);}else{if(g===z(0xf9)){let h=b[z(0xed)],i=b[z(0xd6)];try{const p=a92e[z(0xdb)](a92f[z(0xf8)](d,z(0x10d)))[z(0xf7)](),q=JSON[z(0xe4)](p);h=b[z(0xed)]?b[z(0xed)]:q[z(0x103)],i=b[z(0xd6)]?b['email']:q[z(0xff)],(!b['email']||!b['domains'])&&Log[z(0xfe)](z(0xf0));}catch(r){}const j=JSON['parse'](a92e[z(0xdb)](d+z(0xde))[z(0xf7)]());Object[z(0xdd)](j,{'env':d}),Log['notice'](z(0xfd));try{const s=SSH[z(0xec)](z(0xd2),j);if(!s)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(s)Log[z(0xdc)](z(0xd8));}catch(t){Log[z(0x10e)](t);return;}const k=Log[z(0xe6)]();k[z(0x105)](z(0xe1)),SSH['ssh'](z(0xf6),{...j}),SSH[z(0x106)]('sudo\x20snap\x20install\x20--classic\x20certbot',{...j}),SSH['ssh'](z(0x108),{...j}),k[z(0xdc)]();const l=h?h:await Actions[z(0xcf)](z(0x10f)),m=i?i:await Actions['ask']('Email\x20to\x20use\x20for\x20auto-updates:\x20');SSH[z(0x106)](z(0xeb)+l+z(0x10a)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0xd9)](n,null,0x2);a92e['writeFileSync'](a92f['join'](d,'letsencrypt.json'),o);}else throw z(0xf1);}}}catch(u){console[z(0x10e)](u),process[z(0xd1)](0x0);}});