@maka/maka-cli 4.6.21 → 4.6.23

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 (147) hide show
  1. package/bundle/obf/package.json +2 -1
  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/kits/_index.js +1 -1
  108. package/bundle/obf/src/generators/kits/kit.js +1 -1
  109. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  110. package/bundle/obf/src/generators/kits/mui/layout.mui.gen.js +1 -1
  111. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  112. package/bundle/obf/src/generators/layout.js +1 -1
  113. package/bundle/obf/src/generators/maka.gen.js +1 -1
  114. package/bundle/obf/src/generators/methods.js +1 -1
  115. package/bundle/obf/src/generators/package.js +1 -1
  116. package/bundle/obf/src/generators/page.js +1 -1
  117. package/bundle/obf/src/generators/publish.js +1 -1
  118. package/bundle/obf/src/generators/route.js +1 -1
  119. package/bundle/obf/src/generators/service.js +1 -1
  120. package/bundle/obf/src/generators/services/_index.js +1 -1
  121. package/bundle/obf/src/generators/services/openssl.js +1 -1
  122. package/bundle/obf/src/generators/services/translation.js +1 -1
  123. package/bundle/obf/src/maka.js +1 -1
  124. package/bundle/obf/src/templates/react/kit/mui/frame/basic-app-bar.js +32 -0
  125. package/bundle/obf/src/templates/react/kit/mui/frame/basic-app-bar.js.jsx +32 -0
  126. package/bundle/obf/src/templates/react/kit/mui/frame/basic-app-bar.js.ts +0 -0
  127. package/bundle/obf/src/templates/react/kit/mui/frame/basic-app-bar.js.tsx +0 -0
  128. package/bundle/obf/src/tool.js +1 -1
  129. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  130. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  131. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  132. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  133. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  134. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  135. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/https/https.class.js +1 -1
  137. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  138. package/bundle/obf/src/tools/log/log.class.js +1 -1
  139. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  140. package/bundle/obf/src/tools/options/options.class.js +1 -1
  141. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  142. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  143. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  144. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  145. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  146. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  147. package/package.json +2 -1
@@ -1 +1 @@
1
- const a77z=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=-parseInt(w(0x110))/0x1*(parseInt(w(0x112))/0x2)+-parseInt(w(0x114))/0x3*(parseInt(w(0x10a))/0x4)+-parseInt(w(0x101))/0x5+-parseInt(w(0xfb))/0x6*(-parseInt(w(0xf1))/0x7)+parseInt(w(0x11d))/0x8+parseInt(w(0x108))/0x9+-parseInt(w(0x102))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0xd49a9));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a77d;if(c){const e=c[x(0x11c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const y=a77d;return a77a[y(0x10b)]()[y(0x121)](y(0x109))[y(0x10b)]()[y(0x115)](a77a)[y(0x121)](y(0x109));});a77a();import a77e from'node-forge';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0xea;let f=c[d];return f;},a77d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a77c(){const B=['withSpinner','cert','fsi','password','debug','124180YBwLNB','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','isFile','create','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','True','update','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','setGlobalConfig','576FGBrzB','/api/v1/status','success','maka\x20login','Logging\x20into\x20https://','Logging\x20in','4391980afcskk','3483790aeqsiu','https://','env','parse','assign','/api/v1/login','13687857DWrlYj','(((.+)+)+)+$','35972aTaFgq','toString','Preflight\x20Check','start','sha256','failure','4229UjEGnn','MAKA_DEV','464VcRHNF','Using\x20CA\x20Cert\x20','309qgKgSA','constructor','login','get','help','notice','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','error','apply','6248752faZqOx','cacert','post','maka\x20login\x20--email\x20<address>\x20--password\x20<password>','search','ask','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka'];a77c=function(){return B;};return a77c();}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a77z(0x104)][a77z(0x111)]===a77z(0xf7)?'localhost':'www.maka-cli.com';Command[a77z(0xf5)]({'name':a77z(0x116),'validOpts':['email','password',a77z(0x118),a77z(0x11e),a77z(0xf0)],'usage':a77z(0xfe),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77z(0xeb),'examples':[a77z(0xfe),a77z(0x120)]},async function(a,b){const A=a77z,c=Log[A(0xec)]();try{let d='';b[A(0x11e)]&&(this['fsi'][A(0xf4)](b[A(0x11e)])?(d=b[A(0x11e)],Log[A(0x119)](A(0x113)+d)):Log[A(0x11b)](A(0xf2)+d));const f=await this[A(0xee)]['getGlobalConfig']();if(f['cert']){if(this[A(0xee)]['isFile'](f[A(0xed)]))d=f[A(0xed)];else{Log['error'](A(0x11a)+d);return;}}Log['header'](A(0xff)+hostname);const g={'url':A(0x103)+hostname+A(0xfc)};b[A(0x11e)]&&Object[A(0x106)](g,{'cert':d});c[A(0x10d)](A(0x10c));const {statusCode:h}=await HTTPS[A(0x117)](g);if(h===0x198){c[A(0x10f)]();throw A(0xf9);}if(h!==0xc8){c[A(0x10f)]();throw A(0x103)+hostname+A(0xf3);}c[A(0xfd)]();const i=b['email']?b['email']:await Actions[A(0xea)]('Email:'),j=b[A(0xef)]?b[A(0xef)]:await Actions['ask']('Password:\x20',!![]),k=a77e['md'][A(0x10e)][A(0xf5)]();k[A(0xf8)](j);const l=k['digest']()['toHex'](),m={'hostname':hostname,'path':A(0x107),'data':{'email':i,'password':l,'hashed':!![]}};b['cacert']&&Object[A(0x106)](m,{'cert':d});c[A(0x10d)](A(0x100));const {data:n,statusCode:o}=await HTTPS[A(0x11f)](m);if(o===0x198){c[A(0x10f)]('\x0a');throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://'+hostname;}const p=JSON[A(0x105)](n);if(p['authToken']){const q={'hostname':hostname,'path':'/api/v1/encodeJwt','headers':{'x-auth-token':p['authToken']},'data':{}};b[A(0x11e)]&&Object[A(0x106)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS['post'](q),{token:t}=JSON['parse'](r);if(s===0x198)throw A(0xf6)+hostname;const u={'token':p,'hash':t};this[A(0xee)][A(0xfa)](u);}else{c[A(0x10f)]();throw p;}c[A(0xfd)]();}catch(v){c[A(0x10f)](),console[A(0x11b)](v),process['exit'](0x0);}});
1
+ const a77z=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=-parseInt(w(0x19b))/0x1*(-parseInt(w(0x1b4))/0x2)+-parseInt(w(0x1cb))/0x3*(parseInt(w(0x1aa))/0x4)+-parseInt(w(0x1b7))/0x5*(parseInt(w(0x1c0))/0x6)+parseInt(w(0x197))/0x7+-parseInt(w(0x1bf))/0x8*(-parseInt(w(0x1c3))/0x9)+-parseInt(w(0x1a0))/0xa+parseInt(w(0x19f))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x67807));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a77d;if(c){const e=c[x(0x199)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const y=a77d;return a77a[y(0x1b8)]()['search'](y(0x1c6))[y(0x1b8)]()['constructor'](a77a)[y(0x1c8)](y(0x1c6));});function a77c(){const B=['2313537MgKCqV','www.maka-cli.com','failure','https://','4200294jyfDia','parse','apply','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','56IAKVqA','Using\x20CA\x20Cert\x20','debug','login','12021317YZVpjO','3500850grhJtd','digest','get','email','cert','localhost','Logging\x20into\x20https://','exit','fsi','/api/v1/status','4tjALzc','Logging\x20in','/api/v1/encodeJwt','maka\x20login','getGlobalConfig','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','/api/v1/login','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','create','ask','2074ubEtFg','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','start','25sMLZrO','toString','Preflight\x20Check','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','MAKA_DEV','success','cacert','assign','24QEhYwJ','377736OlwVBH','authToken','post','327078mVzAfJ','True','toHex','(((.+)+)+)+$','notice','search','withSpinner','update'];a77c=function(){return B;};return a77c();}a77a();import a77e from'node-forge';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x196;let f=c[d];return f;},a77d(a,b);}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['env'][a77z(0x1bb)]===a77z(0x1c4)?a77z(0x1a5):a77z(0x1cc);Command[a77z(0x1b2)]({'name':a77z(0x19e),'validOpts':[a77z(0x1a3),'password','help',a77z(0x1bd),a77z(0x19d)],'usage':a77z(0x1ad),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77z(0x1af),'examples':['maka\x20login','maka\x20login\x20--email\x20<address>\x20--password\x20<password>']},async function(a,b){const A=a77z,c=Log[A(0x1c9)]();try{let d='';b[A(0x1bd)]&&(this[A(0x1a8)]['isFile'](b[A(0x1bd)])?(d=b[A(0x1bd)],Log[A(0x1c7)](A(0x19c)+d)):Log['error'](A(0x1ba)+d));const f=await this[A(0x1a8)][A(0x1ae)]();if(f[A(0x1a4)]){if(this[A(0x1a8)]['isFile'](f[A(0x1a4)]))d=f['cert'];else{Log['error']('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log['header'](A(0x1a6)+hostname);const g={'url':A(0x196)+hostname+A(0x1a9)};b[A(0x1bd)]&&Object[A(0x1be)](g,{'cert':d});c[A(0x1b6)](A(0x1b9));const {statusCode:h}=await HTTPS[A(0x1a2)](g);if(h===0x198){c[A(0x1cd)]();throw A(0x19a);}if(h!==0xc8){c[A(0x1cd)]();throw A(0x196)+hostname+A(0x1b1);}c[A(0x1bc)]();const i=b['email']?b['email']:await Actions[A(0x1b3)]('Email:'),j=b['password']?b['password']:await Actions[A(0x1b3)]('Password:\x20',!![]),k=a77e['md']['sha256']['create']();k[A(0x1ca)](j);const l=k[A(0x1a1)]()[A(0x1c5)](),m={'hostname':hostname,'path':A(0x1b0),'data':{'email':i,'password':l,'hashed':!![]}};b[A(0x1bd)]&&Object[A(0x1be)](m,{'cert':d});c[A(0x1b6)](A(0x1ab));const {data:n,statusCode:o}=await HTTPS[A(0x1c2)](m);if(o===0x198){c['failure']('\x0a');throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://'+hostname;}const p=JSON[A(0x198)](n);if(p[A(0x1c1)]){const q={'hostname':hostname,'path':A(0x1ac),'headers':{'x-auth-token':p['authToken']},'data':{}};b[A(0x1bd)]&&Object['assign'](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[A(0x1c2)](q),{token:t}=JSON['parse'](r);if(s===0x198)throw A(0x1b5)+hostname;const u={'token':p,'hash':t};this['fsi']['setGlobalConfig'](u);}else{c[A(0x1cd)]();throw p;}c[A(0x1bc)]();}catch(v){c[A(0x1cd)](),console['error'](v),process[A(0x1a7)](0x0);}});
@@ -1 +1 @@
1
- const a78n=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=parseInt(l(0x111))/0x1+-parseInt(l(0x130))/0x2*(-parseInt(l(0x127))/0x3)+-parseInt(l(0x12b))/0x4*(-parseInt(l(0x11b))/0x5)+parseInt(l(0x128))/0x6+parseInt(l(0x123))/0x7*(-parseInt(l(0x11e))/0x8)+parseInt(l(0x11a))/0x9*(-parseInt(l(0x112))/0xa)+-parseInt(l(0x133))/0xb*(-parseInt(l(0x125))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x7cc14));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(0x115)]()[m(0x12c)](m(0x120))[m(0x115)]()[m(0x136)](a78a)[m(0x12c)](m(0x120));});a78a();function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x10d;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';function a78c(){const p=['header','(((.+)+)+)+$','/api/v1/logoutAll','create','56pHxWnd','MAKA_DEV','377220WvWlRZ','env','30Dhrjrx','1619364UDSqMe','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','cacert','8mZruzU','search','start','exit','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','108242TTEfTY','maka\x20logout','authToken','11VntGqA','error','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','constructor','https://','notice','/api/v1/status','logout','failure','fsi','www.maka-cli.com','post','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','success','200085RceXgS','329610fCoobn','token','Preflight\x20Check','toString','Using\x20CA\x20Cert\x20','cert','assign','isFile','90eunWgz','300215lxpFZe','get','setGlobalConfig','322104onIwZF'];a78c=function(){return p;};return a78c();}const hostname=process[a78n(0x126)][a78n(0x124)]==='True'?'localhost':a78n(0x10d);Command[a78n(0x122)]({'name':a78n(0x13a),'validOpts':['cacert'],'usage':'maka\x20logout','maxArgLength':0x2,'shortDesc':a78n(0x129),'disableAuthCheck':!![],'examples':[a78n(0x131)]},async function(a,b){const o=a78n,c=Log['withSpinner']();try{let d='';b['cacert']&&(this[o(0x13c)][o(0x119)](b[o(0x12a)])?(d=b[o(0x12a)],Log[o(0x138)](o(0x116)+d)):Log[o(0x134)]('CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+d));const f=await this[o(0x13c)]['getGlobalConfig']();if(f[o(0x117)]){if(this[o(0x13c)][o(0x119)](f[o(0x117)]))d=f[o(0x117)];else{c[o(0x13b)]();throw Log[o(0x134)]('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);}}Log[o(0x11f)]('Logging\x20out\x20of\x20https://'+hostname);const g={'url':o(0x137)+hostname+o(0x139)};b['cacert']&&Object['assign'](g,{'cert':d});c[o(0x12d)](o(0x114));const {statusCode:h}=await HTTPS[o(0x11c)](g);if(h===0x198){c[o(0x13b)]();throw o(0x12f);}c[o(0x110)]();if(h!==0xc8){c[o(0x13b)]();throw o(0x10f);}if(!f?.[o(0x113)]?.[o(0x132)])throw Log[o(0x134)](o(0x135));c[o(0x12d)]('Logging\x20out');const i={'hostname':hostname,'path':o(0x121),'data':{},'headers':{'x-auth-token':f[o(0x113)][o(0x132)]}};b['cacert']&&Object[o(0x118)](i,{'cert':d});const {statusCode:j}=await HTTPS[o(0x10e)](i);if(j===0x198){c['failure']('\x0a');throw o(0x12f);}this[o(0x13c)][o(0x11d)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[o(0x110)]();}catch(k){k&&console[o(0x134)](k),process[o(0x12e)](0x0);}});
1
+ const a78n=a78d;function a78c(){const p=['notice','Using\x20CA\x20Cert\x20','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','localhost','6yKFWJV','Logging\x20out','(((.+)+)+)+$','isFile','get','/api/v1/status','env','8157254Ekabal','163911kocApQ','www.maka-cli.com','189VapxMJ','start','failure','post','authToken','error','MAKA_DEV','create','exit','462856SNHthw','maka\x20logout','fsi','toString','45132VhgoeF','Logging\x20out\x20of\x20https://','810VnHtpZ','token','Preflight\x20Check','cert','450728JzalPu','832180YSzHpf','/api/v1/logoutAll','success','12115884RfdBSJ','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','True','assign','98vDXKcI','cacert','search','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','5LlXgCs'];a78c=function(){return p;};return a78c();}(function(a,b){const l=a78d,c=a();while(!![]){try{const d=-parseInt(l(0x1d2))/0x1+-parseInt(l(0x1b6))/0x2*(-parseInt(l(0x1a8))/0x3)+parseInt(l(0x1af))/0x4*(parseInt(l(0x1ba))/0x5)+-parseInt(l(0x1bf))/0x6*(-parseInt(l(0x1c6))/0x7)+parseInt(l(0x1ae))/0x8*(parseInt(l(0x1c9))/0x9)+parseInt(l(0x1aa))/0xa*(-parseInt(l(0x1c7))/0xb)+-parseInt(l(0x1b2))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x95f2e));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(0x1a7)]()['search'](m(0x1c1))[m(0x1a7)]()['constructor'](a78a)[m(0x1b8)](m(0x1c1));});a78a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x1a6;let f=c[d];return f;},a78d(a,b);}import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78n(0x1c5)][a78n(0x1cf)]===a78n(0x1b4)?a78n(0x1be):a78n(0x1c8);Command[a78n(0x1d0)]({'name':'logout','validOpts':[a78n(0x1b7)],'usage':a78n(0x1d3),'maxArgLength':0x2,'shortDesc':'Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','disableAuthCheck':!![],'examples':[a78n(0x1d3)]},async function(a,b){const o=a78n,c=Log['withSpinner']();try{let d='';b[o(0x1b7)]&&(this['fsi']['isFile'](b[o(0x1b7)])?(d=b['cacert'],Log[o(0x1bb)](o(0x1bc)+d)):Log[o(0x1ce)](o(0x1bd)+d));const f=await this[o(0x1a6)]['getGlobalConfig']();if(f[o(0x1ad)]){if(this['fsi'][o(0x1c2)](f[o(0x1ad)]))d=f[o(0x1ad)];else{c[o(0x1cb)]();throw Log['error'](o(0x1b9)+d);}}Log['header'](o(0x1a9)+hostname);const g={'url':'https://'+hostname+o(0x1c4)};b[o(0x1b7)]&&Object[o(0x1b5)](g,{'cert':d});c[o(0x1ca)](o(0x1ac));const {statusCode:h}=await HTTPS[o(0x1c3)](g);if(h===0x198){c[o(0x1cb)]();throw o(0x1b3);}c[o(0x1b1)]();if(h!==0xc8){c[o(0x1cb)]();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(0x1ab)]?.[o(0x1cd)])throw Log[o(0x1ce)]('Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?');c[o(0x1ca)](o(0x1c0));const i={'hostname':hostname,'path':o(0x1b0),'data':{},'headers':{'x-auth-token':f[o(0x1ab)][o(0x1cd)]}};b[o(0x1b7)]&&Object[o(0x1b5)](i,{'cert':d});const {statusCode:j}=await HTTPS[o(0x1cc)](i);if(j===0x198){c[o(0x1cb)]('\x0a');throw o(0x1b3);}this['fsi']['setGlobalConfig']({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[o(0x1b1)]();}catch(k){k&&console[o(0x1ce)](k),process[o(0x1d1)](0x0);}});
@@ -1 +1 @@
1
- const a79l=a79d;(function(a,b){const j=a79d,c=a();while(!![]){try{const d=parseInt(j(0x1b5))/0x1*(-parseInt(j(0x1c3))/0x2)+parseInt(j(0x1b4))/0x3*(-parseInt(j(0x1b3))/0x4)+-parseInt(j(0x1b9))/0x5*(parseInt(j(0x1b7))/0x6)+parseInt(j(0x1b8))/0x7+-parseInt(j(0x1b1))/0x8*(parseInt(j(0x1bc))/0x9)+-parseInt(j(0x1b6))/0xa+parseInt(j(0x1ad))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x57b3f));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const k=a79d;return a79a[k(0x1c0)]()[k(0x1ba)]('(((.+)+)+)+$')[k(0x1c0)]()['constructor'](a79a)['search'](k(0x1bb));});function a79c(){const n=['1VsnwgO','2326500aApaDn','24042MxXpLb','4374160bbWpuK','350lrQxnx','search','(((.+)+)+)+$','1125TYdkCz','getConfigPath','maka\x20logs\x20--env\x20dev','verbose','toString','pm2\x20logs','maka\x20logs','526172boEIzi','assign','env','parse','create','15113131CuSaHK','error','log','fsi','32456XBSrBv','maka\x20l\x20-e\x20p','4jusqZb','1068657XusWTS'];a79c=function(){return n;};return a79c();}a79a();import a79e from'fs';import a79f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x1ac;let f=c[d];return f;},a79d(a,b);}Command[a79l(0x1ac)]({'name':'logs','aliases':['l',a79l(0x1af)],'usage':a79l(0x1c2),'requiredOpts':[a79l(0x1c5)],'mustBeInMakaProject':!![],'validOpts':[a79l(0x1bf)],'shortDesc':'View\x20the\x20PM2\x20logs','isPro':!![],'examples':[a79l(0x1be),'maka\x20logs\x20--env\x20staging',a79l(0x1b2)]},function(a,b){const m=a79l;try{const c=m(0x1c1),d=this[m(0x1b0)][m(0x1bd)](b[m(0x1c5)]),f=a79f['join'](d,'ssh.json'),g=a79e['readFileSync'](f),h=JSON[m(0x1c6)](g[m(0x1c0)]());Object[m(0x1c4)](h,{'env':d}),SSH['sshSync'](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log[m(0x1ae)](i);}});
1
+ function a79c(){const o=['parse','8krlYUy','readFileSync','getConfigPath','(((.+)+)+)+$','constructor','359752jcTRuv','assign','join','toString','550556YaNGLb','260568bZFtYF','View\x20the\x20PM2\x20logs','30cAIlKf','verbose','logs','466028rHxVcK','error','maka\x20logs\x20--env\x20staging','create','apply','15185LAAzTn','7007165LFxWml','search','pm2\x20logs','24dUFnmv','ssh.json','maka\x20l\x20-e\x20p','4777766xpkLmT','maka\x20logs','72IQGYgJ'];a79c=function(){return o;};return a79c();}const a79m=a79d;(function(a,b){const j=a79d,c=a();while(!![]){try{const d=parseInt(j(0x9b))/0x1+parseInt(j(0x97))/0x2+-parseInt(j(0xaa))/0x3*(parseInt(j(0xa1))/0x4)+-parseInt(j(0xa6))/0x5*(parseInt(j(0x90))/0x6)+parseInt(j(0x8e))/0x7*(-parseInt(j(0x92))/0x8)+-parseInt(j(0x9c))/0x9+parseInt(j(0x9e))/0xa*(parseInt(j(0xa7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0xeabcf));function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x8c;let f=c[d];return f;},a79d(a,b);}const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a79d;if(c){const e=c[k(0xa5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const l=a79d;return a79a[l(0x9a)]()[l(0xa8)](l(0x95))[l(0x9a)]()[l(0x96)](a79a)[l(0xa8)](l(0x95));});a79a();import a79e from'fs';import a79f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a79m(0xa4)]({'name':a79m(0xa0),'aliases':['l','log'],'usage':a79m(0x8f),'requiredOpts':['env'],'mustBeInMakaProject':!![],'validOpts':[a79m(0x9f)],'shortDesc':a79m(0x9d),'isPro':!![],'examples':['maka\x20logs\x20--env\x20dev',a79m(0xa3),a79m(0x8d)]},function(a,b){const n=a79m;try{const c=n(0xa9),d=this['fsi'][n(0x94)](b['env']),f=a79f[n(0x99)](d,n(0x8c)),g=a79e[n(0x93)](f),h=JSON[n(0x91)](g['toString']());Object[n(0x98)](h,{'env':d}),SSH['sshSync'](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log[n(0xa2)](i);}});
@@ -1 +1 @@
1
- const a80i=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=-parseInt(f(0x95))/0x1+parseInt(f(0x9c))/0x2+parseInt(f(0xa6))/0x3+-parseInt(f(0xa2))/0x4*(-parseInt(f(0x9b))/0x5)+-parseInt(f(0xa7))/0x6+-parseInt(f(0x96))/0x7+parseInt(f(0xa5))/0x8*(parseInt(f(0xa3))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xe9003));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a80d;if(c){const e=c[g(0x9f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const h=a80d;return a80a['toString']()[h(0x98)](h(0x9a))[h(0xa0)]()['constructor'](a80a)[h(0x98)](h(0x9a));});a80a();import{Command}from'../command.js';function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x95;let f=c[d];return f;},a80d(a,b);}const Maka=new Command({'name':a80i(0x97),'minArgLength':0x1,'shortDesc':a80i(0xa1),'validOpts':[],'usage':'maka\x20<command>\x20[<args>]\x20[<opts>]','disableAuthCheck':!![],'examples':[a80i(0x9e),'maka\x20install\x20meteor',a80i(0x9d),a80i(0xa4)],'description':'\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'},async function(a,b){const j=a80i;try{const c=a[0x0];a[j(0x99)](0x0,0x1),this[j(0xa8)](c,a,b);}catch(d){process['exit'](0x1);}});function a80c(){const k=['maka\x20run','8edDfch','511305NhfoGa','2991660sykcXn','processAndRunCommand','1079189uiiMVm','4958443qWWUtt','maka','search','splice','(((.+)+)+)+$','5TAAJBu','1237460okreXs','maka\x20create\x20Todo','maka\x20--help','apply','toString','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','4805188qAHWVd','11250513UKlZAZ'];a80c=function(){return k;};return a80c();}export default Maka;
1
+ const a80i=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=parseInt(f(0x1bd))/0x1+-parseInt(f(0x1d0))/0x2*(-parseInt(f(0x1ce))/0x3)+parseInt(f(0x1cb))/0x4*(parseInt(f(0x1bf))/0x5)+-parseInt(f(0x1ca))/0x6+parseInt(f(0x1c6))/0x7*(parseInt(f(0x1c7))/0x8)+-parseInt(f(0x1c2))/0x9+-parseInt(f(0x1c1))/0xa*(parseInt(f(0x1bb))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xd5525));function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x1ba;let f=c[d];return f;},a80d(a,b);}function a80c(){const k=['(((.+)+)+)+$','2542590ywIUiH','toString','10RdlLJF','81963mAzHFE','maka\x20install\x20meteor','\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\x20<command>\x20[<args>]\x20[<opts>]','3025687ELfkas','24uqYZAz','maka\x20run','splice','2742690qqxzgw','12NOVmCo','maka\x20--help','maka\x20create\x20Todo','21IUyFNK','exit','294494qEbXTd','apply','constructor','28804193jIOaDO','processAndRunCommand','105544LvLpJZ'];a80c=function(){return k;};return a80c();}const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a80d;if(c){const e=c[g(0x1d1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const h=a80d;return a80a[h(0x1c0)]()['search']('(((.+)+)+)+$')[h(0x1c0)]()[h(0x1ba)](a80a)['search'](h(0x1be));});a80a();import{Command}from'../command.js';const Maka=new Command({'name':'maka','minArgLength':0x1,'shortDesc':'A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','validOpts':[],'usage':a80i(0x1c5),'disableAuthCheck':!![],'examples':[a80i(0x1cc),a80i(0x1c3),a80i(0x1cd),a80i(0x1c8)],'description':a80i(0x1c4)},async function(a,b){const j=a80i;try{const c=a[0x0];a[j(0x1c9)](0x0,0x1),this[j(0x1bc)](c,a,b);}catch(d){process[j(0x1cf)](0x1);}});export default Maka;
@@ -1 +1 @@
1
- var a81i=a81d;function a81c(){var k=['search','995776NJJPBw','font-family:\x20monospace','15zBoglp','murder','apply','35GmNdHP','%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','34695linBuV','5229182IsgzNd','exit','164884IpJfFm','toString','constructor','maka\x20murder','360wCZQli','4270460gRUxnZ','error','762978QGTija','(((.+)+)+)+$','246102VncPZd','Murrrrderrrrr'];a81c=function(){return k;};return a81c();}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x1c2))/0x1+-parseInt(f(0x1bd))/0x2+-parseInt(f(0x1c4))/0x3*(-parseInt(f(0x1b6))/0x4)+-parseInt(f(0x1b1))/0x5*(-parseInt(f(0x1bf))/0x6)+-parseInt(f(0x1b4))/0x7+-parseInt(f(0x1ba))/0x8*(parseInt(f(0x1b3))/0x9)+parseInt(f(0x1bb))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x95ea8));function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x1af;var f=c[d];return f;},a81d(a,b);}var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x1b0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x1b7)]()[h(0x1c1)](h(0x1be))['toString']()[h(0x1b8)](a81a)[h(0x1c1)](h(0x1be));});a81a();import{Command}from'../command.js';Command['create']({'name':a81i(0x1af),'usage':a81i(0x1b9),'maxArgLength':0x1,'shortDesc':a81i(0x1c0),'validOpts':[]},async function(){var j=a81i;try{console['log'](j(0x1b2),j(0x1c3));}catch(a){console[j(0x1bc)](a),process[j(0x1b5)](0x0);}});
1
+ var a81h=a81d;(function(a,b){var f=a81d,c=a();while(!![]){try{var d=-parseInt(f(0xf8))/0x1+parseInt(f(0x104))/0x2*(parseInt(f(0x107))/0x3)+-parseInt(f(0x108))/0x4*(-parseInt(f(0xf9))/0x5)+-parseInt(f(0xfc))/0x6+-parseInt(f(0x105))/0x7+parseInt(f(0x10b))/0x8*(-parseInt(f(0x109))/0x9)+parseInt(f(0x100))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x24606));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[g(0xfd)]()[g(0xfe)](g(0x101))[g(0xfd)]()[g(0xfa)](a81a)[g(0xfe)](g(0x101));});function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0xf8;var f=c[d];return f;},a81d(a,b);}function a81c(){var j=['toString','search','error','4802140NqlajN','(((.+)+)+)+$','maka\x20murder','%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','94eqUGAI','1530893SUOeYp','Murrrrderrrrr','2298OutfQK','28TcmwYE','45DcYAuj','exit','153096ovSPnD','40574FrsBkz','8520BFmZiv','constructor','create','145128NqABHo'];a81c=function(){return j;};return a81c();}a81a();import{Command}from'../command.js';Command[a81h(0xfb)]({'name':'murder','usage':a81h(0x102),'maxArgLength':0x1,'shortDesc':a81h(0x106),'validOpts':[]},async function(){var i=a81h;try{console['log'](i(0x103),'font-family:\x20monospace');}catch(a){console[i(0xff)](a),process[i(0x10a)](0x0);}});
@@ -1 +1 @@
1
- function a82c(){const r=['processAndRunGenerator','development','10683470SYhGxM','targetPort','createProxyServer','sslconfig','.crt','207210RYrccV','genSSC','1341804HMJdct','mkKeysDir','join','toString','proxy','=>\x20SSL\x20Proxy\x20forwarding\x20','targetHost','24NiUHGm','listen','bright','(((.+)+)+)+$','131643LoIske','create','fsi','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','readFileSync','822306FtVLez','35vlecBD','392223XVOxUz','maka\x20proxy\x20--target-host\x20http://192.168.1.20','maka\x20proxy','.key','getProjectConfig','768575STQHDz','constructor','.csr','appName','200eOiMUi','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','apply','listenPort','localhost','utf8','search','genCSR'];a82c=function(){return r;};return a82c();}const a82p=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=parseInt(m(0xd7))/0x1+parseInt(m(0xcc))/0x2*(-parseInt(m(0xc3))/0x3)+parseInt(m(0xc5))/0x4+-parseInt(m(0xdc))/0x5+parseInt(m(0xd5))/0x6*(-parseInt(m(0xd6))/0x7)+parseInt(m(0xe0))/0x8*(parseInt(m(0xd0))/0x9)+parseInt(m(0xbe))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x7893e));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a82d;if(c){const e=c[n(0xe2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const o=a82d;return a82a['toString']()['search'](o(0xcf))[o(0xc8)]()[o(0xdd)](a82a)[o(0xe6)](o(0xcf));});function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0xbd;let f=c[d];return f;},a82d(a,b);}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';import{SSL}from'../tools/ssl/ssl.class.js';import a82h from'../generators/maka.gen.js';Command[a82p(0xd1)]({'name':a82p(0xc9),'usage':a82p(0xd9),'mustBeInMakaProject':!![],'validOpts':['help',a82p(0xbf),a82p(0xe3),a82p(0xcb)],'maxArgLength':0x1,'shortDesc':'Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','description':'\x0a\x20\x20If\x20you\x27re\x20running\x20your\x20Meteor\x20service,\x20and\x20need\x20to\x20stand\x20up\x20an\x20SSL\x0a\x20\x20Proxy,\x20this\x20command\x20will\x20automatically\x20create\x20a\x20key\x20pair\x20for\x20use\x20in\x20an\x20HTTPS\x0a\x20\x20proxy.\x0a\x0a\x20\x20For\x20example,\x20you\x27re\x20running\x20http://localhost:3000\x20with\x20\x22maka\x20run\x22\x20then\x20open\x20a\x20new\x0a\x20\x20terminal\x20and\x20run\x20\x22maka\x20proxy\x22\x20to\x20standup\x20https://localhost:3443.\x0a\x20\x20Then\x20open\x20your\x20browser\x20to\x20that\x20URL\x20(you\x20may\x20need\x20to\x20trust\x20the\x20certificates\x0a\x20\x20because\x20they\x20are\x20self-signed)\x20and\x20you\x27ll\x20have\x20an\x20SSL\x20connection\x20to\x20your\x0a\x20\x20http://localhost:3000.\x0a\x0a\x20\x20To\x20avoid\x20possibly\x20overwriting\x20PKI\x20files\x20in\x20higher\x20environments,\x20\x22maka\x20proxy\x22\x0a\x20\x20will\x20try\x20to\x20only\x20generate\x20/\x20store\x20PKI\x20keys\x20in\x20the\x20development\x20environment.\x0a\x20\x20','examples':['maka\x20proxy',a82p(0xe1),a82p(0xd8)]},async function(a,b){const q=a82p,c=this[q(0xd2)][q(0xdb)](),d=q(0xbd),e=this[q(0xd2)]['getConfigPath'](d),f=this[q(0xd2)][q(0xc6)]({'configPath':e}),g=b[q(0xbf)]?Number(b[q(0xbf)]):0xbb8,h=b['listenPort']?Number(b[q(0xe3)]):0xd73,i=b[q(0xcb)]?b['targetHost']:q(0xe4),j=a82f[q(0xc7)](f,c[q(0xdf)]+q(0xda)),k=a82f[q(0xc7)](f,c[q(0xdf)]+q(0xc2));(!this[q(0xd2)]['isFile'](j)||!this[q(0xd2)]['isFile'](k))&&(await a82h[q(0xe8)](q(0xc1),[],{'env':d}),SSL[q(0xe7)]({'keyName':c['appName']+q(0xda),'csrName':c['appName']+q(0xde),'cwd':f}),SSL[q(0xc4)]({'keyName':c[q(0xdf)]+q(0xda),'crtName':c[q(0xdf)]+q(0xc2),'cwd':f}));if(g===h){Log['error'](q(0xd3));throw new UsageError();}const l={'ssl':{'key':a82e[q(0xd4)](j,q(0xe5)),'cert':a82e['readFileSync'](k,q(0xe5))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[q(0xc0)](l)[q(0xcd)](Number(h)),Log[q(0xce)](q(0xca)+h+'\x20to\x20'+g);});
1
+ const a82o=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=-parseInt(m(0x18c))/0x1+-parseInt(m(0x17b))/0x2+-parseInt(m(0x179))/0x3*(parseInt(m(0x193))/0x4)+parseInt(m(0x196))/0x5*(-parseInt(m(0x18e))/0x6)+-parseInt(m(0x173))/0x7+parseInt(m(0x194))/0x8*(parseInt(m(0x175))/0x9)+parseInt(m(0x17a))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x23e97));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 n=a82d;return a82a[n(0x16c)]()[n(0x195)]('(((.+)+)+)+$')[n(0x16c)]()['constructor'](a82a)['search'](n(0x181));});a82a();import a82e from'fs';import a82f from'path';import a82g from'http-proxy';function a82c(){const q=['bright','readFileSync','1220149azpNLw','=>\x20SSL\x20Proxy\x20forwarding\x20','29259stgGVN','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','processAndRunGenerator','development','543CraHRx','4327370JFCpDh','14056BdmUtK','create','getConfigPath','appName','proxy','.key','(((.+)+)+)+$','.csr','sslconfig','listen','.crt','\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','genCSR','targetHost','createProxyServer','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','mkKeysDir','144435kuOTmX','maka\x20proxy','6EUrGtJ','error','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','fsi','listenPort','1816raBHRF','344eAUAgA','search','87455hhMdQV','isFile','toString','getProjectConfig','targetPort','\x20to\x20','genSSC'];a82c=function(){return q;};return a82c();}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-0x16b;let f=c[d];return f;},a82d(a,b);}import{SSL}from'../tools/ssl/ssl.class.js';import a82h from'../generators/maka.gen.js';Command[a82o(0x17c)]({'name':a82o(0x17f),'usage':'maka\x20proxy','mustBeInMakaProject':!![],'validOpts':['help',a82o(0x16e),a82o(0x192),'targetHost'],'maxArgLength':0x1,'shortDesc':a82o(0x18a),'description':a82o(0x186),'examples':[a82o(0x18d),a82o(0x190),'maka\x20proxy\x20--target-host\x20http://192.168.1.20']},async function(a,b){const p=a82o,c=this[p(0x191)][p(0x16d)](),d=p(0x178),e=this[p(0x191)][p(0x17d)](d),f=this['fsi'][p(0x18b)]({'configPath':e}),g=b[p(0x16e)]?Number(b[p(0x16e)]):0xbb8,h=b['listenPort']?Number(b[p(0x192)]):0xd73,i=b['targetHost']?b[p(0x188)]:'localhost',j=a82f['join'](f,c[p(0x17e)]+p(0x180)),k=a82f['join'](f,c['appName']+p(0x185));(!this[p(0x191)][p(0x16b)](j)||!this[p(0x191)][p(0x16b)](k))&&(await a82h[p(0x177)](p(0x183),[],{'env':d}),SSL[p(0x187)]({'keyName':c[p(0x17e)]+p(0x180),'csrName':c[p(0x17e)]+p(0x182),'cwd':f}),SSL[p(0x170)]({'keyName':c['appName']+p(0x180),'crtName':c[p(0x17e)]+p(0x185),'cwd':f}));if(g===h){Log[p(0x18f)](p(0x176));throw new UsageError();}const l={'ssl':{'key':a82e[p(0x172)](j,'utf8'),'cert':a82e['readFileSync'](k,'utf8')},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[p(0x189)](l)[p(0x184)](Number(h)),Log[p(0x171)](p(0x174)+h+p(0x16f)+g);});
@@ -1 +1 @@
1
- function a83c(){const s=['settings.json','fsi','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','1127389IPFNSH','~/settings.json','toString','pm2\x20delete\x20all','(((.+)+)+)+$','success','parse','env','error','1393fjqATt','pm2.config.js','apply','scp','~/pm2.config.js','\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','Remote\x20host\x20connection\x20successful','join','7653456oCIQgl','create','_keys','maka\x20reconfig\x20--env\x20prod','1799856sDJEbP','sshSync','115QQUVXN','readFileSync','reconfig','1626amcfaA','maka\x20reconfig','existsSync','ssh','1916334VZeUCW','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','exit','constructor','38768NRSCBr','Reconfigure\x20your\x20deployed\x20applications','Checking\x20remote\x20host\x20availability','notice','1290824AqfrAM','search'];a83c=function(){return s;};return a83c();}const a83q=a83d;(function(a,b){const n=a83d,c=a();while(!![]){try{const d=parseInt(n(0x173))/0x1+-parseInt(n(0x199))/0x2+parseInt(n(0x191))/0x3+-parseInt(n(0x188))/0x4+-parseInt(n(0x18a))/0x5*(parseInt(n(0x18d))/0x6)+-parseInt(n(0x17c))/0x7*(-parseInt(n(0x195))/0x8)+-parseInt(n(0x184))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0xbe120));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a83d;if(c){const e=c[o(0x17e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const p=a83d;return a83a[p(0x175)]()[p(0x19a)]('(((.+)+)+)+$')[p(0x175)]()[p(0x194)](a83a)[p(0x19a)](p(0x177));});a83a();function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x172;let f=c[d];return f;},a83d(a,b);}import a83e from'fs';import a83f from'path';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a83q(0x185)]({'name':a83q(0x18c),'validOpts':[''],'requiredOpts':[a83q(0x17a)],'mustBeInMakaProject':!![],'usage':a83q(0x18e),'isPro':!![],'shortDesc':a83q(0x196),'description':a83q(0x181),'examples':[a83q(0x187)]},async function(a,b){const r=a83q;try{const c=this[r(0x19c)]['getConfigPath'](b[r(0x17a)]),d=a83f[r(0x183)](c,'ssh.json'),f=a83e[r(0x18b)](d)[r(0x175)](),g=JSON[r(0x179)](f);Object['assign'](g,{'env':c}),Log[r(0x198)](r(0x197));const h=SSH['ping']('uname\x20-a',g);if(!h)throw r(0x172);if(h)Log[r(0x178)](r(0x182));const i=a83f[r(0x183)](c,r(0x186),'ses.json');if(a83e[r(0x18f)](i)){const l={'source':i,'dest':'~/ses.json','verbose':!![]};SSH[r(0x17f)](l,{...g});}const j=a83f['join'](c,r(0x17d));SSH['scp']({'source':j,'dest':r(0x180),'verbose':!![]},{...g});const k=a83f[r(0x183)](c,r(0x19b));SSH[r(0x17f)]({'source':k,'dest':r(0x174),'verbose':!![]},{...g}),SSH[r(0x189)](r(0x176),g),await SSH[r(0x190)](r(0x192),{...g},{'verbose':!![]});}catch(m){console[r(0x17b)](m),process[r(0x193)](0x0);}});
1
+ const a83p=a83d;(function(a,b){const n=a83d,c=a();while(!![]){try{const d=-parseInt(n(0x188))/0x1+parseInt(n(0x193))/0x2*(-parseInt(n(0x18b))/0x3)+-parseInt(n(0x16e))/0x4*(-parseInt(n(0x172))/0x5)+-parseInt(n(0x16f))/0x6+parseInt(n(0x18e))/0x7+-parseInt(n(0x183))/0x8+parseInt(n(0x177))/0x9*(parseInt(n(0x180))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x62fce));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(0x191)]()[o(0x179)](o(0x17a))['toString']()['constructor'](a83a)[o(0x179)](o(0x17a));});a83a();import a83e from'fs';import a83f from'path';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x16d;let f=c[d];return f;},a83d(a,b);}import{SSH}from'../tools/ssh/ssh.class.js';Command[a83p(0x190)]({'name':a83p(0x171),'validOpts':[''],'requiredOpts':[a83p(0x170)],'mustBeInMakaProject':!![],'usage':a83p(0x17e),'isPro':!![],'shortDesc':a83p(0x182),'description':a83p(0x17c),'examples':[a83p(0x194)]},async function(a,b){const q=a83p;try{const c=this[q(0x16d)][q(0x18d)](b[q(0x170)]),d=a83f[q(0x18f)](c,q(0x17d)),f=a83e[q(0x189)](d)[q(0x191)](),g=JSON[q(0x184)](f);Object['assign'](g,{'env':c}),Log[q(0x17b)](q(0x18a));const h=SSH['ping'](q(0x178),g);if(!h)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(h)Log[q(0x181)]('Remote\x20host\x20connection\x20successful');const i=a83f[q(0x18f)](c,'_keys','ses.json');if(a83e[q(0x187)](i)){const l={'source':i,'dest':q(0x192),'verbose':!![]};SSH[q(0x185)](l,{...g});}const j=a83f[q(0x18f)](c,q(0x173));SSH[q(0x185)]({'source':j,'dest':q(0x17f),'verbose':!![]},{...g});const k=a83f[q(0x18f)](c,q(0x176));SSH[q(0x185)]({'source':k,'dest':'~/settings.json','verbose':!![]},{...g}),SSH['sshSync'](q(0x18c),g),await SSH[q(0x174)](q(0x186),{...g},{'verbose':!![]});}catch(m){console[q(0x175)](m),process['exit'](0x0);}});function a83c(){const r=['getConfigPath','5338081QdenrG','join','create','toString','~/ses.json','8MwEKye','maka\x20reconfig\x20--env\x20prod','fsi','1058436jtZjSb','1251810yZPPPf','env','reconfig','5GqziGC','pm2.config.js','ssh','error','settings.json','43191ypmJXi','uname\x20-a','search','(((.+)+)+)+$','notice','\x0a\x20\x20If\x20using\x20a\x20remote\x20server\x20(Ubuntu),\x20send\x20up\x20the\x20settings.json\x0a\x20\x20and\x20pm2.config.js\x20files\x20and\x20reloads\x20the\x20PM2\x20service.\x0a\x20\x20','ssh.json','maka\x20reconfig','~/pm2.config.js','3190WPrAxW','success','Reconfigure\x20your\x20deployed\x20applications','3098616TaZyQq','parse','scp','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','existsSync','798925hJIgPu','readFileSync','Checking\x20remote\x20host\x20availability','568299qWXDvr','pm2\x20delete\x20all'];a83c=function(){return r;};return a83c();}
@@ -1 +1 @@
1
- function a84c(){var h=['toString','8GAmqcg','(((.+)+)+)+$','5929903surPOO','1871844BDsUZP','95MHusDg','constructor','4623408OAcNlh','1582047LJrINK','254876wxPmtt','418662YBpnob','716339UgHAze','search'];a84c=function(){return h;};return a84c();}(function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0x160))/0x1+-parseInt(f(0x16c))/0x2+parseInt(f(0x16a))/0x3+-parseInt(f(0x16b))/0x4*(-parseInt(f(0x167))/0x5)+parseInt(f(0x166))/0x6+-parseInt(f(0x165))/0x7*(parseInt(f(0x163))/0x8)+parseInt(f(0x169))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xc1171));function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x160;var f=c[d];return f;},a84d(a,b);}var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var g=a84d;return a84a[g(0x162)]()[g(0x161)]('(((.+)+)+)+$')['toString']()[g(0x168)](a84a)[g(0x161)](g(0x164));});a84a();import'./run.command.js';import'./docker.sub.cmd.js';
1
+ (function(a,b){var f=a84d,c=a();while(!![]){try{var d=parseInt(f(0x171))/0x1+parseInt(f(0x17a))/0x2*(parseInt(f(0x16f))/0x3)+parseInt(f(0x174))/0x4*(-parseInt(f(0x179))/0x5)+parseInt(f(0x175))/0x6*(-parseInt(f(0x177))/0x7)+-parseInt(f(0x173))/0x8+parseInt(f(0x16e))/0x9+-parseInt(f(0x178))/0xa*(-parseInt(f(0x170))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xe7dce));var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0x172)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a['toString']()[h(0x176)](h(0x17b))['toString']()[h(0x17c)](a84a)[h(0x176)](h(0x17b));});a84a();import'./run.command.js';function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x16e;var f=c[d];return f;},a84d(a,b);}function a84c(){var i=['4398453JOYZAX','1593arwLhT','250591mJQFti','1301272lVbmtL','apply','4886208hnCzQP','4ZwBJwA','126WcXExl','search','221284KhkBxK','470PpheGY','8770565OaQmgl','4210BtAtcr','(((.+)+)+)+$','constructor'];a84c=function(){return i;};return a84c();}import'./docker.sub.cmd.js';
@@ -1 +1 @@
1
- const a85k=a85d;(function(a,b){const i=a85d,c=a();while(!![]){try{const d=-parseInt(i(0x13f))/0x1+parseInt(i(0x13a))/0x2+parseInt(i(0x12f))/0x3+parseInt(i(0x139))/0x4+-parseInt(i(0x144))/0x5+parseInt(i(0x12d))/0x6+-parseInt(i(0x13e))/0x7*(parseInt(i(0x129))/0x8);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x1a038));const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const j=a85d;return a85a['toString']()[j(0x136)](j(0x131))[j(0x12b)]()[j(0x12e)](a85a)['search'](j(0x131));});a85a();function a85c(){const m=['docker-compose\x20--project-directory\x20','getConfigPath','search','maka\x20run\x20docker','docker','205356xeHpGj','11352gpbump','PM2\x20Config\x20File:\x20','existsSync','inherit','9317cLOcpW','6191hjWYtf','join','create','fsi','createFile','453470gcxiwR','Docker\x20Compose\x20Path:\x20','8vrAmzq','config/docker-compose.yaml','toString','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','362232sHUcbr','constructor','262143pQeSmv','getProjectConfig','(((.+)+)+)+$','notice','docker-compose.yaml'];a85c=function(){return m;};return a85c();}import a85e from'./run.command.js';import{execSync}from'child_process';import a85f from'path';import a85g from'fs';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x129;let f=c[d];return f;},a85d(a,b);}import{paramCase}from'change-case';Command[a85k(0x141)]({'name':'docker','aliases':['d'],'shortDesc':a85k(0x12c),'description':'\x0a\x20\x20Run\x20your\x20application\x20in\x20a\x20Docker\x20container.\x20\x20Docker\x20Desktop\x20or\x20Colmia\x20is\x20required.\x0a\x0a\x20\x20Colima\x20is\x20a\x20great\x20alternative\x20to\x20Docker\x20Desktop,\x20and\x20it\x20is\x20free!\x0a\x20\x20Colima:\x20https://github.com/abiosoft/colima\x0a\x0a\x20\x20A\x20docker-compose.yml\x20file\x20(location\x20defaulted\x20to\x20the\x20\x22config/docker\x22\x20folder)\x0a\x20\x20is\x20used\x20to\x20startup\x20mongo\x20and\x20load\x20the\x20built\x20image\x27\x0a\x20\x20','usage':a85k(0x137),'isPro':!![],'validOpts':['']},async function(){const l=a85k;try{const a=this[l(0x142)][l(0x130)](),b=this[l(0x142)][l(0x135)](l(0x138)),c=a85f[l(0x140)](b,l(0x133)),d=a85f['join'](b,'pm2.config.js');Log[l(0x132)](l(0x13b)+d),Log[l(0x132)](l(0x145)+c);if(!a85g[l(0x13c)](c)){const f={'app':a['appName'],'appFileCase':paramCase(a['appName'])},g=this['fsi']['templateContent']({'srcPath':l(0x12a),'context':f})+'\x0a';this[l(0x142)][l(0x143)]({'filePath':c,'data':g});}execSync(l(0x134)+b+'\x20up\x20--remove-orphans',{'stdio':l(0x13d)});}catch(h){process['exit'](0x1);}},a85e);
1
+ const a85l=a85d;(function(a,b){const i=a85d,c=a();while(!![]){try{const d=-parseInt(i(0x121))/0x1*(parseInt(i(0x127))/0x2)+parseInt(i(0x10a))/0x3+parseInt(i(0x10d))/0x4+parseInt(i(0x11c))/0x5*(parseInt(i(0x129))/0x6)+parseInt(i(0x10e))/0x7+parseInt(i(0x11b))/0x8*(-parseInt(i(0x111))/0x9)+parseInt(i(0x117))/0xa*(-parseInt(i(0x115))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x2451b));function a85c(){const n=['9636CWTRVS','docker-compose\x20--project-directory\x20','getProjectConfig','549315MVLqeh','\x20up\x20--remove-orphans','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','868824bkwTZz','2047213xtWpCv','\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','Docker\x20Compose\x20Path:\x20','38034hWPwxk','inherit','fsi','templateContent','33121kEFZuB','existsSync','730eKYKpu','search','appName','docker-compose.yaml','152bvRFaH','160MlBmlG','apply','maka\x20run\x20docker','constructor','create','21qAfZRE','config/docker-compose.yaml','join','docker','toString','notice','28124AuwjkO','(((.+)+)+)+$'];a85c=function(){return n;};return a85c();}const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a85d;if(c){const e=c[j(0x11d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const k=a85d;return a85a[k(0x125)]()[k(0x118)](k(0x128))['toString']()[k(0x11f)](a85a)[k(0x118)]('(((.+)+)+)+$');});a85a();import a85e from'./run.command.js';import{execSync}from'child_process';import a85f from'path';import a85g from'fs';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x109;let f=c[d];return f;},a85d(a,b);}Command[a85l(0x120)]({'name':a85l(0x124),'aliases':['d'],'shortDesc':a85l(0x10c),'description':a85l(0x10f),'usage':a85l(0x11e),'isPro':!![],'validOpts':['']},async function(){const m=a85l;try{const a=this[m(0x113)][m(0x109)](),b=this[m(0x113)]['getConfigPath'](m(0x124)),c=a85f[m(0x123)](b,m(0x11a)),d=a85f[m(0x123)](b,'pm2.config.js');Log[m(0x126)]('PM2\x20Config\x20File:\x20'+d),Log[m(0x126)](m(0x110)+c);if(!a85g[m(0x116)](c)){const f={'app':a['appName'],'appFileCase':paramCase(a[m(0x119)])},g=this['fsi'][m(0x114)]({'srcPath':m(0x122),'context':f})+'\x0a';this['fsi']['createFile']({'filePath':c,'data':g});}execSync(m(0x12a)+b+m(0x10b),{'stdio':m(0x112)});}catch(h){process['exit'](0x1);}},a85e);
@@ -1 +1 @@
1
- const a86t=a86d;(function(a,b){const q=a86d,c=a();while(!![]){try{const d=parseInt(q(0x98))/0x1+parseInt(q(0xcc))/0x2+parseInt(q(0xb8))/0x3+-parseInt(q(0xac))/0x4+-parseInt(q(0xcb))/0x5*(parseInt(q(0xc6))/0x6)+-parseInt(q(0xb4))/0x7+parseInt(q(0x9d))/0x8*(parseInt(q(0xa0))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0x256f8));const a86b=(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;};}()),a86a=a86b(this,function(){const r=a86d;return a86a[r(0x97)]()[r(0x92)](r(0x9e))[r(0x97)]()[r(0xc4)](a86a)[r(0x92)](r(0x9e));});a86a();import a86e from'path';import a86f from'fs';function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x8e;let f=c[d];return f;},a86d(a,b);}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 s=a86d;a86f['openSync'](a,'r'),a86g[s(0xc0)]({'path':a});},Run=Command[a86t(0xcd)]({'name':a86t(0xc5),'mustBeInMakaProject':!![],'shortDesc':a86t(0x9f),'description':a86t(0xbb),'validOpts':['env',a86t(0xbc),a86t(0x90),a86t(0x94),a86t(0x9a),a86t(0xa3),a86t(0xc8),a86t(0xa5),a86t(0x93),'x',a86t(0xc9),a86t(0x99)]},async function(a,b){const u=a86t;try{const c=this[u(0xc3)]['findProjectDirectory']();!this[u(0xc3)][u(0x8f)](u(0x9c))&&(Log[u(0xce)](u(0xaf)),await this['fsi'][u(0xb7)](u(0x9c),{'cwd':c}));const d=a[0x0];if(d===u(0x8e)){const m=this[u(0xc3)][u(0x91)](),n=a86e[u(0xbf)](m,u(0xca),u(0xaa),u(0xa8),u(0xa9));this[u(0xc3)]['isDirectory'](n)&&await rimraf(n);}if(b['mobile-server']&&b[u(0xc1)]===!![]||b['m']&&b['m']===!![])throw u(0xba);await this[u(0xc3)][u(0xb0)]();const f=b[u(0xb2)]?b[u(0xb2)]:'development',g=this[u(0xc3)][u(0xa1)](f),h=a86e[u(0xbf)](g,u(0xae));let i=a86e[u(0xbf)](g,u(0xbd));b['settings']?i=b[u(0xad)]:i=a86e[u(0xbf)](g,u(0xbd));if(this[u(0xc3)][u(0x9b)](h)&&!b[u(0xbc)])Log[u(0xce)](u(0xb9)+h),syncSource(h);else!b[u(0xbc)]&&Log[u(0xcf)](u(0xb5)+h);this[u(0xc3)]['isFile'](i)?(Log[u(0xce)](u(0xa6)+i),a=a[u(0x96)]([u(0xb6),i])):Log[u(0xcf)](u(0xa4)+i);const j=g['split'](a86e['sep']),k=j[j[u(0xc2)]-0x1];k===u(0x99)&&a[u(0xbe)]('--production');const l=process[u(0xb1)][u(0xab)](0x2)[u(0xa2)](o=>o!==u(0xc5))[u(0xa2)](o=>o!==a[0x0]);l[u(0xc7)]((o,p)=>{const v=u;o===v(0x95)&&l[v(0xb3)](p,0x2),o==='-e'&&l[v(0xb3)](p,0x2);}),this['fsi'][u(0xa7)](u(0xc5),a[u(0x96)](l));}catch(o){console[u(0xd0)](o),process['exit'](0x1);}});export default Run;function a86c(){const w=['argv','env','splice','1909670qKqInq','Cannot\x20find\x20Node\x20Environment\x20File:\x20','--settings','installMeteorPackage','304239JjoPhx','Node\x20Env\x20Config:\x20','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)','\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.','docker','settings.json','push','join','config','mobile-server','length','fsi','constructor','run','6JczXsS','forEach','verbose','exclude-archs','app','1378175DIIVNj','1112VPQhrT','create','notice','warn','error','ios','checkMeteorPackage','rawLogs','findProjectDirectory','search','extraPackages','port','--env','concat','toString','211065EznLLg','production','inspect','isFile','autoupdate','18736NxkzWQ','(((.+)+)+)+$','Run\x20your\x20Meteor\x20application','2034jaTziJ','getConfigPath','filter','mobileServer','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','allowIncompatibleUpdate','Meteor\x20Settings:\x20','invokeMeteorCommand','local','cordova-build','.meteor','slice','562180tEuDpn','settings','process.env','Verifying\x20meteor\x20package\x20requirements\x20...','compareMakaToLatest'];a86c=function(){return w;};return a86c();}
1
+ const a86u=a86d;(function(a,b){const q=a86d,c=a();while(!![]){try{const d=parseInt(q(0x96))/0x1+parseInt(q(0x75))/0x2*(parseInt(q(0x9f))/0x3)+parseInt(q(0x8b))/0x4+parseInt(q(0xa1))/0x5+parseInt(q(0x6f))/0x6+-parseInt(q(0x88))/0x7+-parseInt(q(0x7b))/0x8*(parseInt(q(0x9d))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0x49671));const a86b=(function(){let a=!![];return function(b,c){const d=a?function(){const r=a86d;if(c){const e=c[r(0x79)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){const s=a86d;return a86a['toString']()[s(0x7c)](s(0x7a))[s(0x6e)]()[s(0x6a)](a86a)['search'](s(0x7a));});a86a();import a86e from'path';import a86f from'fs';import a86g from'dotenv';import{rimraf}from'rimraf';import{Command}from'../../command.js';function a86c(){const x=['mobile-server','rawLogs','argv','toString','858642kjnBNf','Meteor\x20Settings:\x20','compareMakaToLatest','exit','length','.meteor','2mumLZj','verbose','findProjectDirectory','ios','apply','(((.+)+)+)+$','24upvqYK','search','push','docker','process.env','settings.json','settings','production','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','error','filter','Node\x20Env\x20Config:\x20','development','2125396fpiHBT','app','autoupdate','2054244oIAJJq','splice','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)','config','split','--production','fsi','port','run','isDirectory','local','520821bMFHTd','warn','create','slice','isFile','openSync','join','3144744MjzPgg','--env','376449PuJsZM','sep','1747805IKaDmg','Run\x20your\x20Meteor\x20application','checkMeteorPackage','cordova-build','forEach','getConfigPath','Cannot\x20find\x20Node\x20Environment\x20File:\x20','notice','allowIncompatibleUpdate','mobileServer','installMeteorPackage','exclude-archs','constructor'];a86c=function(){return x;};return a86c();}import{Log}from'../../tools/log/log.class.js';function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x65;let f=c[d];return f;},a86d(a,b);}const syncSource=function(a){const t=a86d;a86f[t(0x9b)](a,'r'),a86g[t(0x8e)]({'path':a});},Run=Command[a86u(0x98)]({'name':a86u(0x93),'mustBeInMakaProject':!![],'shortDesc':a86u(0xa2),'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':['env','docker',a86u(0x6c),a86u(0x92),'inspect',a86u(0x67),a86u(0x76),a86u(0x66),'extraPackages','x',a86u(0x69),'production']},async function(a,b){const v=a86u;try{const c=this[v(0x91)][v(0x77)]();!this['fsi'][v(0xa3)](v(0x8a))&&(Log[v(0x65)]('Verifying\x20meteor\x20package\x20requirements\x20...'),await this['fsi'][v(0x68)](v(0x8a),{'cwd':c}));const d=a[0x0];if(d===v(0x78)){const m=this[v(0x91)][v(0x77)](),n=a86e[v(0x9c)](m,v(0x89),v(0x74),v(0x95),v(0xa4));this[v(0x91)][v(0x94)](n)&&await rimraf(n);}if(b['mobile-server']&&b[v(0x6b)]===!![]||b['m']&&b['m']===!![])throw v(0x8d);await this[v(0x91)][v(0x71)]();const f=b['env']?b['env']:v(0x87),g=this['fsi'][v(0xa6)](f),h=a86e[v(0x9c)](g,v(0x7f));let i=a86e[v(0x9c)](g,'settings.json');b['settings']?i=b[v(0x81)]:i=a86e[v(0x9c)](g,v(0x80));if(this[v(0x91)][v(0x9a)](h)&&!b[v(0x7e)])Log['notice'](v(0x86)+h),syncSource(h);else!b[v(0x7e)]&&Log['warn'](v(0xa7)+h);this[v(0x91)][v(0x9a)](i)?(Log[v(0x65)](v(0x70)+i),a=a['concat'](['--settings',i])):Log[v(0x97)](v(0x83)+i);const j=g[v(0x8f)](a86e[v(0xa0)]),k=j[j[v(0x73)]-0x1];k===v(0x82)&&a[v(0x7d)](v(0x90));const l=process[v(0x6d)][v(0x99)](0x2)[v(0x85)](o=>o!==v(0x93))[v(0x85)](o=>o!==a[0x0]);l[v(0xa5)]((o,p)=>{const w=v;o===w(0x9e)&&l[w(0x8c)](p,0x2),o==='-e'&&l[w(0x8c)](p,0x2);}),this[v(0x91)]['invokeMeteorCommand'](v(0x93),a['concat'](l));}catch(o){console[v(0x84)](o),process[v(0x72)](0x1);}});export default Run;
@@ -1 +1 @@
1
- (function(a,b){var f=a87d,c=a();while(!![]){try{var d=parseInt(f(0x15f))/0x1*(-parseInt(f(0x166))/0x2)+-parseInt(f(0x169))/0x3+-parseInt(f(0x15d))/0x4*(parseInt(f(0x160))/0x5)+parseInt(f(0x16a))/0x6+-parseInt(f(0x16b))/0x7*(-parseInt(f(0x164))/0x8)+-parseInt(f(0x163))/0x9*(parseInt(f(0x162))/0xa)+parseInt(f(0x165))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0x2fcf1));var a87b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a87d;if(c){var e=c[g(0x15e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){var h=a87d;return a87a[h(0x168)]()[h(0x161)]('(((.+)+)+)+$')['toString']()[h(0x167)](a87a)[h(0x161)]('(((.+)+)+)+$');});function a87c(){var i=['1544nliLXT','apply','10AdpYdv','2710SDzIjn','search','78300KJFcRM','315cUdnni','8480hJMVBJ','6469155vhVECI','604LGzCEE','constructor','toString','392382ZBdzrz','502896tHWMbp','931xTSlED'];a87c=function(){return i;};return a87c();}function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0x15d;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
+ function a87c(){var h=['6cRgJuc','621090wyGIaI','toString','10AQzKAw','1148488erSlur','627444OxlDbC','constructor','168gGGCjM','108818dzHHrA','153905GZBtQA','92817wPlQtD','search','33848OyDHPF'];a87c=function(){return h;};return a87c();}function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0xd7;var f=c[d];return f;},a87d(a,b);}(function(a,b){var f=a87d,c=a();while(!![]){try{var d=parseInt(f(0xd9))/0x1+parseInt(f(0xd7))/0x2+parseInt(f(0xe1))/0x3+-parseInt(f(0xe0))/0x4+-parseInt(f(0xd8))/0x5*(parseInt(f(0xdc))/0x6)+-parseInt(f(0xe3))/0x7*(-parseInt(f(0xdb))/0x8)+parseInt(f(0xdd))/0x9*(parseInt(f(0xdf))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0x33081));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(0xde)]()[g(0xda)]('(((.+)+)+)+$')['toString']()[g(0xe2)](a87a)[g(0xda)]('(((.+)+)+)+$');});a87a();import'./set.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';
@@ -1 +1 @@
1
- const a88j=a88d;(function(a,b){const h=a88d,c=a();while(!![]){try{const d=-parseInt(h(0x200))/0x1+parseInt(h(0x1fb))/0x2+parseInt(h(0x1de))/0x3*(parseInt(h(0x1e0))/0x4)+parseInt(h(0x1e5))/0x5*(parseInt(h(0x1f7))/0x6)+parseInt(h(0x1f5))/0x7+-parseInt(h(0x1ef))/0x8*(parseInt(h(0x1eb))/0x9)+-parseInt(h(0x1f0))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x6f819));function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x1dc;let f=c[d];return f;},a88d(a,b);}const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const i=a88d;return a88a['toString']()[i(0x1f8)](i(0x1e6))[i(0x1f6)]()[i(0x206)](a88a)['search']('(((.+)+)+)+$');});a88a();function a88c(){const l=['Could\x20not\x20find\x20directory','allowInsecure','1015762oCtIIi','One\x20or\x20the\x20other\x20buddy','success','workspace','disallowInsecure','487332MDGrzp','exit','maka\x20set:gc\x20--workspace\x20<path>','isDirectory','isFile','create','constructor','dark','setGlobalConfig','maka\x20set:global-config','141OLPtlr','maka\x20set:global-config\x20--cacert\x20<path>','63164XnmqcO','fsi','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Set\x20OpenAI\x20Key:\x20','error','5065jmTZVH','(((.+)+)+)+$','global-config','resolve','Set\x20workspace:\x20','help','657KEWHfa','cacert','Set\x20allowInsecure:\x20','boolean','62056xDWPbd','11868930tSrOsR','Set\x20global\x20Maka-CLI\x20settings','pallet','openai','Set\x20color\x20pallet\x20to:\x20','3854564twYplb','toString','5310gmXZbz','search'];a88c=function(){return l;};return a88c();}import a88e from'path';import a88f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a88j(0x205)]({'name':a88j(0x1e7),'usage':a88j(0x1dd),'aliases':['gc'],'maxOptsLength':0x3,'validOpts':[{'name':a88j(0x1ec),'boolFlag':![]},{'name':'allowInsecure','boolFlag':!![]},{'name':a88j(0x1ff),'boolFlag':!![]},{'name':'workspace','boolFlag':![]},{'name':a88j(0x1f3),'boolFlag':![]},{'name':a88j(0x1ea),'boolFlag':!![]},{'name':'pallet','values':['light',a88j(0x207)]}],'shortDesc':a88j(0x1f1),'description':'\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x0a\x20\x20There\x20are\x20occasions\x20where\x20your\x20network\x20may\x20need\x20an\x20intermediate\x20certificate\x0a\x20\x20to\x20allow\x20connections\x20outside.\x20\x20You\x20may\x20set\x20your\x20certificate\x20path\x20using\x20the\x20command:\x0a\x0a\x20\x20maka\x20set:gc\x20--cacert\x0a\x20\x20','examples':[a88j(0x1df),'maka\x20set:gc\x20--insecure\x20<path>',a88j(0x202)]},async function(a,b){const k=a88j;try{if(b[k(0x1ec)]){if(this[k(0x1e1)][k(0x204)](b[k(0x1ec)]))await this[k(0x1e1)][k(0x1dc)]({'cert':b[k(0x1ec)]}),Log['success']('Set\x20CA\x20Cert\x20Path:\x20'+b[k(0x1ec)]);else{const c=typeof b[k(0x1ec)]===k(0x1ee)?'Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.':k(0x1e2)+b[k(0x1ec)];throw Log['error'](c);}}if(b[k(0x1fe)]){const d=this[k(0x1e1)][k(0x203)](b['workspace']);if(d)await this[k(0x1e1)][k(0x1dc)]({'workspace':a88e[k(0x1e8)](b[k(0x1fe)])}),Log[k(0x1fd)](k(0x1e9)+a88e['resolve'](b[k(0x1fe)]));else throw Log[k(0x1e4)](k(0x1f9));}b[k(0x1f3)]&&(await this[k(0x1e1)]['setGlobalConfig']({'openai':b['openai']}),Log[k(0x1fd)](k(0x1e3)+b['openai']));b[k(0x1f2)]&&(await this['fsi']['setGlobalConfig']({'pallet':b[k(0x1f2)]}),Log[k(0x1fd)](k(0x1f4)+b[k(0x1f2)]));if(b[k(0x1fa)]){if(b[k(0x1fa)]&&b[k(0x1ff)])throw Log[k(0x1e4)](k(0x1fc));let f=b[k(0x1fa)];b['disallowInsecure']&&(f=![]),await this[k(0x1e1)][k(0x1dc)]({'allowInsecure':f}),Log['success'](k(0x1ed)+f);}process[k(0x201)](0x0);}catch(g){console['error'](g),process['exit'](0x0);}},a88f);
1
+ const a88k=a88d;(function(a,b){const h=a88d,c=a();while(!![]){try{const d=parseInt(h(0x174))/0x1+parseInt(h(0x17a))/0x2+parseInt(h(0x17b))/0x3*(-parseInt(h(0x192))/0x4)+-parseInt(h(0x18a))/0x5+parseInt(h(0x180))/0x6+-parseInt(h(0x18f))/0x7+-parseInt(h(0x179))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x42fb2));const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a88d;if(c){const e=c[i(0x17f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const j=a88d;return a88a[j(0x18d)]()[j(0x189)](j(0x175))[j(0x18d)]()['constructor'](a88a)[j(0x189)](j(0x175));});a88a();function a88c(){const m=['setGlobalConfig','1363520AdvVYJ','959556RUafsu','3nsMZOH','dark','Set\x20color\x20pallet\x20to:\x20','Could\x20not\x20find\x20directory','apply','1688424sZsZXo','\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','maka\x20set:gc\x20--insecure\x20<path>','error','Set\x20CA\x20Cert\x20Path:\x20','Set\x20workspace:\x20','isDirectory','fsi','maka\x20set:global-config','search','1919535RYlOnv','resolve','create','toString','pallet','1521037iSGZvp','success','openai','721852dlFxRq','workspace','light','exit','disallowInsecure','Set\x20global\x20Maka-CLI\x20settings','cacert','allowInsecure','465273lDIdFE','(((.+)+)+)+$','isFile','help'];a88c=function(){return m;};return a88c();}import a88e from'path';import a88f from'./set.command.js';function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x16e;let f=c[d];return f;},a88d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a88k(0x18c)]({'name':'global-config','usage':a88k(0x188),'aliases':['gc'],'maxOptsLength':0x3,'validOpts':[{'name':a88k(0x172),'boolFlag':![]},{'name':a88k(0x173),'boolFlag':!![]},{'name':a88k(0x170),'boolFlag':!![]},{'name':a88k(0x193),'boolFlag':![]},{'name':a88k(0x191),'boolFlag':![]},{'name':a88k(0x177),'boolFlag':!![]},{'name':a88k(0x18e),'values':[a88k(0x16e),a88k(0x17c)]}],'shortDesc':a88k(0x171),'description':a88k(0x181),'examples':['maka\x20set:global-config\x20--cacert\x20<path>',a88k(0x182),'maka\x20set:gc\x20--workspace\x20<path>']},async function(a,b){const l=a88k;try{if(b['cacert']){if(this[l(0x187)][l(0x176)](b[l(0x172)]))await this[l(0x187)][l(0x178)]({'cert':b[l(0x172)]}),Log[l(0x190)](l(0x184)+b[l(0x172)]);else{const c=typeof b[l(0x172)]==='boolean'?'Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.':'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+b[l(0x172)];throw Log[l(0x183)](c);}}if(b[l(0x193)]){const d=this[l(0x187)][l(0x186)](b['workspace']);if(d)await this[l(0x187)][l(0x178)]({'workspace':a88e[l(0x18b)](b[l(0x193)])}),Log[l(0x190)](l(0x185)+a88e['resolve'](b[l(0x193)]));else throw Log[l(0x183)](l(0x17e));}b[l(0x191)]&&(await this['fsi']['setGlobalConfig']({'openai':b[l(0x191)]}),Log[l(0x190)]('Set\x20OpenAI\x20Key:\x20'+b['openai']));b[l(0x18e)]&&(await this[l(0x187)][l(0x178)]({'pallet':b[l(0x18e)]}),Log[l(0x190)](l(0x17d)+b[l(0x18e)]));if(b[l(0x173)]){if(b[l(0x173)]&&b['disallowInsecure'])throw Log[l(0x183)]('One\x20or\x20the\x20other\x20buddy');let f=b['allowInsecure'];b[l(0x170)]&&(f=![]),await this['fsi'][l(0x178)]({'allowInsecure':f}),Log['success']('Set\x20allowInsecure:\x20'+f);}process[l(0x16f)](0x0);}catch(g){console[l(0x183)](g),process[l(0x16f)](0x0);}},a88f);
@@ -1 +1 @@
1
- function a89c(){var j=['204fPLwTT','toString','constructor','search','368810MgcTRX','1907121BbxpdR','3JxNUOa','950RCyUqU','Set\x20local\x20maka\x20app\x20settings','Sorry,\x20not\x20implemented\x20yet','223884BzyZZV','(((.+)+)+)+$','26323VBpkqu','create','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','416ZmhjyB','17269uPlyYw','47134wVQoVV','882423ZeHxZa','notice','maka\x20set:local-config','24zjedJy','8uudsAB'];a89c=function(){return j;};return a89c();}var a89h=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=parseInt(f(0xb6))/0x1*(-parseInt(f(0xc1))/0x2)+-parseInt(f(0xb5))/0x3+-parseInt(f(0xc5))/0x4*(-parseInt(f(0xb4))/0x5)+parseInt(f(0xc7))/0x6*(-parseInt(f(0xc0))/0x7)+parseInt(f(0xc6))/0x8*(-parseInt(f(0xc2))/0x9)+-parseInt(f(0xb7))/0xa*(-parseInt(f(0xbc))/0xb)+parseInt(f(0xba))/0xc*(parseInt(f(0xbf))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x5c6e6));var a89b=(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;};}()),a89a=a89b(this,function(){var g=a89d;return a89a[g(0xc8)]()[g(0xca)](g(0xbb))[g(0xc8)]()[g(0xc9)](a89a)[g(0xca)]('(((.+)+)+)+$');});a89a();function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0xb4;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[a89h(0xbd)]({'name':'local-config','usage':a89h(0xc4),'examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'shortDesc':a89h(0xb8),'validOpts':[],'description':a89h(0xbe)},async function(){var i=a89h;Log[i(0xc3)](i(0xb9));},a89e);
1
+ var a89i=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=parseInt(f(0x140))/0x1+parseInt(f(0x130))/0x2*(-parseInt(f(0x13a))/0x3)+parseInt(f(0x135))/0x4*(-parseInt(f(0x134))/0x5)+-parseInt(f(0x133))/0x6+parseInt(f(0x12e))/0x7+parseInt(f(0x131))/0x8+-parseInt(f(0x13f))/0x9*(-parseInt(f(0x12d))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x39c3b));var a89b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a89d;if(c){var e=c[g(0x12f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){var h=a89d;return a89a['toString']()[h(0x137)](h(0x132))[h(0x13b)]()[h(0x13d)](a89a)[h(0x137)](h(0x132));});a89a();import a89e from'./set.command.js';import{Command}from'../../command.js';function a89c(){var k=['search','Set\x20local\x20maka\x20app\x20settings','Sorry,\x20not\x20implemented\x20yet','1071xQEXjK','toString','local-config','constructor','maka\x20set:local-config','9xmpZqV','121263UmEVoa','6934140RiDiKs','2313983qbGUdW','apply','1730LWCJgu','795392JosGRN','(((.+)+)+)+$','1704114EkmalM','1205EnlxcH','6892eOjpsJ','create'];a89c=function(){return k;};return a89c();}import{Log}from'../../tools/log/log.class.js';function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0x12d;var f=c[d];return f;},a89d(a,b);}Command[a89i(0x136)]({'name':a89i(0x13c),'usage':a89i(0x13e),'examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'shortDesc':a89i(0x138),'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['notice'](j(0x139));},a89e);
@@ -1 +1 @@
1
- function a90c(){const k=['24MKjKas','runSubCommand','2527670EBpMYU','450255SXEZEB','apply','35364OvvrMB','2866701WZgejF','563391LAQlrj','maka\x20set:<sub-command>','840xyYJZL','\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','findSubCommand','set','2tIpxOr','(((.+)+)+)+$','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','34341043hRZbCc','toString','45CLvsxQ','1341192rNEEjc','search'];a90c=function(){return k;};return a90c();}const a90i=a90d;function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0xbf;let f=c[d];return f;},a90d(a,b);}(function(a,b){const f=a90d,c=a();while(!![]){try{const d=-parseInt(f(0xcb))/0x1+-parseInt(f(0xd1))/0x2*(parseInt(f(0xca))/0x3)+-parseInt(f(0xc4))/0x4*(parseInt(f(0xc7))/0x5)+-parseInt(f(0xcd))/0x6*(-parseInt(f(0xc9))/0x7)+parseInt(f(0xc2))/0x8+-parseInt(f(0xc1))/0x9*(parseInt(f(0xc6))/0xa)+parseInt(f(0xbf))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0xa47cf));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a90d;if(c){const e=c[g(0xc8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const h=a90d;return a90a[h(0xc0)]()[h(0xc3)](h(0xd2))[h(0xc0)]()['constructor'](a90a)['search']('(((.+)+)+)+$');});a90a();import{Command}from'../../command.js';const SetCommand=Command['create']({'name':a90i(0xd0),'usage':a90i(0xcc),'shortDesc':a90i(0xd3),'description':a90i(0xce),'validOpts':[]},async function(a,b){const j=a90i,c=a[0x0],d=this[j(0xcf)](c);d&&this[j(0xc5)](c,a,b);});export default SetCommand;
1
+ const a90i=a90d;(function(a,b){const f=a90d,c=a();while(!![]){try{const d=-parseInt(f(0x15d))/0x1+-parseInt(f(0x160))/0x2*(-parseInt(f(0x15c))/0x3)+-parseInt(f(0x159))/0x4*(parseInt(f(0x154))/0x5)+parseInt(f(0x163))/0x6*(parseInt(f(0x151))/0x7)+-parseInt(f(0x15b))/0x8*(parseInt(f(0x152))/0x9)+-parseInt(f(0x14f))/0xa*(-parseInt(f(0x15e))/0xb)+parseInt(f(0x162))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x57805));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a90d;if(c){const e=c[g(0x161)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const h=a90d;return a90a[h(0x156)]()[h(0x15a)](h(0x158))[h(0x156)]()[h(0x153)](a90a)[h(0x15a)]('(((.+)+)+)+$');});a90a();import{Command}from'../../command.js';function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x14f;let f=c[d];return f;},a90d(a,b);}function a90c(){const k=['10KLmUwG','runSubCommand','739823fAfsoO','5465493PKCjKD','constructor','1835TiAWuP','\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','toString','maka\x20set:<sub-command>','(((.+)+)+)+$','868WzCHxu','search','8ghgrWJ','9aHErcQ','609385ZNMwFe','472571oPyFxq','set','171602eagdoZ','apply','12447300fINofC','18jyCrXg','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally'];a90c=function(){return k;};return a90c();}const SetCommand=Command['create']({'name':a90i(0x15f),'usage':a90i(0x157),'shortDesc':a90i(0x164),'description':a90i(0x155),'validOpts':[]},async function(a,b){const j=a90i,c=a[0x0],d=this['findSubCommand'](c);d&&this[j(0x150)](c,a,b);});export default SetCommand;
@@ -1 +1 @@
1
- const a91l=a91d;function a91c(){const n=['env','maka\x20ssh\x20--env\x20staging','18NrLmBW','join','maka\x20ssh\x20<command>','8WWpfOb','verbose','29gDkFnh','maka\x20ssh\x20--env\x20prod','parse','constructor','61162NiBiRD','fsi','2959077LRSLHT','40hWkubG','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','12681189viOVMe','829332ksmdTB','length','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','3076392SiBHJa','2107260abAyXd','ssh.json','toString','(((.+)+)+)+$','readFileSync','sshSync','40894BjmLZp','search','create'];a91c=function(){return n;};return a91c();}(function(a,b){const j=a91d,c=a();while(!![]){try{const d=-parseInt(j(0xc9))/0x1*(parseInt(j(0xcd))/0x2)+-parseInt(j(0xd4))/0x3+-parseInt(j(0xd8))/0x4+parseInt(j(0xd9))/0x5+-parseInt(j(0xc4))/0x6*(-parseInt(j(0xbf))/0x7)+parseInt(j(0xc7))/0x8*(parseInt(j(0xd3))/0x9)+-parseInt(j(0xd0))/0xa*(-parseInt(j(0xcf))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xf2194));const a91b=(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;};}()),a91a=a91b(this,function(){const k=a91d;return a91a[k(0xbb)]()[k(0xc0)]('(((.+)+)+)+$')[k(0xbb)]()[k(0xcc)](a91a)[k(0xc0)](k(0xbc));});a91a();import a91e from'fs';import a91f from'path';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-0xbb;let f=c[d];return f;},a91d(a,b);}import{Log}from'../tools/log/log.class.js';Command[a91l(0xc1)]({'name':'ssh','usage':a91l(0xc6),'mustBeInMakaProject':!![],'requiredOpts':[a91l(0xc2)],'validOpts':['env',a91l(0xc8)],'isPro':!![],'shortDesc':a91l(0xd6),'examples':['maka\x20ssh\x20--env\x20dev',a91l(0xc3),a91l(0xca),a91l(0xd1),a91l(0xd2),a91l(0xd7)]},async function(a,b){const m=a91l;try{const c=this[m(0xce)]['getConfigPath'](b['env']);let d='';a[m(0xd5)]>0x0&&(d=a[0x0]);const f=a91f[m(0xc5)](c,m(0xda)),g=a91e[m(0xbd)](f)['toString'](),h=JSON[m(0xcb)](g);Object['assign'](h,{'env':c}),SSH[m(0xbe)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b['verbose']});}catch(i){Log['error'](i),process['exit'](0x1);}});
1
+ const a91m=a91d;(function(a,b){const j=a91d,c=a();while(!![]){try{const d=-parseInt(j(0xcb))/0x1*(parseInt(j(0xcd))/0x2)+parseInt(j(0xd9))/0x3+-parseInt(j(0xe0))/0x4*(-parseInt(j(0xc4))/0x5)+parseInt(j(0xd1))/0x6*(parseInt(j(0xe7))/0x7)+parseInt(j(0xce))/0x8*(parseInt(j(0xdf))/0x9)+parseInt(j(0xdb))/0xa+parseInt(j(0xdd))/0xb*(-parseInt(j(0xe2))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xd870e));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a91d;if(c){const e=c[k(0xdc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const l=a91d;return a91a[l(0xc8)]()[l(0xe6)](l(0xe3))[l(0xc8)]()[l(0xcf)](a91a)[l(0xe6)](l(0xe3));});a91a();function a91c(){const o=['70gPyZAY','verbose','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','exit','1646885yzVHpI','env','maka\x20ssh\x20--env\x20staging','maka\x20ssh\x20--env\x20prod','toString','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','sshSync','14eyOnFN','maka\x20ssh\x20--env\x20dev','88728LUKKIX','8CPNnMR','constructor','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','396654AEbDAv','getConfigPath','parse','join','ssh.json','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','error','length','1489155uviLfd','readFileSync','6444400qpcbcC','apply','11IuQrTH','maka\x20ssh\x20<command>','9310194UpXUKU','16XqrSMa','assign','31755012qfIgEl','(((.+)+)+)+$','ssh','create','search'];a91c=function(){return o;};return a91c();}function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0xc3;let f=c[d];return f;},a91d(a,b);}import a91e from'fs';import a91f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a91m(0xe5)]({'name':a91m(0xe4),'usage':a91m(0xde),'mustBeInMakaProject':!![],'requiredOpts':['env'],'validOpts':[a91m(0xc5),'verbose'],'isPro':!![],'shortDesc':a91m(0xe9),'examples':[a91m(0xcc),a91m(0xc6),a91m(0xc7),a91m(0xc9),a91m(0xd0),a91m(0xd6)]},async function(a,b){const n=a91m;try{const c=this['fsi'][n(0xd2)](b['env']);let d='';a[n(0xd8)]>0x0&&(d=a[0x0]);const f=a91f[n(0xd4)](c,n(0xd5)),g=a91e[n(0xda)](f)[n(0xc8)](),h=JSON[n(0xd3)](g);Object[n(0xe1)](h,{'env':c}),SSH[n(0xca)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0xe8)]});}catch(i){Log[n(0xd7)](i),process[n(0xc3)](0x1);}});
@@ -1 +1 @@
1
- const a92y=a92d;function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x173;let f=c[d];return f;},a92d(a,b);}(function(a,b){const v=a92d,c=a();while(!![]){try{const d=parseInt(v(0x17e))/0x1+parseInt(v(0x183))/0x2+parseInt(v(0x197))/0x3+parseInt(v(0x17f))/0x4+parseInt(v(0x18f))/0x5+-parseInt(v(0x192))/0x6*(parseInt(v(0x17d))/0x7)+-parseInt(v(0x1ad))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0x21a93));const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0x194)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a['toString']()[x(0x189)](x(0x178))[x(0x185)]()[x(0x196)](a92a)[x(0x189)](x(0x178));});a92a();import a92e from'fs';import a92f from'path';function a92c(){const A=['email','error','genSSC','join','stringify','(((.+)+)+)+$','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','env','appName','Using\x20saved\x20letsencrypt\x20config','42isltZZ','67037czdCGC','99740hjtlfG','fsi','getProjectConfig','withSpinner','92118CExhEJ','genCSR','toString','letsencrypt.json','Remote\x20host\x20connection\x20successful','readFileSync','search','create','.csr','mkKeysDir','start','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','1094445aeiGif','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','writeFileSync','157650VMQPjj','existsSync','apply','sudo\x20snap\x20install\x20--classic\x20certbot','constructor','625368MDfOgy','maka\x20ssl\x20--env\x20dev\x20generate-csr','generate-csr','[?]\x20Domains\x20to\x20register:\x20','generate-ssc','uname\x20-a','ssh','exit','assign','domains','Verifying\x20Letsencrypt\x20configuration','ask','.key','.crt','domainNames','notice','ssl','/ssh.json','Checking\x20remote\x20host\x20availability','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','parse','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','2158808TlsRUg','success','\x20--email\x20'];a92c=function(){return A;};return a92c();}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(0x18a)]({'name':a92y(0x1a7),'usage':'maka\x20ssl\x20[command]','validOpts':['domains',a92y(0x173)],'requiredOpts':[a92y(0x17a)],'shortDesc':'Create\x20and\x20manage\x20your\x20SSL\x20operations.','mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':[a92y(0x198),a92y(0x1ac),a92y(0x18e)]},async function(a,b){const z=a92y,c=this[z(0x180)][z(0x181)](),d=this[z(0x180)]['getConfigPath'](b[z(0x17a)]),f=this[z(0x180)][z(0x18c)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0x199))SSL[z(0x184)]({'keyName':c[z(0x17b)]+z(0x1a3),'csrName':c[z(0x17b)]+z(0x18b),'cwd':f});else{if(g===z(0x19b)){if(!a92e[z(0x193)](a92f[z(0x176)](f,c['appName']+z(0x1a3))))throw z(0x1aa)+a92f[z(0x176)](f,c[z(0x17b)]+z(0x1a3));if(!a92e['existsSync'](a92f['join'](f,c[z(0x17b)]+'.csr')))throw'The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20'+a92f[z(0x176)](f,c[z(0x17b)]+'.csr');SSL[z(0x175)]({'keyName':c[z(0x17b)]+z(0x1a3),'crtName':c['appName']+z(0x1a4),'cwd':f}),Log[z(0x1a6)]('New\x20CSR\x20written\x20to\x20'+f);}else{if(g==='letsencrypt'){let h=b['domains'],i=b[z(0x173)];try{const p=a92e[z(0x188)](a92f[z(0x176)](d,'letsencrypt.json'))[z(0x185)](),q=JSON[z(0x1ab)](p);h=b['domains']?b[z(0x1a0)]:q[z(0x1a5)],i=b[z(0x173)]?b['email']:q['emailUpdate'],(!b['email']||!b[z(0x1a0)])&&Log[z(0x1a6)](z(0x17c));}catch(r){}const j=JSON[z(0x1ab)](a92e[z(0x188)](d+z(0x1a8))[z(0x185)]());Object[z(0x19f)](j,{'env':d}),Log[z(0x1a6)](z(0x1a9));try{const s=SSH['ping'](z(0x19c),j);if(!s)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(s)Log[z(0x1ae)](z(0x187));}catch(t){Log['error'](t);return;}const k=Log[z(0x182)]();k[z(0x18d)](z(0x1a1)),SSH[z(0x19d)](z(0x179),{...j}),SSH[z(0x19d)](z(0x195),{...j}),SSH[z(0x19d)]('sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot',{...j}),k[z(0x1ae)]();const l=h?h:await Actions['ask'](z(0x19a)),m=i?i:await Actions[z(0x1a2)]('Email\x20to\x20use\x20for\x20auto-updates:\x20');SSH[z(0x19d)](z(0x190)+l+z(0x1af)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0x177)](n,null,0x2);a92e[z(0x191)](a92f['join'](d,z(0x186)),o);}else throw'Please\x20provide\x20a\x20command.';}}}catch(u){console[z(0x174)](u),process[z(0x19e)](0x0);}});
1
+ const a92y=a92d;(function(a,b){const v=a92d,c=a();while(!![]){try{const d=-parseInt(v(0x20b))/0x1*(-parseInt(v(0x227))/0x2)+-parseInt(v(0x204))/0x3*(parseInt(v(0x230))/0x4)+-parseInt(v(0x212))/0x5*(parseInt(v(0x1f1))/0x6)+-parseInt(v(0x206))/0x7+-parseInt(v(0x1ef))/0x8+-parseInt(v(0x202))/0x9+parseInt(v(0x1fa))/0xa*(parseInt(v(0x223))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xac26b));const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0x1ff)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a['toString']()[x(0x20f)](x(0x214))[x(0x1ed)]()[x(0x22a)](a92a)[x(0x20f)](x(0x214));});a92a();function a92c(){const A=['parse','getConfigPath','maka\x20ssl\x20--env\x20dev\x20generate-csr','.key','appName','ssl','domainNames','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','1043603XuxIzQ','ask','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','4498YDBQNf','generate-ssc','genCSR','constructor','writeFileSync','uname\x20-a','[?]\x20Domains\x20to\x20register:\x20','sudo\x20snap\x20install\x20--classic\x20certbot','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','541244aOGTJN','\x20--email\x20','Using\x20saved\x20letsencrypt\x20config','env','success','toString','/ssh.json','9532144ZCPmtP','ping','6jYUYWB','fsi','error','Create\x20and\x20manage\x20your\x20SSL\x20operations.','generate-csr','.csr','email','stringify','existsSync','290rezGda','letsencrypt','.crt','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','create','apply','withSpinner','maka\x20ssl\x20[command]','2471418EQpFOr','Remote\x20host\x20connection\x20successful','3CnvEUY','getProjectConfig','667485ORxyWu','readFileSync','Verifying\x20Letsencrypt\x20configuration','join','exit','263VkXLGn','letsencrypt.json','Email\x20to\x20use\x20for\x20auto-updates:\x20','Please\x20provide\x20a\x20command.','search','assign','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','4704435YDLUTv','New\x20CSR\x20written\x20to\x20','(((.+)+)+)+$','mkKeysDir','domains','notice','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','emailUpdate','ssh'];a92c=function(){return A;};return a92c();}function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x1e9;let f=c[d];return f;},a92d(a,b);}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[a92y(0x1fe)]({'name':a92y(0x220),'usage':a92y(0x201),'validOpts':[a92y(0x216),a92y(0x1f7)],'requiredOpts':[a92y(0x1eb)],'shortDesc':a92y(0x1f4),'mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':[a92y(0x21d),'maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate',a92y(0x218)]},async function(a,b){const z=a92y,c=this[z(0x1f2)][z(0x205)](),d=this[z(0x1f2)][z(0x21c)](b[z(0x1eb)]),f=this[z(0x1f2)][z(0x215)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0x1f5))SSL[z(0x229)]({'keyName':c[z(0x21f)]+'.key','csrName':c[z(0x21f)]+z(0x1f6),'cwd':f});else{if(g===z(0x228)){if(!a92e[z(0x1f9)](a92f[z(0x209)](f,c[z(0x21f)]+z(0x21e))))throw z(0x1fd)+a92f['join'](f,c['appName']+z(0x21e));if(!a92e[z(0x1f9)](a92f[z(0x209)](f,c['appName']+z(0x1f6))))throw z(0x22f)+a92f[z(0x209)](f,c[z(0x21f)]+z(0x1f6));SSL['genSSC']({'keyName':c[z(0x21f)]+z(0x21e),'crtName':c[z(0x21f)]+z(0x1fc),'cwd':f}),Log['notice'](z(0x213)+f);}else{if(g===z(0x1fb)){let h=b[z(0x216)],i=b['email'];try{const p=a92e[z(0x207)](a92f[z(0x209)](d,z(0x20c)))[z(0x1ed)](),q=JSON[z(0x21b)](p);h=b[z(0x216)]?b['domains']:q[z(0x221)],i=b[z(0x1f7)]?b[z(0x1f7)]:q[z(0x219)],(!b['email']||!b['domains'])&&Log[z(0x217)](z(0x1ea));}catch(r){}const j=JSON[z(0x21b)](a92e['readFileSync'](d+z(0x1ee))[z(0x1ed)]());Object[z(0x210)](j,{'env':d}),Log[z(0x217)]('Checking\x20remote\x20host\x20availability');try{const s=SSH[z(0x1f0)](z(0x22c),j);if(!s)throw z(0x225);if(s)Log[z(0x1ec)](z(0x203));}catch(t){Log[z(0x1f3)](t);return;}const k=Log[z(0x200)]();k['start'](z(0x208)),SSH[z(0x21a)](z(0x226),{...j}),SSH[z(0x21a)](z(0x22e),{...j}),SSH['ssh'](z(0x211),{...j}),k[z(0x1ec)]();const l=h?h:await Actions[z(0x224)](z(0x22d)),m=i?i:await Actions[z(0x224)](z(0x20d));SSH[z(0x21a)](z(0x222)+l+z(0x1e9)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0x1f8)](n,null,0x2);a92e[z(0x22b)](a92f[z(0x209)](d,z(0x20c)),o);}else throw z(0x20e);}}}catch(u){console['error'](u),process[z(0x20a)](0x0);}});
@@ -1 +1 @@
1
- const a93q=a93d;(function(a,b){const m=a93d,c=a();while(!![]){try{const d=parseInt(m(0x1c0))/0x1+parseInt(m(0x1c7))/0x2*(parseInt(m(0x1c9))/0x3)+-parseInt(m(0x1b7))/0x4+-parseInt(m(0x19c))/0x5*(-parseInt(m(0x1c3))/0x6)+parseInt(m(0x1b3))/0x7+parseInt(m(0x19f))/0x8+parseInt(m(0x1d5))/0x9*(-parseInt(m(0x1a2))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x2bebe));const a93b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a93d;if(c){const e=c[n(0x1b5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){const o=a93d;return a93a[o(0x1a4)]()[o(0x1cf)]('(((.+)+)+)+$')[o(0x1a4)]()[o(0x1ac)](a93a)[o(0x1cf)](o(0x1bc));});a93a();function a93d(a,b){const c=a93c();return a93d=function(d,e){d=d-0x194;let f=c[d];return f;},a93d(a,b);}import a93e from'fs';import a93f from'path';import a93g from'dotenv';import{Command}from'../command.js';function a93c(){const t=['4275fySZwu','parse','rawLogs','696152OPTZya','getConfigPath','isFile','258110vRKycd','config.json','toString','argv','fsi','unit','engines','env','concat','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','constructor','jasmine','testAppPath','port','exit','invokeMeteorCommand','utf8','1383249RhWjyI','.maka','apply','config','908236CuOIrp','Meteor\x20Settings:\x20','driver','--packages','test-packages','(((.+)+)+)+$','Cannot\x20find\x20Node\x20Environment\x20File:\x20','mocha','packages','197725cfwgEf','forEach','--driver-package','2142fGOSrS','driverPackage','--full-app','readFileSync','4474XGIYeW','join','78zbqvhN','create','settings.json','test','openSync','filter','search','maka\x20test\x20<opts>','sanjo:jasmine','notice','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','slice','153cIEuiM','inspect','splice','development','findProjectDirectory','driver-package','--env','none','once'];a93c=function(){return t;};return a93c();}import{Log}from'../tools/log/log.class.js';const syncSource=function(a){const p=a93d;a93e[p(0x1cd)](a,'r'),a93g[p(0x1b6)]({'path':a});};Command[a93q(0x1ca)]({'name':'test','mustBeInMakaProject':!![],'validOpts':[a93q(0x19b),a93q(0x1bf),a93q(0x1b9),a93q(0x1c4),a93q(0x1a7),a93q(0x1a9),a93q(0x19e),a93q(0x1af),a93q(0x194),a93q(0x1ae)],'usage':a93q(0x1d0),'shortDesc':'Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','examples':[]},function(a,b){const r=a93q;try{let c=this[r(0x1a6)]['getConfigPath'](r(0x196));b['env']&&(c=this[r(0x1a6)][r(0x1a0)](b[r(0x1a9)]));(!b[r(0x1a7)]||!!b[r(0x19b)])&&(a=a['concat']([r(0x1c5)]));b['unit']&&delete b[r(0x1a7)];let d=b[r(0x198)]||b['driver']||r(0x19a);if(d===r(0x19a)){const j=JSON[r(0x19d)](a93e[r(0x1c6)](a93f['join'](this[r(0x1a6)][r(0x197)](),r(0x1b4),r(0x1a3)),r(0x1b2)));if(j['engines']['test']===r(0x1ad))d=r(0x1d1);else j[r(0x1a8)][r(0x1cc)]===r(0x1be)&&(d='meteortesting:mocha');}if(d===r(0x19a))throw r(0x1d3);(!b[r(0x198)]||!b[r(0x1b9)])&&(a=a[r(0x1aa)]([r(0x1c2),d]));const f=a93f[r(0x1c8)](c,r(0x1cb));this[r(0x1a6)][r(0x1a1)](f)?(Log[r(0x1d2)](r(0x1b8)+f),a=a[r(0x1aa)](['--settings',f])):Log['warn'](r(0x1ab)+f);const g=a93f['join'](c,'process.env');this[r(0x1a6)]['isFile'](g)?(Log[r(0x1d2)]('Node\x20Env\x20Config:\x20'+g),syncSource(g)):Log['warn'](r(0x1bd)+g);const h=process[r(0x1a5)][r(0x1d4)](0x2)[r(0x1ce)](k=>k!==r(0x199))['filter'](k=>k!=='test')[r(0x1ce)](k=>k!==a[0x0]);h[r(0x1c1)]((k,l)=>{const s=r;(k===s(0x199)||k==='--driver')&&h[s(0x195)](l,0x2),k===s(0x1ba)&&h['splice'](l,0x1);});const i=b[r(0x1bf)]?r(0x1bb):r(0x1cc);this[r(0x1a6)][r(0x1b1)](i,a[r(0x1aa)](h));}catch(k){console['error'](k),process[r(0x1b0)](0x0);}});
1
+ function a93c(){const t=['189nuMVgh','driverPackage','sanjo:jasmine','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','findProjectDirectory','argv','splice','756559xWpUbx','env','error','exit','readFileSync','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','4jUdBmQ','279624lBegjr','engines','slice','706566meTzXP','(((.+)+)+)+$','--packages','forEach','maka\x20test\x20<opts>','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','test','.maka','--driver-package','utf8','config','rawLogs','11SIeGww','9YxMgIl','once','5372633ntPcFx','apply','isFile','--driver','filter','unit','constructor','4241742nUvJAW','parse','packages','1277065YEiLGO','join','inspect','warn','driver-package','none','openSync','concat','toString','Node\x20Env\x20Config:\x20','fsi','getConfigPath','--env','test-packages','config.json','meteortesting:mocha','search','4893550JpuRUW','driver','settings.json','mocha','notice'];a93c=function(){return t;};return a93c();}const a93q=a93d;(function(a,b){const m=a93d,c=a();while(!![]){try{const d=-parseInt(m(0xe1))/0x1+-parseInt(m(0xeb))/0x2*(-parseInt(m(0xf8))/0x3)+-parseInt(m(0xe7))/0x4*(-parseInt(m(0xc4))/0x5)+parseInt(m(0x101))/0x6+parseInt(m(0xfa))/0x7+-parseInt(m(0xe8))/0x8*(parseInt(m(0xda))/0x9)+parseInt(m(0xd5))/0xa*(-parseInt(m(0xf7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0xc5b53));const a93b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a93d;if(c){const e=c[n(0xfb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){const o=a93d;return a93a['toString']()[o(0xd4)](o(0xec))[o(0xcc)]()[o(0x100)](a93a)['search']('(((.+)+)+)+$');});a93a();import a93e from'fs';import a93f from'path';import a93g from'dotenv';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a93d(a,b){const c=a93c();return a93d=function(d,e){d=d-0xc4;let f=c[d];return f;},a93d(a,b);}const syncSource=function(a){const p=a93d;a93e[p(0xca)](a,'r'),a93g[p(0xf5)]({'path':a});};Command['create']({'name':a93q(0xf1),'mustBeInMakaProject':!![],'validOpts':['once','packages',a93q(0xd6),a93q(0xdb),'unit','env',a93q(0xf6),'port',a93q(0xc6),'testAppPath'],'usage':a93q(0xef),'shortDesc':a93q(0xf0),'examples':[]},function(a,b){const r=a93q;try{let c=this[r(0xce)][r(0xcf)]('development');b[r(0xe2)]&&(c=this['fsi'][r(0xcf)](b['env']));(!b[r(0xff)]||!!b[r(0xf9)])&&(a=a['concat'](['--full-app']));b[r(0xff)]&&delete b[r(0xff)];let d=b[r(0xc8)]||b[r(0xd6)]||r(0xc9);if(d===r(0xc9)){const j=JSON[r(0x102)](a93e[r(0xe5)](a93f[r(0xc5)](this[r(0xce)][r(0xde)](),r(0xf2),r(0xd2)),r(0xf4)));if(j[r(0xe9)][r(0xf1)]==='jasmine')d=r(0xdc);else j['engines'][r(0xf1)]===r(0xd8)&&(d=r(0xd3));}if(d===r(0xc9))throw r(0xe6);(!b[r(0xc8)]||!b[r(0xd6)])&&(a=a[r(0xcb)]([r(0xf3),d]));const f=a93f[r(0xc5)](c,r(0xd7));this[r(0xce)][r(0xfc)](f)?(Log[r(0xd9)]('Meteor\x20Settings:\x20'+f),a=a[r(0xcb)](['--settings',f])):Log['warn'](r(0xdd)+f);const g=a93f[r(0xc5)](c,'process.env');this[r(0xce)][r(0xfc)](g)?(Log[r(0xd9)](r(0xcd)+g),syncSource(g)):Log[r(0xc7)]('Cannot\x20find\x20Node\x20Environment\x20File:\x20'+g);const h=process[r(0xdf)][r(0xea)](0x2)[r(0xfe)](k=>k!==r(0xd0))[r(0xfe)](k=>k!=='test')[r(0xfe)](k=>k!==a[0x0]);h[r(0xee)]((k,l)=>{const s=r;(k==='--env'||k===s(0xfd))&&h[s(0xe0)](l,0x2),k===s(0xed)&&h['splice'](l,0x1);});const i=b[r(0x103)]?r(0xd1):'test';this[r(0xce)]['invokeMeteorCommand'](i,a[r(0xcb)](h));}catch(k){console[r(0xe3)](k),process[r(0xe4)](0x0);}});
@@ -1 +1 @@
1
- const a94n=a94d;(function(a,b){const k=a94d,c=a();while(!![]){try{const d=-parseInt(k(0x168))/0x1*(parseInt(k(0x15b))/0x2)+-parseInt(k(0x167))/0x3*(parseInt(k(0x17f))/0x4)+parseInt(k(0x15d))/0x5*(parseInt(k(0x182))/0x6)+-parseInt(k(0x155))/0x7+parseInt(k(0x186))/0x8+-parseInt(k(0x16d))/0x9*(parseInt(k(0x153))/0xa)+parseInt(k(0x160))/0xb*(parseInt(k(0x15f))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0x9834d));const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a94d;if(c){const e=c[l(0x16a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const m=a94d;return a94a[m(0x16c)]()[m(0x185)](m(0x15c))[m(0x16c)]()[m(0x157)](a94a)[m(0x185)](m(0x15c));});function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x14f;let f=c[d];return f;},a94d(a,b);}function a94c(){const p=['53679VHDpAk','1Jwteed','\x20node\x20-v','apply','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','toString','4667346ZERXQE','maka\x20v','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','compareMakaToLatest','fsi','exit','notice','create','Maka\x20','4.6.21','isMakaProject','win32','----------------------Project----------------------------','getProjectsMeteorNodeVersion','\x0a\x20\x20When\x20using\x20the\x20--verbose\x20flag,\x20maka\x20will\x20also\x20check\x20the\x20version\x20of\x20the\x20system\x27s\x20meteor\x20and\x20node\x20versions\x0a\x20\x20along\x20with\x20the\x20project\x27s\x20meteor\x20and\x20node\x20versions.\x20If\x20the\x20system\x27s\x20meteor\x20version\x20is\x20greater\x20than\x20the\x0a\x20\x20project\x27s\x20meteor\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20meteor\x20version.\x20If\x20the\x20system\x27s\x20node\x0a\x20\x20version\x20is\x20greater\x20than\x20the\x20project\x27s\x20node\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20node\x20version.\x0a\x20\x20','verbose','version','124CqxsXv','replace','error','24OqPQQe','Project\x27s\x20Meteor\x20Node\x20Version\x20','----------------------System----------------------------','search','8347920MjTcSH','N/A','node\x20-v','warn','System\x27s\x20Meteor\x20Version\x20','Project\x27s\x20Meteor\x20Version\x20','20FFEjxP','\x0a\x20To\x20get\x20the\x20mongo\x20version\x20in\x20use\x20by\x20meteor:\x0a\x201)\x20Run\x20the\x20project,\x20\x22maka\x20run\x22\x0a\x202)\x20In\x20a\x20new\x20terminal\x20open\x20the\x20mongo\x20shell,\x20\x22maka\x20mongo\x22','3699031hwGSSJ','getGlobalMeteorVersion','constructor','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.',')\x20to\x20at\x20least\x20meteor\x27s\x20(','System\x27s\x20Node\x20Version\x20','1881238unTcDl','(((.+)+)+)+$','812995WAQtEp','maka\x20version','11942844qKinKV','22jMYmTf','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.','bright','getProjectMeteorVersion','meteor.bat','meteor','platform'];a94c=function(){return p;};return a94c();}a94a();import{execSync}from'child_process';import a94e from'semver';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const pjson={'version':a94n(0x177)};Command[a94n(0x175)]({'name':a94n(0x17e),'aliases':['v'],'usage':a94n(0x15e),'maxArgLength':0x1,'validOpts':[a94n(0x17d)],'shortDesc':a94n(0x158),'examples':[a94n(0x16e),a94n(0x15e),'maka\x20version\x20--verbose'],'description':a94n(0x17c)},async function(a,b){const o=a94n;try{const c=process[o(0x166)]===o(0x179)?o(0x164):o(0x165);Log['majestic'](o(0x176)+pjson[o(0x17e)]),await this[o(0x172)][o(0x171)]();if(b[o(0x17d)]){await this['fsi'][o(0x171)](),Log[o(0x162)](o(0x184));const d=this[o(0x172)][o(0x156)]();Log[o(0x162)]((o(0x151)+d)[o(0x180)]('\x0a',''));const f=execSync(c+o(0x169))[o(0x16c)]()[o(0x180)](/\r?\n|\r/,'')[o(0x180)]('v','');Log[o(0x162)](o(0x16f)+f);const g=execSync(o(0x14f))[o(0x16c)]()[o(0x180)](/\r?\n|\r/,'')['replace']('v','');a94e['gt'](f,g)?(Log['warn'](o(0x15a)+g),Log['warn'](o(0x170)+g+o(0x159)+f+')')):Log['bright'](o(0x15a)+g);if(this[o(0x172)][o(0x178)]()){Log[o(0x162)](o(0x17a));const h=this[o(0x172)][o(0x163)]();a94e['gt'](d,h)?(Log[o(0x150)](o(0x152)+h[o(0x180)]('\x0a','')),Log[o(0x150)](o(0x16b)+d+'\x22')):Log[o(0x174)]((o(0x152)+h)['replace']('\x0a',''));const i=await this[o(0x172)][o(0x17b)]();i===o(0x187)?(Log[o(0x150)]('Project\x27s\x20Meteor\x20Node\x20Version\x20'+i),Log['warn'](o(0x161))):Log[o(0x162)](o(0x183)+i),Log[o(0x162)](o(0x154));}}}catch(j){console[o(0x181)](j),process[o(0x173)](0x0);}});
1
+ const a94n=a94d;function a94c(){const p=['verbose','getProjectMeteorVersion','getProjectsMeteorNodeVersion','Maka\x20','----------------------System----------------------------','maka\x20version\x20--verbose','N/A','isMakaProject','meteor.bat','exit','error','406017eyeXBB','version','apply','warn','win32','fsi','bright','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','3164QLzuoi','node\x20-v','search','toString','System\x27s\x20Meteor\x20Version\x20','constructor','430nfZjlx','Project\x27s\x20Meteor\x20Version\x20','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.','notice','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','----------------------Project----------------------------','System\x27s\x20Node\x20Version\x20','compareMakaToLatest','3bykMrh','Project\x27s\x20Meteor\x20Node\x20Version\x20','1586182akuSDt','104hqNhKB','97075LlTrdU','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','23pGfFNs','maka\x20version','create','2382NSsLuf','replace','131918FCyemC','(((.+)+)+)+$',')\x20to\x20at\x20least\x20meteor\x27s\x20(','majestic','\x20node\x20-v','5512924ObKzvk','\x0a\x20\x20When\x20using\x20the\x20--verbose\x20flag,\x20maka\x20will\x20also\x20check\x20the\x20version\x20of\x20the\x20system\x27s\x20meteor\x20and\x20node\x20versions\x0a\x20\x20along\x20with\x20the\x20project\x27s\x20meteor\x20and\x20node\x20versions.\x20If\x20the\x20system\x27s\x20meteor\x20version\x20is\x20greater\x20than\x20the\x0a\x20\x20project\x27s\x20meteor\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20meteor\x20version.\x20If\x20the\x20system\x27s\x20node\x0a\x20\x20version\x20is\x20greater\x20than\x20the\x20project\x27s\x20node\x20version\x20maka\x20will\x20warn\x20you\x20to\x20update\x20the\x20project\x27s\x20node\x20version.\x0a\x20\x20','\x0a\x20To\x20get\x20the\x20mongo\x20version\x20in\x20use\x20by\x20meteor:\x0a\x201)\x20Run\x20the\x20project,\x20\x22maka\x20run\x22\x0a\x202)\x20In\x20a\x20new\x20terminal\x20open\x20the\x20mongo\x20shell,\x20\x22maka\x20mongo\x22','192xyfLtG','5953660lCBdOA'];a94c=function(){return p;};return a94c();}(function(a,b){const k=a94d,c=a();while(!![]){try{const d=parseInt(k(0xc2))/0x1*(parseInt(k(0xc7))/0x2)+-parseInt(k(0xbc))/0x3*(-parseInt(k(0xcc))/0x4)+-parseInt(k(0xd0))/0x5+-parseInt(k(0xc5))/0x6*(-parseInt(k(0xae))/0x7)+parseInt(k(0xbf))/0x8*(parseInt(k(0xa5))/0x9)+-parseInt(k(0xb4))/0xa*(-parseInt(k(0xc0))/0xb)+parseInt(k(0xcf))/0xc*(-parseInt(k(0xbe))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0xdb2b8));const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a94d;if(c){const e=c[l(0xa7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const m=a94d;return a94a[m(0xb1)]()['search'](m(0xc8))[m(0xb1)]()[m(0xb3)](a94a)[m(0xb0)](m(0xc8));});a94a();import{execSync}from'child_process';import a94e from'semver';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const pjson={'version':'4.6.23'};function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0xa3;let f=c[d];return f;},a94d(a,b);}Command[a94n(0xc4)]({'name':a94n(0xa6),'aliases':['v'],'usage':a94n(0xc3),'maxArgLength':0x1,'validOpts':['verbose'],'shortDesc':a94n(0xb8),'examples':['maka\x20v',a94n(0xc3),a94n(0xd6)],'description':a94n(0xcd)},async function(a,b){const o=a94n;try{const c=process['platform']===o(0xa9)?o(0xd9):'meteor';Log[o(0xca)](o(0xd4)+pjson[o(0xa6)]),await this[o(0xaa)][o(0xbb)]();if(b[o(0xd1)]){await this['fsi'][o(0xbb)](),Log[o(0xab)](o(0xd5));const d=this[o(0xaa)]['getGlobalMeteorVersion']();Log['bright']((o(0xb2)+d)[o(0xc6)]('\x0a',''));const f=execSync(c+o(0xcb))[o(0xb1)]()[o(0xc6)](/\r?\n|\r/,'')['replace']('v','');Log[o(0xab)](o(0xc1)+f);const g=execSync(o(0xaf))[o(0xb1)]()[o(0xc6)](/\r?\n|\r/,'')[o(0xc6)]('v','');a94e['gt'](f,g)?(Log[o(0xa8)]('System\x27s\x20Node\x20Version\x20'+g),Log[o(0xa8)](o(0xad)+g+o(0xc9)+f+')')):Log['bright'](o(0xba)+g);if(this[o(0xaa)][o(0xd8)]()){Log[o(0xab)](o(0xb9));const h=this[o(0xaa)][o(0xd2)]();a94e['gt'](d,h)?(Log[o(0xa8)](o(0xb5)+h[o(0xc6)]('\x0a','')),Log[o(0xa8)](o(0xac)+d+'\x22')):Log[o(0xb7)]((o(0xb5)+h)['replace']('\x0a',''));const i=await this[o(0xaa)][o(0xd3)]();i===o(0xd7)?(Log[o(0xa8)](o(0xbd)+i),Log[o(0xa8)](o(0xb6))):Log[o(0xab)](o(0xbd)+i),Log[o(0xab)](o(0xce));}}}catch(j){console[o(0xa4)](j),process[o(0xa3)](0x0);}});
@@ -1 +1 @@
1
- function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0xeb;var f=c[d];return f;},a95d(a,b);}(function(a,b){var f=a95d,c=a();while(!![]){try{var d=-parseInt(f(0xf1))/0x1+-parseInt(f(0xf6))/0x2+parseInt(f(0xef))/0x3+parseInt(f(0xf0))/0x4+parseInt(f(0xf7))/0x5*(parseInt(f(0xf2))/0x6)+-parseInt(f(0xeb))/0x7*(-parseInt(f(0xf9))/0x8)+-parseInt(f(0xf8))/0x9*(-parseInt(f(0xf4))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0x892b6));var a95b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a95d;if(c){var e=c[g(0xf5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a95a=a95b(this,function(){var h=a95d;return a95a[h(0xec)]()[h(0xed)](h(0xf3))[h(0xec)]()[h(0xee)](a95a)[h(0xed)](h(0xf3));});a95a();export class UsageError{}export class UsageErrorWithSubs{}export class MustBeInProjectError{}export class NoMeteorAppFoundError{}function a95c(){var i=['constructor','989706JOgSQV','632924EQrWmq','87310ybyDxP','67236SgXafE','(((.+)+)+)+$','17380UbAdew','apply','356418LSLFfP','125zpoGaa','180dlgrsD','8bJboWt','170254GkNeKJ','toString','search'];a95c=function(){return i;};return a95c();}export class NoMeteorFoundError{}
1
+ function a95c(){var h=['43084QIeCVs','3790848jWmQCM','367199PXfQzd','constructor','24hUEaep','12udGJKI','(((.+)+)+)+$','10999rSfbGg','11924120NNTfEZ','1423230UPXqsC','9oURnKE','toString','3703152gspPcL'];a95c=function(){return h;};return a95c();}(function(a,b){var f=a95d,c=a();while(!![]){try{var d=parseInt(f(0x1f2))/0x1+-parseInt(f(0x1eb))/0x2*(-parseInt(f(0x1f0))/0x3)+-parseInt(f(0x1ec))/0x4+-parseInt(f(0x1f4))/0x5+parseInt(f(0x1f7))/0x6+-parseInt(f(0x1ed))/0x7*(parseInt(f(0x1ef))/0x8)+-parseInt(f(0x1f5))/0x9*(-parseInt(f(0x1f3))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0x7e3b2));var a95b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a95a=a95b(this,function(){var g=a95d;return a95a[g(0x1f6)]()['search']('(((.+)+)+)+$')[g(0x1f6)]()[g(0x1ee)](a95a)['search'](g(0x1f1));});a95a();function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0x1eb;var f=c[d];return f;},a95d(a,b);}export class UsageError{}export class UsageErrorWithSubs{}export class MustBeInProjectError{}export class NoMeteorAppFoundError{}export class NoMeteorFoundError{}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var a96h=a96d;(function(a,b){var f=a96d,c=a();while(!![]){try{var d=parseInt(f(0x167))/0x1*(-parseInt(f(0x162))/0x2)+parseInt(f(0x166))/0x3+-parseInt(f(0x16d))/0x4+parseInt(f(0x164))/0x5+parseInt(f(0x16a))/0x6+-parseInt(f(0x170))/0x7*(-parseInt(f(0x16b))/0x8)+parseInt(f(0x163))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a96c,0xd5cbb));var a96b=(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;};}()),a96a=a96b(this,function(){var g=a96d;return a96a[g(0x16f)]()[g(0x169)](g(0x16e))[g(0x16f)]()[g(0x168)](a96a)[g(0x169)](g(0x16e));});function a96c(){var i=['toString','35NDhwMn','NODE_OPTIONS','56LHpBtf','602100gvKFIl','1864285rrbafa','env','1439235ZxpUpY','32815aweazn','constructor','search','6585456IIBOCL','1643408vXCbma','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','4998724yMFKfc','(((.+)+)+)+$'];a96c=function(){return i;};return a96c();}a96a(),process[a96h(0x165)][a96h(0x161)]=a96h(0x16c);function a96d(a,b){var c=a96c();return a96d=function(d,e){d=d-0x161;var f=c[d];return f;},a96d(a,b);}import'./maka.js';
2
+ function a96d(a,b){var c=a96c();return a96d=function(d,e){d=d-0x1ac;var f=c[d];return f;},a96d(a,b);}var a96i=a96d;(function(a,b){var f=a96d,c=a();while(!![]){try{var d=parseInt(f(0x1b0))/0x1+parseInt(f(0x1b2))/0x2+-parseInt(f(0x1ac))/0x3+parseInt(f(0x1ae))/0x4+-parseInt(f(0x1b9))/0x5+-parseInt(f(0x1b6))/0x6*(-parseInt(f(0x1b8))/0x7)+parseInt(f(0x1b5))/0x8*(parseInt(f(0x1ba))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a96c,0xbe6d2));var a96b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a96d;if(c){var e=c[g(0x1ad)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a96a=a96b(this,function(){var h=a96d;return a96a[h(0x1b4)]()[h(0x1b7)](h(0x1af))['toString']()[h(0x1bb)](a96a)[h(0x1b7)]('(((.+)+)+)+$');});a96a(),process[a96i(0x1b1)]['NODE_OPTIONS']=a96i(0x1b3);function a96c(){var j=['610945fLoLbZ','env','1573298jKxOHP','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','toString','1344kgBrNr','6605382xluQNW','search','7zEEZCl','6637205vrMyWz','11223sIGbEC','constructor','4583406HlbSrf','apply','3708968uNROCB','(((.+)+)+)+$'];a96c=function(){return j;};return a96c();}import'./maka.js';