@maka/maka-cli 4.7.4 → 4.7.6

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 (150) 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/esri/_index.js +1 -0
  109. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -0
  110. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -0
  111. package/bundle/obf/src/generators/kits/kit.js +1 -1
  112. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  113. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  114. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  115. package/bundle/obf/src/generators/layout.js +1 -1
  116. package/bundle/obf/src/generators/maka.gen.js +1 -1
  117. package/bundle/obf/src/generators/methods.js +1 -1
  118. package/bundle/obf/src/generators/package.js +1 -1
  119. package/bundle/obf/src/generators/page.js +1 -1
  120. package/bundle/obf/src/generators/publish.js +1 -1
  121. package/bundle/obf/src/generators/route.js +1 -1
  122. package/bundle/obf/src/generators/service.js +1 -1
  123. package/bundle/obf/src/generators/services/_index.js +1 -1
  124. package/bundle/obf/src/generators/services/openssl.js +1 -1
  125. package/bundle/obf/src/generators/services/translation.js +1 -1
  126. package/bundle/obf/src/maka.js +1 -1
  127. package/bundle/obf/src/templates/react/kit/esri/map/basic-map.js.jsx +27 -0
  128. package/bundle/obf/src/templates/react/kit/esri/map/basic-map.js.tsx +30 -0
  129. package/bundle/obf/src/templates/react/kit/mui/frame/app-bars/basic-app-bar.js.jsx +1 -1
  130. package/bundle/obf/src/templates/react/kit/mui/frame/app-bars/basic-app-bar.js.tsx +1 -1
  131. package/bundle/obf/src/tool.js +1 -1
  132. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  133. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  134. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  136. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  137. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  138. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  139. package/bundle/obf/src/tools/https/https.class.js +1 -1
  140. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  141. package/bundle/obf/src/tools/log/log.class.js +1 -1
  142. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  143. package/bundle/obf/src/tools/options/options.class.js +1 -1
  144. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  145. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  146. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  147. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  148. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  149. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  150. package/package.json +2 -1
@@ -1 +1 @@
1
- const a78o=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=-parseInt(l(0xbe))/0x1+parseInt(l(0xd7))/0x2*(-parseInt(l(0xd9))/0x3)+parseInt(l(0xd5))/0x4*(parseInt(l(0xbb))/0x5)+-parseInt(l(0xd6))/0x6+-parseInt(l(0xd2))/0x7+parseInt(l(0xc5))/0x8*(-parseInt(l(0xd3))/0x9)+parseInt(l(0xde))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x5400c));const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a78d;if(c){const e=c[m(0xe1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const n=a78d;return a78a['toString']()['search'](n(0xc2))[n(0xc8)]()[n(0xb6)](a78a)[n(0xcc)](n(0xc2));});function a78c(){const q=['CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','cacert','35lJmvzq','get','success','398102zSoZqS','Using\x20CA\x20Cert\x20','token','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','(((.+)+)+)+$','notice','https://','1772328lvbvTa','getGlobalConfig','Logging\x20out\x20of\x20https://','toString','failure','assign','Logging\x20out','search','cert','Preflight\x20Check','exit','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','www.maka-cli.com','1059562NiHZwS','27uroLVU','post','235052DyXagE','849792yKXlzf','16430BFEZHz','error','102fnpnVW','env','/api/v1/status','/api/v1/logoutAll','maka\x20logout','15677680EGtOng','isFile','setGlobalConfig','apply','withSpinner','authToken','create','MAKA_DEV','fsi','True','logout','start','constructor','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli'];a78c=function(){return q;};return a78c();}a78a();function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0xb4;let f=c[d];return f;},a78d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78o(0xda)][a78o(0xe5)]===a78o(0xe7)?'localhost':a78o(0xd1);Command[a78o(0xe4)]({'name':a78o(0xb4),'validOpts':['cacert'],'usage':a78o(0xdd),'maxArgLength':0x2,'shortDesc':a78o(0xd0),'disableAuthCheck':!![],'examples':['maka\x20logout']},async function(a,b){const p=a78o,c=Log[p(0xe2)]();try{let d='';b[p(0xba)]&&(this[p(0xe6)][p(0xdf)](b['cacert'])?(d=b[p(0xba)],Log[p(0xc3)](p(0xbf)+d)):Log[p(0xd8)](p(0xb8)+d));const f=await this[p(0xe6)][p(0xc6)]();if(f['cert']){if(this['fsi'][p(0xdf)](f[p(0xcd)]))d=f[p(0xcd)];else{c['failure']();throw Log['error'](p(0xc1)+d);}}Log['header'](p(0xc7)+hostname);const g={'url':p(0xc4)+hostname+p(0xdb)};b[p(0xba)]&&Object['assign'](g,{'cert':d});c['start'](p(0xce));const {statusCode:h}=await HTTPS[p(0xbc)](g);if(h===0x198){c[p(0xc9)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}c[p(0xbd)]();if(h!==0xc8){c[p(0xc9)]();throw p(0xb7);}if(!f?.[p(0xc0)]?.[p(0xe3)])throw Log[p(0xd8)](p(0xb9));c[p(0xb5)](p(0xcb));const i={'hostname':hostname,'path':p(0xdc),'data':{},'headers':{'x-auth-token':f['token'][p(0xe3)]}};b[p(0xba)]&&Object[p(0xca)](i,{'cert':d});const {statusCode:j}=await HTTPS[p(0xd4)](i);if(j===0x198){c[p(0xc9)]('\x0a');throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}this[p(0xe6)][p(0xe0)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[p(0xbd)]();}catch(k){k&&console[p(0xd8)](k),process[p(0xcf)](0x0);}});
1
+ const a78o=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=parseInt(l(0x1ca))/0x1+parseInt(l(0x1e5))/0x2*(-parseInt(l(0x1d3))/0x3)+parseInt(l(0x1e3))/0x4*(-parseInt(l(0x1ee))/0x5)+parseInt(l(0x1e6))/0x6*(parseInt(l(0x1d6))/0x7)+parseInt(l(0x1ef))/0x8+parseInt(l(0x1f3))/0x9*(parseInt(l(0x1d2))/0xa)+-parseInt(l(0x1f0))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0xce254));const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a78d;if(c){const e=c[m(0x1cf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const n=a78d;return a78a[n(0x1cb)]()['search'](n(0x1ea))['toString']()[n(0x1d7)](a78a)[n(0x1ce)]('(((.+)+)+)+$');});a78a();function a78c(){const q=['isFile','assign','146996Zhoowv','True','2EncADl','1687326xLuaus','Preflight\x20Check','error','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','(((.+)+)+)+$','exit','start','withSpinner','35hTNhmJ','4688808VoTfIj','24404116dinTgm','cert','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','9KPyhpX','setGlobalConfig','maka\x20logout','authToken','create','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','fsi','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','936101FHyKbs','toString','token','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','search','apply','/api/v1/status','notice','5055620xKzNvE','1184757ENZpma','/api/v1/logoutAll','MAKA_DEV','42ASYMkn','constructor','failure','cacert','success','Logging\x20out\x20of\x20https://','Using\x20CA\x20Cert\x20','www.maka-cli.com','header','https://','env'];a78c=function(){return q;};return a78c();}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-0x1c7;let f=c[d];return f;},a78d(a,b);}import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78o(0x1e0)][a78o(0x1d5)]===a78o(0x1e4)?'localhost':a78o(0x1dd);Command[a78o(0x1f7)]({'name':'logout','validOpts':[a78o(0x1d9)],'usage':a78o(0x1f5),'maxArgLength':0x2,'shortDesc':a78o(0x1f8),'disableAuthCheck':!![],'examples':['maka\x20logout']},async function(a,b){const p=a78o,c=Log[p(0x1ed)]();try{let d='';b[p(0x1d9)]&&(this['fsi']['isFile'](b[p(0x1d9)])?(d=b[p(0x1d9)],Log[p(0x1d1)](p(0x1dc)+d)):Log['error'](p(0x1cd)+d));const f=await this[p(0x1c8)]['getGlobalConfig']();if(f[p(0x1f1)]){if(this['fsi'][p(0x1e1)](f['cert']))d=f['cert'];else{c['failure']();throw Log[p(0x1e8)](p(0x1e9)+d);}}Log[p(0x1de)](p(0x1db)+hostname);const g={'url':p(0x1df)+hostname+p(0x1d0)};b[p(0x1d9)]&&Object[p(0x1e2)](g,{'cert':d});c[p(0x1ec)](p(0x1e7));const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c[p(0x1d8)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}c[p(0x1da)]();if(h!==0xc8){c[p(0x1d8)]();throw p(0x1f2);}if(!f?.[p(0x1cc)]?.[p(0x1f6)])throw Log[p(0x1e8)](p(0x1c7));c[p(0x1ec)]('Logging\x20out');const i={'hostname':hostname,'path':p(0x1d4),'data':{},'headers':{'x-auth-token':f[p(0x1cc)][p(0x1f6)]}};b[p(0x1d9)]&&Object[p(0x1e2)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c['failure']('\x0a');throw p(0x1c9);}this[p(0x1c8)][p(0x1f4)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[p(0x1da)]();}catch(k){k&&console[p(0x1e8)](k),process[p(0x1eb)](0x0);}});
@@ -1 +1 @@
1
- const a79m=a79d;function a79c(){const o=['create','search','join','parse','4eqEQvD','770652ThWuZM','pm2\x20logs','sshSync','fsi','maka\x20logs\x20--env\x20dev','maka\x20logs\x20--env\x20staging','216nBdquu','toString','1vmFzxE','verbose','4067883jygkqY','1010590GhoByc','22810ZFyYrz','logs','maka\x20l\x20-e\x20p','2579076ajxdrt','View\x20the\x20PM2\x20logs','apply','2752730oXYBdM','constructor','assign','110baWdPN','ssh.json','error','env','18739BcBQEJ'];a79c=function(){return o;};return a79c();}(function(a,b){const j=a79d,c=a();while(!![]){try{const d=-parseInt(j(0x94))/0x1*(parseInt(j(0x97))/0x2)+-parseInt(j(0x8c))/0x3*(-parseInt(j(0x8b))/0x4)+parseInt(j(0x7f))/0x5+-parseInt(j(0x7c))/0x6+parseInt(j(0x86))/0x7*(parseInt(j(0x92))/0x8)+parseInt(j(0x96))/0x9+parseInt(j(0x98))/0xa*(parseInt(j(0x82))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x66625));function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x7a;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(0x7e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const l=a79d;return a79a[l(0x93)]()[l(0x88)]('(((.+)+)+)+$')['toString']()[l(0x80)](a79a)[l(0x88)]('(((.+)+)+)+$');});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(0x87)]({'name':a79m(0x7a),'aliases':['l','log'],'usage':'maka\x20logs','requiredOpts':[a79m(0x85)],'mustBeInMakaProject':!![],'validOpts':[a79m(0x95)],'shortDesc':a79m(0x7d),'isPro':!![],'examples':[a79m(0x90),a79m(0x91),a79m(0x7b)]},function(a,b){const n=a79m;try{const c=n(0x8d),d=this[n(0x8f)]['getAppConfigPath'](b[n(0x85)]),f=a79f[n(0x89)](d,n(0x83)),g=a79e['readFileSync'](f),h=JSON[n(0x8a)](g[n(0x93)]());Object[n(0x81)](h,{'env':d}),SSH[n(0x8e)](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log[n(0x84)](i);}});
1
+ const a79m=a79d;(function(a,b){const j=a79d,c=a();while(!![]){try{const d=-parseInt(j(0x1de))/0x1*(parseInt(j(0x1d3))/0x2)+-parseInt(j(0x1e6))/0x3*(-parseInt(j(0x1dd))/0x4)+parseInt(j(0x1d6))/0x5*(parseInt(j(0x1d5))/0x6)+-parseInt(j(0x1cb))/0x7*(parseInt(j(0x1df))/0x8)+parseInt(j(0x1d7))/0x9*(parseInt(j(0x1d4))/0xa)+parseInt(j(0x1c9))/0xb+-parseInt(j(0x1e2))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x6f19b));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a79d;if(c){const e=c[k(0x1e5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const l=a79d;return a79a[l(0x1dc)]()[l(0x1d9)](l(0x1e3))[l(0x1dc)]()['constructor'](a79a)[l(0x1d9)](l(0x1e3));});a79a();function a79c(){const o=['maka\x20logs\x20--env\x20dev','6344364UYwuLC','(((.+)+)+)+$','parse','apply','15SGIIEf','2365946aWHsLh','readFileSync','272125VKLFKH','maka\x20l\x20-e\x20p','sshSync','create','pm2\x20logs','View\x20the\x20PM2\x20logs','env','join','2FhLpse','473690yHkdje','6nfKgkk','3140155PvrTLJ','45mqAeMm','fsi','search','verbose','maka\x20logs\x20--env\x20staging','toString','351316tdNEtu','340968iYsiuO','40ZKhgwU','maka\x20logs'];a79c=function(){return o;};return a79c();}import a79e from'fs';import a79f from'path';function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x1c9;let f=c[d];return f;},a79d(a,b);}import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a79m(0x1ce)]({'name':'logs','aliases':['l','log'],'usage':a79m(0x1e0),'requiredOpts':[a79m(0x1d1)],'mustBeInMakaProject':!![],'validOpts':[a79m(0x1da)],'shortDesc':a79m(0x1d0),'isPro':!![],'examples':[a79m(0x1e1),a79m(0x1db),a79m(0x1cc)]},function(a,b){const n=a79m;try{const c=n(0x1cf),d=this[n(0x1d8)]['getAppConfigPath'](b[n(0x1d1)]),f=a79f[n(0x1d2)](d,'ssh.json'),g=a79e[n(0x1ca)](f),h=JSON[n(0x1e4)](g['toString']());Object['assign'](h,{'env':d}),SSH[n(0x1cd)](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log['error'](i);}});
@@ -1 +1 @@
1
- const a80i=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=-parseInt(f(0x17c))/0x1+parseInt(f(0x17f))/0x2*(-parseInt(f(0x17e))/0x3)+-parseInt(f(0x18c))/0x4*(-parseInt(f(0x185))/0x5)+-parseInt(f(0x184))/0x6*(parseInt(f(0x191))/0x7)+parseInt(f(0x186))/0x8+parseInt(f(0x18f))/0x9+parseInt(f(0x193))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0x1cc7f));function a80c(){const k=['processAndRunCommand','maka\x20--help','maka\x20create\x20Todo','24540JZKHQv','maka\x20install\x20meteor','exit','1458045OzjkWh','apply','100856gQcuqg','\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','844600tgXkAS','202261TqGEqB','search','3fZJzYz','301634wDVTdW','splice','toString','(((.+)+)+)+$','constructor','6MosCAS','155fdraMX','389784uylBEs','maka\x20run','maka\x20<command>\x20[<args>]\x20[<opts>]'];a80c=function(){return k;};return a80c();}function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x17c;let f=c[d];return f;},a80d(a,b);}const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a80d;if(c){const e=c[g(0x190)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const h=a80d;return a80a['toString']()[h(0x17d)]('(((.+)+)+)+$')[h(0x181)]()[h(0x183)](a80a)[h(0x17d)](h(0x182));});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(0x188),'disableAuthCheck':!![],'examples':[a80i(0x18a),a80i(0x18d),a80i(0x18b),a80i(0x187)],'description':a80i(0x192)},async function(a,b){const j=a80i;try{const c=a[0x0];a[j(0x180)](0x0,0x1),this[j(0x189)](c,a,b);}catch(d){process[j(0x18e)](0x1);}});export default Maka;
1
+ function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x12e;let f=c[d];return f;},a80d(a,b);}const a80h=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=-parseInt(f(0x141))/0x1+-parseInt(f(0x133))/0x2+-parseInt(f(0x131))/0x3*(-parseInt(f(0x142))/0x4)+-parseInt(f(0x130))/0x5*(parseInt(f(0x13c))/0x6)+-parseInt(f(0x138))/0x7*(-parseInt(f(0x132))/0x8)+-parseInt(f(0x13d))/0x9*(parseInt(f(0x139))/0xa)+parseInt(f(0x12e))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0x9c2e0));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const g=a80d;return a80a[g(0x135)]()['search'](g(0x13b))[g(0x135)]()[g(0x143)](a80a)['search'](g(0x13b));});a80a();import{Command}from'../command.js';function a80c(){const j=['maka','maka\x20<command>\x20[<args>]\x20[<opts>]','8633891jLxHGK','4524110VrKzub','maka\x20--help','(((.+)+)+)+$','53202NplKZF','9DAxfSP','splice','processAndRunCommand','exit','761563KENCwE','4YIDOME','constructor','9401084KISspc','maka\x20run','65oheGQt','1870689miPtvR','8YXhelO','1485326pnOzdj','maka\x20install\x20meteor','toString'];a80c=function(){return j;};return a80c();}const Maka=new Command({'name':a80h(0x136),'minArgLength':0x1,'shortDesc':'A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','validOpts':[],'usage':a80h(0x137),'disableAuthCheck':!![],'examples':[a80h(0x13a),a80h(0x134),'maka\x20create\x20Todo',a80h(0x12f)],'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 i=a80h;try{const c=a[0x0];a[i(0x13e)](0x0,0x1),this[i(0x13f)](c,a,b);}catch(d){process[i(0x140)](0x1);}});export default Maka;
@@ -1 +1 @@
1
- function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0xb2;var f=c[d];return f;},a81d(a,b);}var a81i=a81d;(function(a,b){var f=a81d,c=a();while(!![]){try{var d=-parseInt(f(0xb2))/0x1+parseInt(f(0xbe))/0x2*(-parseInt(f(0xc2))/0x3)+-parseInt(f(0xc1))/0x4*(-parseInt(f(0xc4))/0x5)+-parseInt(f(0xb5))/0x6+-parseInt(f(0xbf))/0x7+parseInt(f(0xbc))/0x8+parseInt(f(0xbb))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x19907));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0xba)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a['toString']()[h(0xb8)]('(((.+)+)+)+$')[h(0xb6)]()[h(0xc0)](a81a)[h(0xb8)]('(((.+)+)+)+$');});a81a();function a81c(){var k=['561ucUaOa','font-family:\x20monospace','328840EWYPSV','create','89991WTAmZA','Murrrrderrrrr','error','327678VqGBnX','toString','maka\x20murder','search','log','apply','1698111HZHHmX','113056TrphxF','murder','734USooft','575197OxjJZR','constructor','12AcKXZB'];a81c=function(){return k;};return a81c();}import{Command}from'../command.js';Command[a81i(0xc5)]({'name':a81i(0xbd),'usage':a81i(0xb7),'maxArgLength':0x1,'shortDesc':a81i(0xb3),'validOpts':[]},async function(){var j=a81i;try{console[j(0xb9)]('%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',j(0xc3));}catch(a){console[j(0xb4)](a),process['exit'](0x0);}});
1
+ var a81i=a81d;(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x18e))/0x1+parseInt(f(0x18c))/0x2+-parseInt(f(0x188))/0x3*(parseInt(f(0x195))/0x4)+parseInt(f(0x184))/0x5+-parseInt(f(0x187))/0x6*(parseInt(f(0x191))/0x7)+-parseInt(f(0x18b))/0x8+parseInt(f(0x18a))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x5af07));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x18d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a['toString']()['search'](h(0x18f))[h(0x189)]()['constructor'](a81a)[h(0x186)](h(0x18f));});function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x184;var f=c[d];return f;},a81d(a,b);}a81a();function a81c(){var k=['exit','create','log','480116eDLVVC','418965QPnwnr','font-family:\x20monospace','search','6dfVxYf','3IzoOLo','toString','8621559ekomxC','4879920vcvcyC','896086NCxCvA','apply','70622gjCoYo','(((.+)+)+)+$','maka\x20murder','3205321EZBFIE'];a81c=function(){return k;};return a81c();}import{Command}from'../command.js';Command[a81i(0x193)]({'name':'murder','usage':a81i(0x190),'maxArgLength':0x1,'shortDesc':'Murrrrderrrrr','validOpts':[]},async function(){var j=a81i;try{console[j(0x194)]('%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',j(0x185));}catch(a){console['error'](a),process[j(0x192)](0x0);}});
@@ -1 +1 @@
1
- const a82o=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=parseInt(m(0x113))/0x1*(-parseInt(m(0x117))/0x2)+-parseInt(m(0x10d))/0x3*(-parseInt(m(0x103))/0x4)+parseInt(m(0xf3))/0x5+parseInt(m(0xf8))/0x6+parseInt(m(0x11b))/0x7*(-parseInt(m(0xfb))/0x8)+parseInt(m(0x109))/0x9+-parseInt(m(0x100))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x1ed69));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(0xfe)]()[n(0x104)]('(((.+)+)+)+$')[n(0xfe)]()[n(0xfa)](a82a)[n(0x104)]('(((.+)+)+)+$');});a82a();import a82e from'fs';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0xf2;let f=c[d];return f;},a82d(a,b);}import a82f from'path';import a82g from'http-proxy';function a82c(){const q=['1899882eAjtui','targetPort','=>\x20SSL\x20Proxy\x20forwarding\x20','.crt','339309oqoSIn','maka\x20proxy','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','isFile','bright','.key','45294AJUdfo','localhost','targetHost','createProxyServer','4YMEHHY','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','genCSR','maka\x20proxy\x20--target-host\x20http://192.168.1.20','91xPNKuQ','.csr','listen','931655CeecZF','fsi','development','mkKeysDir','\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','1030242MFPiqA','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','constructor','127424YrBmJj','help','appName','toString','getMakaProjectConfig','2582740KGsdZJ','readFileSync','utf8','4rKPrAP','search','join','create','proxy','getAppConfigPath'];a82c=function(){return q;};return a82c();}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[a82o(0x106)]({'name':a82o(0x107),'usage':a82o(0x10e),'mustBeInMakaProject':!![],'validOpts':[a82o(0xfc),a82o(0x10a),'listenPort',a82o(0x115)],'maxArgLength':0x1,'shortDesc':a82o(0xf9),'description':a82o(0xf7),'examples':[a82o(0x10e),a82o(0x10f),a82o(0x11a)]},async function(a,b){const p=a82o,c=this[p(0xf4)][p(0xff)](),d=p(0xf5),e=this[p(0xf4)][p(0x108)](d),f=this[p(0xf4)][p(0xf6)]({'configPath':e}),g=b[p(0x10a)]?Number(b[p(0x10a)]):0xbb8,h=b['listenPort']?Number(b['listenPort']):0xd73,i=b[p(0x115)]?b[p(0x115)]:p(0x114),j=a82f[p(0x105)](f,c[p(0xfd)]+p(0x112)),k=a82f['join'](f,c['appName']+p(0x10c));(!this[p(0xf4)][p(0x110)](j)||!this[p(0xf4)][p(0x110)](k))&&(await a82h['processAndRunGenerator']('sslconfig',[],{'env':d}),SSL[p(0x119)]({'keyName':c[p(0xfd)]+p(0x112),'csrName':c['appName']+p(0x11c),'cwd':f}),SSL['genSSC']({'keyName':c[p(0xfd)]+p(0x112),'crtName':c[p(0xfd)]+p(0x10c),'cwd':f}));if(g===h){Log['error'](p(0x118));throw new UsageError();}const l={'ssl':{'key':a82e['readFileSync'](j,p(0x102)),'cert':a82e[p(0x101)](k,'utf8')},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[p(0x116)](l)[p(0xf2)](Number(h)),Log[p(0x111)](p(0x10b)+h+'\x20to\x20'+g);});
1
+ const a82p=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=-parseInt(m(0x1b3))/0x1*(parseInt(m(0x1b6))/0x2)+parseInt(m(0x197))/0x3+parseInt(m(0x1b0))/0x4+-parseInt(m(0x19e))/0x5*(parseInt(m(0x195))/0x6)+-parseInt(m(0x194))/0x7*(parseInt(m(0x1af))/0x8)+parseInt(m(0x1bd))/0x9*(parseInt(m(0x1b7))/0xa)+-parseInt(m(0x19a))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x22f79));function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x192;let f=c[d];return f;},a82d(a,b);}const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a82d;if(c){const e=c[n(0x193)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const o=a82d;return a82a[o(0x1b8)]()['search'](o(0x1b4))[o(0x1b8)]()[o(0x1ad)](a82a)['search'](o(0x1b4));});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';function a82c(){const r=['2201535REXfOS','genCSR','.crt','apply','13755lamYzl','115074ypDIkH','getAppConfigPath','661206DbvFVO','readFileSync','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','1943029fGnQSm','error','.key','fsi','45tyEMaT','listenPort','join','targetPort','maka\x20proxy','listen','mkKeysDir','appName','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','\x20to\x20','isFile','sslconfig','proxy','help','localhost','constructor','bright','440PUhbOY','1021764cLYlAx','targetHost','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','967kLNFPD','(((.+)+)+)+$','\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','248EXIURH','10GeRgpD','toString','genSSC','.csr','development','utf8'];a82c=function(){return r;};return a82c();}import a82h from'../generators/maka.gen.js';Command['create']({'name':a82p(0x1aa),'usage':a82p(0x1a2),'mustBeInMakaProject':!![],'validOpts':[a82p(0x1ab),a82p(0x1a1),'listenPort',a82p(0x1b1)],'maxArgLength':0x1,'shortDesc':a82p(0x1b2),'description':a82p(0x1b5),'examples':[a82p(0x1a2),a82p(0x1a6),'maka\x20proxy\x20--target-host\x20http://192.168.1.20']},async function(a,b){const q=a82p,c=this[q(0x19d)]['getMakaProjectConfig'](),d=q(0x1bb),e=this[q(0x19d)][q(0x196)](d),f=this['fsi'][q(0x1a4)]({'configPath':e}),g=b['targetPort']?Number(b[q(0x1a1)]):0xbb8,h=b[q(0x19f)]?Number(b['listenPort']):0xd73,i=b['targetHost']?b[q(0x1b1)]:q(0x1ac),j=a82f[q(0x1a0)](f,c[q(0x1a5)]+q(0x19c)),k=a82f[q(0x1a0)](f,c[q(0x1a5)]+q(0x192));(!this[q(0x19d)][q(0x1a8)](j)||!this[q(0x19d)][q(0x1a8)](k))&&(await a82h['processAndRunGenerator'](q(0x1a9),[],{'env':d}),SSL[q(0x1be)]({'keyName':c[q(0x1a5)]+'.key','csrName':c['appName']+q(0x1ba),'cwd':f}),SSL[q(0x1b9)]({'keyName':c[q(0x1a5)]+q(0x19c),'crtName':c[q(0x1a5)]+'.crt','cwd':f}));if(g===h){Log[q(0x19b)](q(0x199));throw new UsageError();}const l={'ssl':{'key':a82e['readFileSync'](j,'utf8'),'cert':a82e[q(0x198)](k,q(0x1bc))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g['createProxyServer'](l)[q(0x1a3)](Number(h)),Log[q(0x1ae)]('=>\x20SSL\x20Proxy\x20forwarding\x20'+h+q(0x1a7)+g);});
@@ -1 +1 @@
1
- const a83q=a83d;function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x9f;let f=c[d];return f;},a83d(a,b);}(function(a,b){const n=a83d,c=a();while(!![]){try{const d=parseInt(n(0xa5))/0x1*(parseInt(n(0xba))/0x2)+-parseInt(n(0xc2))/0x3*(parseInt(n(0xb8))/0x4)+parseInt(n(0xc6))/0x5+-parseInt(n(0xa6))/0x6+-parseInt(n(0xa3))/0x7*(-parseInt(n(0xc7))/0x8)+-parseInt(n(0xa9))/0x9*(-parseInt(n(0x9f))/0xa)+-parseInt(n(0xbd))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x35141));function a83c(){const s=['reconfig','apply','existsSync','ping','ssh','pm2.config.js','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','~/ses.json','toString','224LMXLCV','env','367652HFbTfV','(((.+)+)+)+$','search','4873803VOMmqZ','getAppConfigPath','notice','success','Checking\x20remote\x20host\x20availability','1617mPuvcj','ses.json','settings.json','pm2\x20delete\x20all','195460QXEtOJ','299608mchUxM','\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','parse','3602580wMkXeN','sshSync','Reconfigure\x20your\x20deployed\x20applications','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','7ziZRGK','uname\x20-a','2LHnCtv','682722gifmcc','~/settings.json','_keys','9ZwHnwS','join','scp','maka\x20reconfig','exit','ssh.json'];a83c=function(){return s;};return a83c();}const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a83d;if(c){const e=c[o(0xb0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const p=a83d;return a83a[p(0xb7)]()[p(0xbc)]('(((.+)+)+)+$')['toString']()['constructor'](a83a)['search'](p(0xbb));});a83a();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['create']({'name':a83q(0xaf),'validOpts':[''],'requiredOpts':[a83q(0xb9)],'mustBeInMakaProject':!![],'usage':a83q(0xac),'isPro':!![],'shortDesc':a83q(0xa1),'description':a83q(0xc8),'examples':['maka\x20reconfig\x20--env\x20prod']},async function(a,b){const r=a83q;try{const c=this['fsi'][r(0xbe)](b[r(0xb9)]),d=a83f[r(0xaa)](c,r(0xae)),f=a83e['readFileSync'](d)['toString'](),g=JSON[r(0xc9)](f);Object['assign'](g,{'env':c}),Log[r(0xbf)](r(0xc1));const h=SSH[r(0xb2)](r(0xa4),g);if(!h)throw r(0xa2);if(h)Log[r(0xc0)]('Remote\x20host\x20connection\x20successful');const i=a83f[r(0xaa)](c,r(0xa8),r(0xc3));if(a83e[r(0xb1)](i)){const l={'source':i,'dest':r(0xb6),'verbose':!![]};SSH[r(0xab)](l,{...g});}const j=a83f[r(0xaa)](c,r(0xb4));SSH[r(0xab)]({'source':j,'dest':'~/pm2.config.js','verbose':!![]},{...g});const k=a83f[r(0xaa)](c,r(0xc4));SSH[r(0xab)]({'source':k,'dest':r(0xa7),'verbose':!![]},{...g}),SSH[r(0xa0)](r(0xc5),g),await SSH[r(0xb3)](r(0xb5),{...g},{'verbose':!![]});}catch(m){console['error'](m),process[r(0xad)](0x0);}});
1
+ const a83q=a83d;function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x135;let f=c[d];return f;},a83d(a,b);}(function(a,b){const n=a83d,c=a();while(!![]){try{const d=-parseInt(n(0x13e))/0x1+parseInt(n(0x136))/0x2+-parseInt(n(0x144))/0x3*(-parseInt(n(0x148))/0x4)+-parseInt(n(0x158))/0x5*(-parseInt(n(0x13d))/0x6)+-parseInt(n(0x14a))/0x7+parseInt(n(0x14f))/0x8*(parseInt(n(0x156))/0x9)+-parseInt(n(0x14b))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x9dd5f));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){const o=a83d;if(c){const e=c[o(0x159)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const p=a83d;return a83a[p(0x13a)]()[p(0x138)](p(0x147))[p(0x13a)]()[p(0x143)](a83a)[p(0x138)](p(0x147));});a83a();import a83e from'fs';import a83f from'path';import{Command}from'../command.js';function a83c(){const s=['_keys','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','9872jnGtdU','settings.json','pm2.config.js','readFileSync','maka\x20reconfig','ping','exit','1359rffoCX','Checking\x20remote\x20host\x20availability','120145glrdbB','apply','Reconfigure\x20your\x20deployed\x20applications','parse','~/ses.json','getAppConfigPath','join','create','479060EQkssR','notice','search','ses.json','toString','env','~/pm2.config.js','120yFqxSa','167088uuVRHV','fsi','uname\x20-a','Remote\x20host\x20connection\x20successful','maka\x20reconfig\x20--env\x20prod','constructor','6xzVGBy','scp','~/settings.json','(((.+)+)+)+$','1665240blXNjl','sshSync','2572353QuFPsf','5580020bSqdbQ','ssh'];a83c=function(){return s;};return a83c();}import{Log}from'../tools/log/log.class.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a83q(0x135)]({'name':'reconfig','validOpts':[''],'requiredOpts':[a83q(0x13b)],'mustBeInMakaProject':!![],'usage':a83q(0x153),'isPro':!![],'shortDesc':a83q(0x15a),'description':'\x0a\x20\x20If\x20using\x20a\x20remote\x20server\x20(Ubuntu),\x20send\x20up\x20the\x20settings.json\x0a\x20\x20and\x20pm2.config.js\x20files\x20and\x20reloads\x20the\x20PM2\x20service.\x0a\x20\x20','examples':[a83q(0x142)]},async function(a,b){const r=a83q;try{const c=this[r(0x13f)][r(0x15d)](b[r(0x13b)]),d=a83f[r(0x15e)](c,'ssh.json'),f=a83e[r(0x152)](d)[r(0x13a)](),g=JSON[r(0x15b)](f);Object['assign'](g,{'env':c}),Log[r(0x137)](r(0x157));const h=SSH[r(0x154)](r(0x140),g);if(!h)throw r(0x14e);if(h)Log['success'](r(0x141));const i=a83f['join'](c,r(0x14d),r(0x139));if(a83e['existsSync'](i)){const l={'source':i,'dest':r(0x15c),'verbose':!![]};SSH['scp'](l,{...g});}const j=a83f['join'](c,r(0x151));SSH[r(0x145)]({'source':j,'dest':r(0x13c),'verbose':!![]},{...g});const k=a83f[r(0x15e)](c,r(0x150));SSH[r(0x145)]({'source':k,'dest':r(0x146),'verbose':!![]},{...g}),SSH[r(0x149)]('pm2\x20delete\x20all',g),await SSH[r(0x14c)]('echo\x20\x22\x22\x20&&\x20pm2\x20start\x20pm2.config.js\x20&&\x20echo\x20\x22\x22\x20||\x20echo\x20\x22Cound\x20not\x20find\x20PM2,\x20have\x20you\x20deployed\x20the\x20app\x20yet?\x22',{...g},{'verbose':!![]});}catch(m){console['error'](m),process[r(0x155)](0x0);}});
@@ -1 +1 @@
1
- function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0xaf;var f=c[d];return f;},a84d(a,b);}(function(a,b){var f=a84d,c=a();while(!![]){try{var d=parseInt(f(0xb7))/0x1+parseInt(f(0xb5))/0x2*(-parseInt(f(0xb9))/0x3)+-parseInt(f(0xba))/0x4+-parseInt(f(0xb6))/0x5+parseInt(f(0xb8))/0x6+-parseInt(f(0xb4))/0x7+parseInt(f(0xb2))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xa903d));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(0xaf)]()[g(0xb3)](g(0xb0))[g(0xaf)]()[g(0xb1)](a84a)[g(0xb3)](g(0xb0));});a84a();function a84c(){var h=['3016400rPSeez','toString','(((.+)+)+)+$','constructor','7048904jdtPsB','search','1706306yrqQiX','51902XrzBRz','172640QySigo','869180JIDoiG','2804682GoANtd','57XLVbJc'];a84c=function(){return h;};return a84c();}import'./run.command.js';import'./docker.sub.cmd.js';
1
+ function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x11d;var f=c[d];return f;},a84d(a,b);}(function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0x125))/0x1*(-parseInt(f(0x124))/0x2)+-parseInt(f(0x12c))/0x3+-parseInt(f(0x128))/0x4*(parseInt(f(0x11d))/0x5)+-parseInt(f(0x122))/0x6+parseInt(f(0x123))/0x7*(-parseInt(f(0x121))/0x8)+-parseInt(f(0x12a))/0x9+-parseInt(f(0x126))/0xa*(-parseInt(f(0x11e))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0x9ede0));function a84c(){var i=['106069PDZYXk','30aDmoMO','toString','328XKMBOE','apply','9836289yBYWNJ','search','1992987vgtpjh','75200rNfhig','9614957efSCRk','constructor','(((.+)+)+)+$','80hxFqhR','740760DzXyrS','17017cIrWjK','22yZcUve'];a84c=function(){return i;};return a84c();}var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0x129)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a['toString']()[h(0x12b)](h(0x120))[h(0x127)]()[h(0x11f)](a84a)[h(0x12b)](h(0x120));});a84a();import'./run.command.js';import'./docker.sub.cmd.js';
@@ -1 +1 @@
1
- const a85l=a85d;(function(a,b){const i=a85d,c=a();while(!![]){try{const d=-parseInt(i(0x166))/0x1+parseInt(i(0x155))/0x2+-parseInt(i(0x169))/0x3*(-parseInt(i(0x157))/0x4)+-parseInt(i(0x164))/0x5+parseInt(i(0x167))/0x6*(parseInt(i(0x15f))/0x7)+-parseInt(i(0x15d))/0x8+-parseInt(i(0x165))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x47f10));function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x150;let f=c[d];return f;},a85d(a,b);}const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a85d;if(c){const e=c[j(0x16b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const k=a85d;return a85a[k(0x15a)]()['search'](k(0x159))[k(0x15a)]()[k(0x16e)](a85a)[k(0x154)](k(0x159));});a85a();import a85e from'./run.command.js';function a85c(){const n=['840808eVRgir','appName','57029HDJtLB','getMakaProjectConfig','notice','docker-compose.yaml','Docker\x20Compose\x20Path:\x20','772695LDXoHL','3997044oijGZa','34335iVsyWO','114DdHHZX','config/docker-compose.yaml','3uWFWBA','createFile','apply','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','docker-compose\x20--project-directory\x20','constructor','inherit','getAppConfigPath','templateContent','pm2.config.js','fsi','docker','exit','search','693278ITXEYP','PM2\x20Config\x20File:\x20','2125324XRYvxl','join','(((.+)+)+)+$','toString','create','existsSync'];a85c=function(){return n;};return a85c();}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';Command[a85l(0x15b)]({'name':a85l(0x152),'aliases':['d'],'shortDesc':a85l(0x16c),'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':'maka\x20run\x20docker','isPro':!![],'validOpts':['']},async function(){const m=a85l;try{const a=this[m(0x151)][m(0x160)](),b=this[m(0x151)][m(0x170)](m(0x152)),c=a85f['join'](b,m(0x162)),d=a85f[m(0x158)](b,m(0x150));Log['notice'](m(0x156)+d),Log[m(0x161)](m(0x163)+c);if(!a85g[m(0x15c)](c)){const f={'app':a[m(0x15e)],'appFileCase':paramCase(a[m(0x15e)])},g=this[m(0x151)][m(0x171)]({'srcPath':m(0x168),'context':f})+'\x0a';this[m(0x151)][m(0x16a)]({'filePath':c,'data':g});}execSync(m(0x16d)+b+'\x20up\x20--remove-orphans',{'stdio':m(0x16f)});}catch(h){process[m(0x153)](0x1);}},a85e);
1
+ const a85k=a85d;(function(a,b){const i=a85d,c=a();while(!![]){try{const d=-parseInt(i(0x1f1))/0x1+parseInt(i(0x1f4))/0x2+-parseInt(i(0x1f3))/0x3*(parseInt(i(0x1f7))/0x4)+-parseInt(i(0x1f0))/0x5*(parseInt(i(0x1ef))/0x6)+parseInt(i(0x1e7))/0x7+-parseInt(i(0x1fb))/0x8*(parseInt(i(0x1ec))/0x9)+-parseInt(i(0x200))/0xa*(-parseInt(i(0x1fc))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0xb3324));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[j(0x1fa)]()[j(0x1ff)](j(0x1f9))[j(0x1fa)]()[j(0x1fe)](a85a)[j(0x1ff)]('(((.+)+)+)+$');});a85a();import a85e from'./run.command.js';import{execSync}from'child_process';import a85f from'path';function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x1e2;let f=c[d];return f;},a85d(a,b);}import a85g from'fs';import a85h from'open';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';Command[a85k(0x1e6)]({'name':a85k(0x1f6),'aliases':['d'],'shortDesc':'Run\x20your\x20application\x20in\x20a\x20Docker\x20container','description':a85k(0x1f5),'usage':a85k(0x1f8),'isPro':!![],'validOpts':['']},async function(){const l=a85k;try{const a=this[l(0x1fd)]['getMakaProjectConfig'](),b=this[l(0x1fd)][l(0x1ea)](l(0x1f6)),c=a85f[l(0x1eb)](b,'docker-compose.yaml'),d=a85f[l(0x1eb)](b,l(0x1e3));Log[l(0x1e5)](l(0x1e8)+d),Log[l(0x1e5)](l(0x1f2)+c);if(!a85g[l(0x1ee)](c)){const f={'app':a[l(0x1ed)],'appFileCase':paramCase(a[l(0x1ed)])},g=this[l(0x1fd)][l(0x1e2)]({'srcPath':'config/docker-compose.yaml','context':f})+'\x0a';this['fsi']['createFile']({'filePath':c,'data':g});}await a85h('http://localhost'),execSync('docker-compose\x20--project-directory\x20'+b+l(0x1e4),{'stdio':l(0x1e9)});}catch(h){process['exit'](0x1);}},a85e);function a85c(){const m=['1342PHjYQN','fsi','constructor','search','245570ZcxYif','templateContent','pm2.config.js','\x20up\x20--remove-orphans','notice','create','4626251MgWkpT','PM2\x20Config\x20File:\x20','inherit','getAppConfigPath','join','1027179DzvERH','appName','existsSync','1518idtJxu','25135xKEvBZ','1248382fCGbna','Docker\x20Compose\x20Path:\x20','50238WhimIe','2068838bnoOIC','\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','316mqmuCi','maka\x20run\x20docker','(((.+)+)+)+$','toString','8UYLgXB'];a85c=function(){return m;};return a85c();}
@@ -1 +1 @@
1
- const a86s=a86d;function a86c(){const v=['--production','constructor','checkMeteorPackage','config','docker','invokeMeteorCommand','mobileServer','openSync','136855rGsvBd','sep','ios','1902246nwalHA','push','exclude-archs','--env','local','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','run','settings.json','isDirectory','8113441HNlwni','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)','exit','cordova-build','fsi','production','(((.+)+)+)+$','compareMakaToLatest','argv','2251233hYqTlG','slice','4rGGIZz','Run\x20your\x20Meteor\x20application','notice','findProjectDirectory','\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.','search','getAppConfigPath','concat','join','env','mobile-server','app','length','splice','process.env','2031575BBoWrc','create','toString','forEach','37038213AhJmxZ','warn','Node\x20Env\x20Config:\x20','2380212ZlbUTB','verbose','settings','split','8uoqFOA','Meteor\x20Settings:\x20','.meteor','isFile'];a86c=function(){return v;};return a86c();}(function(a,b){const p=a86d,c=a();while(!![]){try{const d=parseInt(p(0x14d))/0x1+-parseInt(p(0x150))/0x2+-parseInt(p(0x162))/0x3*(parseInt(p(0x164))/0x4)+-parseInt(p(0x136))/0x5+-parseInt(p(0x13d))/0x6+-parseInt(p(0x159))/0x7+-parseInt(p(0x141))/0x8*(-parseInt(p(0x13a))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0x8fb36));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 q=a86d;return a86a[q(0x138)]()[q(0x169)](q(0x15f))['toString']()[q(0x146)](a86a)[q(0x169)](q(0x15f));});a86a();import a86e from'path';function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x130;let f=c[d];return f;},a86d(a,b);}import a86f from'fs';import a86g from'dotenv';import{rimraf}from'rimraf';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';const syncSource=function(a){const r=a86d;a86f[r(0x14c)](a,'r'),a86g[r(0x148)]({'path':a});},Run=Command[a86s(0x137)]({'name':a86s(0x156),'mustBeInMakaProject':!![],'shortDesc':a86s(0x165),'description':a86s(0x168),'validOpts':[a86s(0x130),a86s(0x149),'rawLogs','port','inspect',a86s(0x14b),a86s(0x13e),'allowIncompatibleUpdate','extraPackages','x',a86s(0x152),a86s(0x15e)]},async function(a,b){const t=a86s;try{await this['fsi'][t(0x147)]('autoupdate',{'shouldInstall':!![]});const c=a[0x0];if(c===t(0x14f)){const l=this[t(0x15d)][t(0x167)](),m=a86e['join'](l,t(0x132),t(0x143),t(0x154),t(0x15c));this[t(0x15d)][t(0x158)](m)&&await rimraf(m);}if(b[t(0x131)]&&b[t(0x131)]===!![]||b['m']&&b['m']===!![])throw t(0x15a);await this['fsi'][t(0x160)]();const d=b[t(0x130)]?b[t(0x130)]:'development',f=this[t(0x15d)][t(0x16a)](d),g=a86e[t(0x16c)](f,t(0x135));let h=a86e['join'](f,t(0x157));b['settings']?h=b[t(0x13f)]:h=a86e['join'](f,t(0x157));if(this[t(0x15d)][t(0x144)](g)&&!b[t(0x149)])Log['notice'](t(0x13c)+g),syncSource(g);else!b[t(0x149)]&&Log[t(0x13b)]('Cannot\x20find\x20Node\x20Environment\x20File:\x20'+g);this['fsi'][t(0x144)](h)?(Log[t(0x166)](t(0x142)+h),a=a['concat'](['--settings',h])):Log['warn'](t(0x155)+h);const i=f[t(0x140)](a86e[t(0x14e)]),j=i[i[t(0x133)]-0x1];j==='production'&&a[t(0x151)](t(0x145));const k=process[t(0x161)][t(0x163)](0x2)['filter'](n=>n!=='run')['filter'](n=>n!==a[0x0]);k[t(0x139)]((n,o)=>{const u=t;n===u(0x153)&&k['splice'](o,0x2),n==='-e'&&k[u(0x134)](o,0x2);}),this[t(0x15d)][t(0x14a)](t(0x156),a[t(0x16b)](k));}catch(n){console['error'](n),process[t(0x15b)](0x1);}});export default Run;
1
+ const a86t=a86d;(function(a,b){const p=a86d,c=a();while(!![]){try{const d=-parseInt(p(0x182))/0x1*(parseInt(p(0x149))/0x2)+-parseInt(p(0x153))/0x3*(parseInt(p(0x161))/0x4)+-parseInt(p(0x174))/0x5+-parseInt(p(0x158))/0x6+parseInt(p(0x168))/0x7+parseInt(p(0x179))/0x8+-parseInt(p(0x152))/0x9*(-parseInt(p(0x143))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0x67526));const a86b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a86d;if(c){const e=c[q(0x15d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){const r=a86d;return a86a[r(0x15b)]()[r(0x14c)](r(0x159))[r(0x15b)]()[r(0x151)](a86a)[r(0x14c)]('(((.+)+)+)+$');});a86a();import a86e from'path';import a86f from'fs';import a86g from'dotenv';function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x141;let f=c[d];return f;},a86d(a,b);}import{rimraf}from'rimraf';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a86h from'open';const syncSource=function(a){const s=a86d;a86f[s(0x142)](a,'r'),a86g['config']({'path':a});},Run=Command[a86t(0x16a)]({'name':a86t(0x15f),'mustBeInMakaProject':!![],'shortDesc':a86t(0x176),'description':a86t(0x145),'validOpts':[a86t(0x160),a86t(0x16e),a86t(0x155),'port',a86t(0x181),a86t(0x150),a86t(0x165),a86t(0x169),a86t(0x14b),'x',a86t(0x171),'production']},async function(a,b){const u=a86t;try{await this[u(0x16f)][u(0x16c)](u(0x14e),{'shouldInstall':!![]});const c=a[0x0];if(c===u(0x15c)){const l=this[u(0x16f)]['findProjectDirectory'](),m=a86e[u(0x157)](l,u(0x17a),u(0x15e),u(0x14d),'cordova-build');this[u(0x16f)][u(0x164)](m)&&await rimraf(m);}if(b[u(0x154)]&&b[u(0x154)]===!![]||b['m']&&b['m']===!![])throw u(0x180);await this[u(0x16f)]['compareMakaToLatest']();const d=b[u(0x160)]?b[u(0x160)]:u(0x17e),f=this[u(0x16f)][u(0x144)](d),g=a86e[u(0x157)](f,u(0x166));let h=a86e['join'](f,'settings.json');b[u(0x173)]?h=b[u(0x173)]:h=a86e[u(0x157)](f,u(0x178));if(this[u(0x16f)][u(0x177)](g)&&!b['docker'])Log[u(0x170)](u(0x156)+g),syncSource(g);else!b[u(0x16e)]&&Log['warn'](u(0x14a)+g);this[u(0x16f)][u(0x177)](h)?(Log[u(0x170)](u(0x17d)+h),a=a['concat']([u(0x163),h])):Log[u(0x148)](u(0x172)+h);const i=f[u(0x141)](a86e[u(0x15a)]),j=i[i[u(0x17c)]-0x1];j===u(0x147)&&a['push'](u(0x167));const k=process['argv']['slice'](0x2)[u(0x14f)](n=>n!==u(0x15f))[u(0x14f)](n=>n!==a[0x0]);k[u(0x162)]((n,o)=>{const v=u;n===v(0x16d)&&k[v(0x17b)](o,0x2),n==='-e'&&k[v(0x17b)](o,0x2);}),await a86h('http://localhost:'+(b[u(0x175)]||0xbb8)),this[u(0x16f)][u(0x16b)]('run',a[u(0x17f)](k));}catch(n){console[u(0x146)](n),process['exit'](0x1);}});export default Run;function a86c(){const w=['split','openSync','77790lZPcok','getAppConfigPath','\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.','error','production','warn','659982qeZKid','Cannot\x20find\x20Node\x20Environment\x20File:\x20','extraPackages','search','local','autoupdate','filter','mobileServer','constructor','81xWUWuR','42237Tcfucm','mobile-server','rawLogs','Node\x20Env\x20Config:\x20','join','1045260CZIuuV','(((.+)+)+)+$','sep','toString','ios','apply','.meteor','run','env','4wkHwNQ','forEach','--settings','isDirectory','verbose','process.env','--production','5894861QLTjtp','allowIncompatibleUpdate','create','invokeMeteorCommand','checkMeteorPackage','--env','docker','fsi','notice','exclude-archs','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','settings','109850hErOWZ','port','Run\x20your\x20Meteor\x20application','isFile','settings.json','410576HvVNRH','app','splice','length','Meteor\x20Settings:\x20','development','concat','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)','inspect','1GnVruc'];a86c=function(){return w;};return a86c();}
@@ -1 +1 @@
1
- function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0xe5;var f=c[d];return f;},a87d(a,b);}(function(a,b){var f=a87d,c=a();while(!![]){try{var d=-parseInt(f(0xf0))/0x1*(-parseInt(f(0xea))/0x2)+parseInt(f(0xe8))/0x3+-parseInt(f(0xef))/0x4+-parseInt(f(0xeb))/0x5+parseInt(f(0xe6))/0x6+-parseInt(f(0xec))/0x7+parseInt(f(0xe7))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0x42b4c));var a87b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a87d;if(c){var e=c[g(0xf1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){var h=a87d;return a87a[h(0xe9)]()[h(0xe5)](h(0xee))[h(0xe9)]()[h(0xed)](a87a)[h(0xe5)]('(((.+)+)+)+$');});a87a();import'./set.command.js';import'./global.sub.cmd.js';function a87c(){var i=['933039egTavh','toString','675634TyzwlE','436170lKqkFS','3156139QNAqnI','constructor','(((.+)+)+)+$','91932lCAPaO','1FozygG','apply','search','947160bbgvEr','221056hbCEdH'];a87c=function(){return i;};return a87c();}import'./local.sub.cmd.js';
1
+ (function(a,b){var f=a87d,c=a();while(!![]){try{var d=parseInt(f(0x100))/0x1*(parseInt(f(0x103))/0x2)+parseInt(f(0xfb))/0x3*(parseInt(f(0x102))/0x4)+-parseInt(f(0xf9))/0x5+parseInt(f(0xfd))/0x6+parseInt(f(0x101))/0x7+-parseInt(f(0xfe))/0x8*(parseInt(f(0xf8))/0x9)+parseInt(f(0xff))/0xa*(-parseInt(f(0x104))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0xe2ded));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(0xfa)]()['search'](g(0xf7))[g(0xfa)]()[g(0xfc)](a87a)[g(0xf6)](g(0xf7));});a87a();function a87c(){var h=['constructor','7817874LJviZc','2328ihqqxe','70XIQqGM','1HesqZJ','9536555IawEjd','1772aGfNLA','3208780IwKFsv','5259881bHGsoW','search','(((.+)+)+)+$','18729aMxyGC','4666660kzVDXY','toString','10467zKCgtg'];a87c=function(){return h;};return a87c();}function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0xf6;var f=c[d];return f;},a87d(a,b);}import'./set.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';
@@ -1 +1 @@
1
- const a88k=a88d;function a88c(){const m=['boolean','setGlobalConfig','maka\x20set:global-config','isDirectory','fsi','703695JUPVYs','search','Set\x20global\x20Maka-CLI\x20settings','255598jTeyug','(((.+)+)+)+$','toString','10202UjkDSt','create','allowInsecure','isFile','Set\x20workspace:\x20','1347932sWXNCm','apply','pallet','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','openai','cacert','37760lIAELf','error','60nKkweM','Could\x20not\x20find\x20directory','85112atosjN','maka\x20set:gc\x20--workspace\x20<path>','global-config','Set\x20color\x20pallet\x20to:\x20','maka\x20set:gc\x20--insecure\x20<path>','exit','constructor','workspace','4552HHFqQF','1503dmMnjT','maka\x20set:global-config\x20--cacert\x20<path>','success','resolve','disallowInsecure'];a88c=function(){return m;};return a88c();}(function(a,b){const h=a88d,c=a();while(!![]){try{const d=-parseInt(h(0x17e))/0x1+parseInt(h(0x16f))/0x2+parseInt(h(0x169))/0x3+parseInt(h(0x174))/0x4+-parseInt(h(0x17a))/0x5+-parseInt(h(0x17c))/0x6*(parseInt(h(0x16c))/0x7)+parseInt(h(0x15e))/0x8*(parseInt(h(0x15f))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x3436c));const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a88d;if(c){const e=c[i(0x175)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const j=a88d;return a88a['toString']()[j(0x16a)](j(0x16d))[j(0x16e)]()[j(0x15c)](a88a)['search']('(((.+)+)+)+$');});a88a();import a88e from'path';function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x157;let f=c[d];return f;},a88d(a,b);}import a88f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a88k(0x170)]({'name':a88k(0x158),'usage':a88k(0x166),'aliases':['gc'],'maxOptsLength':0x3,'validOpts':[{'name':a88k(0x179),'boolFlag':![]},{'name':a88k(0x171),'boolFlag':!![]},{'name':a88k(0x163),'boolFlag':!![]},{'name':a88k(0x15d),'boolFlag':![]},{'name':'openai','boolFlag':![]},{'name':'help','boolFlag':!![]},{'name':a88k(0x176),'values':['light','dark']}],'shortDesc':a88k(0x16b),'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':[a88k(0x160),a88k(0x15a),a88k(0x157)]},async function(a,b){const l=a88k;try{if(b[l(0x179)]){if(this[l(0x168)][l(0x172)](b['cacert']))await this[l(0x168)][l(0x165)]({'cert':b[l(0x179)]}),Log['success']('Set\x20CA\x20Cert\x20Path:\x20'+b[l(0x179)]);else{const c=typeof b[l(0x179)]===l(0x164)?'Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.':l(0x177)+b['cacert'];throw Log['error'](c);}}if(b[l(0x15d)]){const d=this[l(0x168)][l(0x167)](b[l(0x15d)]);if(d)await this[l(0x168)]['setGlobalConfig']({'workspace':a88e[l(0x162)](b['workspace'])}),Log[l(0x161)](l(0x173)+a88e[l(0x162)](b[l(0x15d)]));else throw Log[l(0x17b)](l(0x17d));}b[l(0x178)]&&(await this[l(0x168)]['setGlobalConfig']({'openai':b[l(0x178)]}),Log[l(0x161)]('Set\x20OpenAI\x20Key:\x20'+b[l(0x178)]));b[l(0x176)]&&(await this[l(0x168)]['setGlobalConfig']({'pallet':b[l(0x176)]}),Log[l(0x161)](l(0x159)+b[l(0x176)]));if(b[l(0x171)]){if(b[l(0x171)]&&b[l(0x163)])throw Log['error']('One\x20or\x20the\x20other\x20buddy');let f=b['allowInsecure'];b[l(0x163)]&&(f=![]),await this[l(0x168)]['setGlobalConfig']({'allowInsecure':f}),Log['success']('Set\x20allowInsecure:\x20'+f);}process[l(0x15b)](0x0);}catch(g){console[l(0x17b)](g),process[l(0x15b)](0x0);}},a88f);
1
+ const a88j=a88d;function a88c(){const l=['8532984vxHPCR','workspace','error','openai','dark','constructor','global-config','Set\x20allowInsecure:\x20','16691930LmQfkc','boolean','fsi','exit','6921180uWadXN','search','light','isDirectory','One\x20or\x20the\x20other\x20buddy','pallet','setGlobalConfig','264DUfDDN','Could\x20not\x20find\x20directory','70tjrFPx','7054cFsBWO','Set\x20color\x20pallet\x20to:\x20','111566ljCwHo','allowInsecure','isFile','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','maka\x20set:gc\x20--workspace\x20<path>','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x0a\x20\x20There\x20are\x20occasions\x20where\x20your\x20network\x20may\x20need\x20an\x20intermediate\x20certificate\x0a\x20\x20to\x20allow\x20connections\x20outside.\x20\x20You\x20may\x20set\x20your\x20certificate\x20path\x20using\x20the\x20command:\x0a\x0a\x20\x20maka\x20set:gc\x20--cacert\x0a\x20\x20','success','toString','maka\x20set:global-config','55336jdlRJP','Set\x20CA\x20Cert\x20Path:\x20','create','resolve','help','428PtJsJE','Set\x20workspace:\x20','maka\x20set:global-config\x20--cacert\x20<path>','cacert','(((.+)+)+)+$','disallowInsecure','515163YBZqQa'];a88c=function(){return l;};return a88c();}(function(a,b){const h=a88d,c=a();while(!![]){try{const d=parseInt(h(0x1ec))/0x1*(parseInt(h(0x1dc))/0x2)+-parseInt(h(0x1f2))/0x3+-parseInt(h(0x1e7))/0x4*(-parseInt(h(0x1db))/0x5)+-parseInt(h(0x1d9))/0x6*(parseInt(h(0x1de))/0x7)+parseInt(h(0x1f3))/0x8+parseInt(h(0x1ff))/0x9+-parseInt(h(0x1fb))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0xf3551));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[i(0x1e5)]()['search']('(((.+)+)+)+$')['toString']()[i(0x1f8)](a88a)[i(0x200)](i(0x1f0));});a88a();import a88e from'path';import a88f from'./set.command.js';function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x1d7;let f=c[d];return f;},a88d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a88j(0x1e9)]({'name':a88j(0x1f9),'usage':a88j(0x1e6),'aliases':['gc'],'maxOptsLength':0x3,'validOpts':[{'name':a88j(0x1ef),'boolFlag':![]},{'name':a88j(0x1df),'boolFlag':!![]},{'name':'disallowInsecure','boolFlag':!![]},{'name':'workspace','boolFlag':![]},{'name':a88j(0x1f6),'boolFlag':![]},{'name':a88j(0x1eb),'boolFlag':!![]},{'name':a88j(0x1d7),'values':[a88j(0x201),a88j(0x1f7)]}],'shortDesc':'Set\x20global\x20Maka-CLI\x20settings','description':a88j(0x1e3),'examples':[a88j(0x1ee),'maka\x20set:gc\x20--insecure\x20<path>',a88j(0x1e2)]},async function(a,b){const k=a88j;try{if(b[k(0x1ef)]){if(this['fsi'][k(0x1e0)](b['cacert']))await this[k(0x1fd)][k(0x1d8)]({'cert':b[k(0x1ef)]}),Log['success'](k(0x1e8)+b[k(0x1ef)]);else{const c=typeof b[k(0x1ef)]===k(0x1fc)?k(0x1e1):'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+b[k(0x1ef)];throw Log[k(0x1f5)](c);}}if(b[k(0x1f4)]){const d=this[k(0x1fd)][k(0x202)](b[k(0x1f4)]);if(d)await this['fsi'][k(0x1d8)]({'workspace':a88e[k(0x1ea)](b[k(0x1f4)])}),Log[k(0x1e4)](k(0x1ed)+a88e[k(0x1ea)](b[k(0x1f4)]));else throw Log[k(0x1f5)](k(0x1da));}b[k(0x1f6)]&&(await this[k(0x1fd)]['setGlobalConfig']({'openai':b[k(0x1f6)]}),Log[k(0x1e4)]('Set\x20OpenAI\x20Key:\x20'+b[k(0x1f6)]));b[k(0x1d7)]&&(await this[k(0x1fd)][k(0x1d8)]({'pallet':b[k(0x1d7)]}),Log[k(0x1e4)](k(0x1dd)+b[k(0x1d7)]));if(b[k(0x1df)]){if(b['allowInsecure']&&b[k(0x1f1)])throw Log[k(0x1f5)](k(0x203));let f=b['allowInsecure'];b[k(0x1f1)]&&(f=![]),await this[k(0x1fd)][k(0x1d8)]({'allowInsecure':f}),Log[k(0x1e4)](k(0x1fa)+f);}process['exit'](0x0);}catch(g){console['error'](g),process[k(0x1fe)](0x0);}},a88f);
@@ -1 +1 @@
1
- var a89i=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=-parseInt(f(0x1e9))/0x1*(parseInt(f(0x1dd))/0x2)+parseInt(f(0x1e3))/0x3+-parseInt(f(0x1e5))/0x4*(-parseInt(f(0x1db))/0x5)+-parseInt(f(0x1d6))/0x6*(-parseInt(f(0x1d8))/0x7)+parseInt(f(0x1eb))/0x8*(parseInt(f(0x1e7))/0x9)+parseInt(f(0x1d7))/0xa*(-parseInt(f(0x1ea))/0xb)+-parseInt(f(0x1dc))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x9c8b7));function a89c(){var k=['create','apply','141305pRKiBG','14343972CQdaKs','61432BPFyEh','Set\x20local\x20maka\x20app\x20settings','maka\x20set:local-config','constructor','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','toString','2980503RrxbKX','Sorry,\x20not\x20implemented\x20yet','152WUoUkm','local-config','127458aLGkhC','(((.+)+)+)+$','1AnjGAi','2313806gybcwF','192dczDqs','6mDLOQi','30FZAsaH','636895QqilVt'];a89c=function(){return k;};return a89c();}var a89b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a89d;if(c){var e=c[g(0x1da)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){var h=a89d;return a89a[h(0x1e2)]()['search'](h(0x1e8))['toString']()[h(0x1e0)](a89a)['search'](h(0x1e8));});a89a();import a89e from'./set.command.js';function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0x1d6;var f=c[d];return f;},a89d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command[a89i(0x1d9)]({'name':a89i(0x1e6),'usage':a89i(0x1df),'examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'shortDesc':a89i(0x1de),'validOpts':[],'description':a89i(0x1e1)},async function(){var j=a89i;Log['notice'](j(0x1e4));},a89e);
1
+ var a89h=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=-parseInt(f(0x1dc))/0x1+parseInt(f(0x1db))/0x2*(-parseInt(f(0x1d5))/0x3)+parseInt(f(0x1de))/0x4*(-parseInt(f(0x1da))/0x5)+-parseInt(f(0x1d6))/0x6*(parseInt(f(0x1e3))/0x7)+parseInt(f(0x1d7))/0x8*(parseInt(f(0x1e0))/0x9)+-parseInt(f(0x1df))/0xa+parseInt(f(0x1e1))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x925aa));function a89c(){var j=['Set\x20local\x20maka\x20app\x20settings','toString','20XqMeHq','124214RCZUhL','412912VczTDP','constructor','460736DZTNYY','8166460NhyisH','1562796NFDuNK','36767500GuDjtZ','Sorry,\x20not\x20implemented\x20yet','5017957tmBsKh','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','(((.+)+)+)+$','33cYRugg','6FVzFww','16vcQRwk'];a89c=function(){return j;};return a89c();}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(0x1d9)]()['search'](g(0x1e5))[g(0x1d9)]()[g(0x1dd)](a89a)['search']('(((.+)+)+)+$');});a89a();function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0x1d5;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['create']({'name':'local-config','usage':'maka\x20set:local-config','examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'shortDesc':a89h(0x1d8),'validOpts':[],'description':a89h(0x1e4)},async function(){var i=a89h;Log['notice'](i(0x1e2));},a89e);
@@ -1 +1 @@
1
- const a90i=a90d;(function(a,b){const f=a90d,c=a();while(!![]){try{const d=-parseInt(f(0x1bc))/0x1*(-parseInt(f(0x1c6))/0x2)+-parseInt(f(0x1bb))/0x3*(parseInt(f(0x1c9))/0x4)+-parseInt(f(0x1ca))/0x5+-parseInt(f(0x1c8))/0x6*(parseInt(f(0x1c0))/0x7)+-parseInt(f(0x1bf))/0x8+-parseInt(f(0x1ba))/0x9*(-parseInt(f(0x1cb))/0xa)+-parseInt(f(0x1c5))/0xb*(-parseInt(f(0x1c3))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x47e5b));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a90d;if(c){const e=c[g(0x1bd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const h=a90d;return a90a[h(0x1b7)]()[h(0x1c2)]('(((.+)+)+)+$')[h(0x1b7)]()['constructor'](a90a)[h(0x1c2)](h(0x1b9));});a90a();import{Command}from'../../command.js';const SetCommand=Command[a90i(0x1b8)]({'name':a90i(0x1c4),'usage':a90i(0x1c7),'shortDesc':'Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','description':a90i(0x1c1),'validOpts':[]},async function(a,b){const j=a90i,c=a[0x0],d=this[j(0x1be)](c);d&&this['runSubCommand'](c,a,b);});function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x1b7;let f=c[d];return f;},a90d(a,b);}function a90c(){const k=['apply','findSubCommand','3109736HFPWnF','21clfPlS','\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','search','405588SUWzQE','set','396BQRuFk','238174gEnldy','maka\x20set:<sub-command>','853038aeVxjZ','2516quayxD','2496270Npdrlc','10FXUima','toString','create','(((.+)+)+)+$','3841407bVKzdw','1869dfDYZg','3TGdqmf'];a90c=function(){return k;};return a90c();}export default SetCommand;
1
+ const a90i=a90d;function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0xe2;let f=c[d];return f;},a90d(a,b);}(function(a,b){const f=a90d,c=a();while(!![]){try{const d=-parseInt(f(0xf5))/0x1+parseInt(f(0xf3))/0x2*(-parseInt(f(0xe5))/0x3)+-parseInt(f(0xf0))/0x4*(parseInt(f(0xe2))/0x5)+-parseInt(f(0xf4))/0x6+parseInt(f(0xe8))/0x7*(parseInt(f(0xe3))/0x8)+-parseInt(f(0xe7))/0x9*(-parseInt(f(0xed))/0xa)+parseInt(f(0xe6))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x3de6d));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a90d;if(c){const e=c[g(0xf2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const h=a90d;return a90a['toString']()[h(0xec)](h(0xeb))[h(0xe4)]()[h(0xe9)](a90a)['search'](h(0xeb));});a90a();import{Command}from'../../command.js';const SetCommand=Command['create']({'name':a90i(0xea),'usage':a90i(0xef),'shortDesc':a90i(0xf6),'description':a90i(0xee),'validOpts':[]},async function(a,b){const j=a90i,c=a[0x0],d=this['findSubCommand'](c);d&&this[j(0xf1)](c,a,b);});export default SetCommand;function a90c(){const k=['runSubCommand','apply','2HwcQGC','2558544dVZwEg','479099aySPGz','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','4945RWpdNr','59992rIIYYn','toString','512781oZTcHM','12559998akyWEv','9erTpRv','245AyeGhh','constructor','set','(((.+)+)+)+$','search','97810lHJwAZ','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20either\x20the\x20global\x20~/.maka\x20config\x20file,\x0a\x20\x20or\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config\x20file.\x0a\x20\x20','maka\x20set:<sub-command>','340qhxudg'];a90c=function(){return k;};return a90c();}
@@ -1 +1 @@
1
- const a91l=a91d;function a91c(){const n=['24bBoXLk','3071047WfHecn','join','exit','error','parse','length','env','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','2150814npsbpo','maka\x20ssh\x20--env\x20dev','constructor','search','1820VJsqgD','verbose','toString','(((.+)+)+)+$','5686452ovrDVi','18oFfGbV','651354RtnURh','fsi','readFileSync','assign','getAppConfigPath','3826130EzCgdS','11732ysmYcp','ssh.json','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','8AIrMCy','ssh','maka\x20ssh\x20--env\x20staging','129594HtVvpT','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22'];a91c=function(){return n;};return a91c();}(function(a,b){const j=a91d,c=a();while(!![]){try{const d=-parseInt(j(0x152))/0x1*(parseInt(j(0x14f))/0x2)+-parseInt(j(0x15e))/0x3+parseInt(j(0x14c))/0x4*(-parseInt(j(0x140))/0x5)+parseInt(j(0x144))/0x6+parseInt(j(0x155))/0x7*(parseInt(j(0x154))/0x8)+parseInt(j(0x145))/0x9*(parseInt(j(0x14b))/0xa)+-parseInt(j(0x146))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xa2d6f));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(0x142)]()[k(0x161)](k(0x143))[k(0x142)]()[k(0x160)](a91a)[k(0x161)](k(0x143));});a91a();import a91e from'fs';import a91f from'path';function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0x140;let f=c[d];return f;},a91d(a,b);}import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command['create']({'name':a91l(0x150),'usage':'maka\x20ssh\x20<command>','mustBeInMakaProject':!![],'requiredOpts':[a91l(0x15b)],'validOpts':['env','verbose'],'isPro':!![],'shortDesc':a91l(0x14e),'examples':[a91l(0x15f),a91l(0x151),'maka\x20ssh\x20--env\x20prod',a91l(0x15d),a91l(0x15c),a91l(0x153)]},async function(a,b){const m=a91l;try{const c=this[m(0x147)][m(0x14a)](b[m(0x15b)]);let d='';a[m(0x15a)]>0x0&&(d=a[0x0]);const f=a91f[m(0x156)](c,m(0x14d)),g=a91e[m(0x148)](f)[m(0x142)](),h=JSON[m(0x159)](g);Object[m(0x149)](h,{'env':c}),SSH['sshSync'](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[m(0x141)]});}catch(i){Log[m(0x158)](i),process[m(0x157)](0x1);}});
1
+ const a91m=a91d;function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0x6d;let f=c[d];return f;},a91d(a,b);}(function(a,b){const j=a91d,c=a();while(!![]){try{const d=parseInt(j(0x82))/0x1+parseInt(j(0x88))/0x2+-parseInt(j(0x73))/0x3+parseInt(j(0x78))/0x4*(-parseInt(j(0x7e))/0x5)+-parseInt(j(0x7a))/0x6+parseInt(j(0x75))/0x7+parseInt(j(0x77))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0xd6502));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a91d;if(c){const e=c[k(0x6d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const l=a91d;return a91a[l(0x85)]()[l(0x83)](l(0x7f))[l(0x85)]()['constructor'](a91a)[l(0x83)](l(0x7f));});a91a();import a91e from'fs';function a91c(){const o=['(((.+)+)+)+$','exit','maka\x20ssh\x20--env\x20prod','263249prcrmc','search','length','toString','getAppConfigPath','join','490322aEgLxt','apply','readFileSync','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','create','verbose','maka\x20ssh\x20<command>','1460814cWgSPT','error','10799005meqOfu','parse','6642408PUVrfO','2068bAZuJw','env','5845974ZMxUeA','ssh.json','sshSync','assign','5245XpGMYG'];a91c=function(){return o;};return a91c();}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(0x70)]({'name':'ssh','usage':a91m(0x72),'mustBeInMakaProject':!![],'requiredOpts':['env'],'validOpts':[a91m(0x79),a91m(0x71)],'isPro':!![],'shortDesc':'Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','examples':['maka\x20ssh\x20--env\x20dev','maka\x20ssh\x20--env\x20staging',a91m(0x81),'maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22',a91m(0x6f),'maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22']},async function(a,b){const n=a91m;try{const c=this['fsi'][n(0x86)](b['env']);let d='';a[n(0x84)]>0x0&&(d=a[0x0]);const f=a91f[n(0x87)](c,n(0x7b)),g=a91e[n(0x6e)](f)[n(0x85)](),h=JSON[n(0x76)](g);Object[n(0x7d)](h,{'env':c}),SSH[n(0x7c)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0x71)]});}catch(i){Log[n(0x74)](i),process[n(0x80)](0x1);}});
@@ -1 +1 @@
1
- function a92c(){const z=['notice','letsencrypt.json','56957090cHRCqQ','domains','generate-csr','assign','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','appName','22360sEyysw','.csr','Email\x20to\x20use\x20for\x20auto-updates:\x20','search','existsSync','exit','8297975SEkgzl','2008tkGKwk','ping','join','Create\x20and\x20manage\x20your\x20SSL\x20operations.','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','.crt','Remote\x20host\x20connection\x20successful','.key','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','error','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','generate-ssc','Please\x20provide\x20a\x20command.','email','\x20--email\x20','Checking\x20remote\x20host\x20availability','success','domainNames','parse','(((.+)+)+)+$','genSSC','/ssh.json','writeFileSync','102FCqEIn','ssh','env','constructor','180Nroccv','ask','getAppConfigPath','uname\x20-a','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','Using\x20saved\x20letsencrypt\x20config','New\x20CSR\x20written\x20to\x20','maka\x20ssl\x20--env\x20dev\x20generate-csr','stringify','start','create','getMakaProjectConfig','withSpinner','mkKeysDir','40986TqMWvO','toString','sudo\x20snap\x20install\x20--classic\x20certbot','28738Eeunva','fsi','[?]\x20Domains\x20to\x20register:\x20','readFileSync','5468260BwInxK','emailUpdate','letsencrypt','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','1674917WXPMlx'];a92c=function(){return z;};return a92c();}const a92x=a92d;(function(a,b){const v=a92d,c=a();while(!![]){try{const d=-parseInt(v(0x1c6))/0x1+-parseInt(v(0x202))/0x2*(-parseInt(v(0x1ed))/0x3)+-parseInt(v(0x206))/0x4+-parseInt(v(0x1cf))/0x5*(-parseInt(v(0x1f1))/0x6)+-parseInt(v(0x1d5))/0x7+parseInt(v(0x1d6))/0x8*(-parseInt(v(0x1ff))/0x9)+parseInt(v(0x1c9))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xe76f2));const a92b=(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;};}()),a92a=a92b(this,function(){const w=a92d;return a92a[w(0x200)]()[w(0x1d2)]('(((.+)+)+)+$')[w(0x200)]()[w(0x1f0)](a92a)[w(0x1d2)](w(0x1e9));});a92a();function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x1c6;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[a92x(0x1fb)]({'name':'ssl','usage':'maka\x20ssl\x20[command]','validOpts':[a92x(0x1ca),'email'],'requiredOpts':[a92x(0x1ef)],'shortDesc':a92x(0x1d9),'mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':[a92x(0x1f8),a92x(0x1e0),a92x(0x209)]},async function(a,b){const y=a92x,c=this[y(0x203)][y(0x1fc)](),d=this['fsi'][y(0x1f3)](b[y(0x1ef)]),f=this[y(0x203)][y(0x1fe)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===y(0x1cb))SSL['genCSR']({'keyName':c['appName']+y(0x1dd),'csrName':c[y(0x1ce)]+y(0x1d0),'cwd':f});else{if(g===y(0x1e1)){if(!a92e[y(0x1d3)](a92f['join'](f,c[y(0x1ce)]+y(0x1dd))))throw y(0x1da)+a92f[y(0x1d8)](f,c[y(0x1ce)]+y(0x1dd));if(!a92e['existsSync'](a92f[y(0x1d8)](f,c[y(0x1ce)]+y(0x1d0))))throw'The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20'+a92f[y(0x1d8)](f,c[y(0x1ce)]+y(0x1d0));SSL[y(0x1ea)]({'keyName':c['appName']+'.key','crtName':c[y(0x1ce)]+y(0x1db),'cwd':f}),Log[y(0x1c7)](y(0x1f7)+f);}else{if(g===y(0x208)){let h=b['domains'],i=b['email'];try{const p=a92e[y(0x205)](a92f['join'](d,y(0x1c8)))[y(0x200)](),q=JSON[y(0x1e8)](p);h=b['domains']?b[y(0x1ca)]:q[y(0x1e7)],i=b['email']?b[y(0x1e3)]:q[y(0x207)],(!b['email']||!b['domains'])&&Log[y(0x1c7)](y(0x1f6));}catch(r){}const j=JSON['parse'](a92e['readFileSync'](d+y(0x1eb))[y(0x200)]());Object[y(0x1cc)](j,{'env':d}),Log[y(0x1c7)](y(0x1e5));try{const s=SSH[y(0x1d7)](y(0x1f4),j);if(!s)throw'Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.';if(s)Log[y(0x1e6)](y(0x1dc));}catch(t){Log[y(0x1df)](t);return;}const k=Log[y(0x1fd)]();k[y(0x1fa)]('Verifying\x20Letsencrypt\x20configuration'),SSH[y(0x1ee)](y(0x1de),{...j}),SSH[y(0x1ee)](y(0x201),{...j}),SSH[y(0x1ee)](y(0x1cd),{...j}),k[y(0x1e6)]();const l=h?h:await Actions[y(0x1f2)](y(0x204)),m=i?i:await Actions[y(0x1f2)](y(0x1d1));SSH[y(0x1ee)](y(0x1f5)+l+y(0x1e4)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[y(0x1f9)](n,null,0x2);a92e[y(0x1ec)](a92f[y(0x1d8)](d,y(0x1c8)),o);}else throw y(0x1e2);}}}catch(u){console[y(0x1df)](u),process[y(0x1d4)](0x0);}});
1
+ const a92y=a92d;(function(a,b){const v=a92d,c=a();while(!![]){try{const d=parseInt(v(0x21e))/0x1+-parseInt(v(0x210))/0x2+parseInt(v(0x1ea))/0x3*(-parseInt(v(0x219))/0x4)+-parseInt(v(0x209))/0x5+-parseInt(v(0x21c))/0x6+-parseInt(v(0x222))/0x7+parseInt(v(0x223))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xdc295));const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0x1ee)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a[x(0x1eb)]()[x(0x221)]('(((.+)+)+)+$')['toString']()['constructor'](a92a)[x(0x221)](x(0x1f1));});a92a();import a92e from'fs';import a92f from'path';import{Actions}from'../tools/actions/actions.class.js';function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x1e8;let f=c[d];return f;},a92d(a,b);}import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{SSL}from'../tools/ssl/ssl.class.js';Command[a92y(0x21b)]({'name':a92y(0x206),'usage':a92y(0x20f),'validOpts':[a92y(0x224),a92y(0x20e)],'requiredOpts':['env'],'shortDesc':a92y(0x218),'mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':['maka\x20ssl\x20--env\x20dev\x20generate-csr',a92y(0x212),a92y(0x214)]},async function(a,b){const z=a92y,c=this[z(0x202)][z(0x21d)](),d=this['fsi'][z(0x1f7)](b['env']),f=this['fsi'][z(0x1f3)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0x211))SSL[z(0x1f8)]({'keyName':c[z(0x217)]+z(0x203),'csrName':c[z(0x217)]+'.csr','cwd':f});else{if(g===z(0x201)){if(!a92e[z(0x1ff)](a92f[z(0x208)](f,c[z(0x217)]+z(0x203))))throw z(0x1f4)+a92f[z(0x208)](f,c['appName']+'.key');if(!a92e['existsSync'](a92f[z(0x208)](f,c[z(0x217)]+z(0x1f5))))throw z(0x1fd)+a92f[z(0x208)](f,c[z(0x217)]+z(0x1f5));SSL[z(0x216)]({'keyName':c[z(0x217)]+z(0x203),'crtName':c[z(0x217)]+'.crt','cwd':f}),Log[z(0x200)]('New\x20CSR\x20written\x20to\x20'+f);}else{if(g==='letsencrypt'){let h=b[z(0x224)],i=b[z(0x20e)];try{const p=a92e[z(0x1ec)](a92f['join'](d,z(0x215)))[z(0x1eb)](),q=JSON[z(0x20b)](p);h=b[z(0x224)]?b[z(0x224)]:q[z(0x1ef)],i=b[z(0x20e)]?b['email']:q['emailUpdate'],(!b[z(0x20e)]||!b[z(0x224)])&&Log['notice'](z(0x1fa));}catch(r){}const j=JSON[z(0x20b)](a92e[z(0x1ec)](d+z(0x21f))[z(0x1eb)]());Object[z(0x213)](j,{'env':d}),Log[z(0x200)](z(0x1e8));try{const s=SSH['ping']('uname\x20-a',j);if(!s)throw z(0x1f0);if(s)Log[z(0x1fb)](z(0x1ed));}catch(t){Log[z(0x1f9)](t);return;}const k=Log[z(0x1fc)]();k[z(0x20d)](z(0x1f2)),SSH[z(0x21a)]('sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core',{...j}),SSH[z(0x21a)](z(0x220),{...j}),SSH[z(0x21a)](z(0x20a),{...j}),k[z(0x1fb)]();const l=h?h:await Actions[z(0x205)](z(0x207)),m=i?i:await Actions[z(0x205)](z(0x1e9));SSH[z(0x21a)](z(0x204)+l+z(0x20c)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0x225)](n,null,0x2);a92e[z(0x1f6)](a92f['join'](d,z(0x215)),o);}else throw z(0x1fe);}}}catch(u){console[z(0x1f9)](u),process['exit'](0x0);}});function a92c(){const A=['The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','.csr','writeFileSync','getAppConfigPath','genCSR','error','Using\x20saved\x20letsencrypt\x20config','success','withSpinner','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','Please\x20provide\x20a\x20command.','existsSync','notice','generate-ssc','fsi','.key','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','ask','ssl','[?]\x20Domains\x20to\x20register:\x20','join','7887100pETzqo','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','parse','\x20--email\x20','start','email','maka\x20ssl\x20[command]','2984566oQfdlg','generate-csr','maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate','assign','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','letsencrypt.json','genSSC','appName','Create\x20and\x20manage\x20your\x20SSL\x20operations.','32304hziyap','ssh','create','5288010VlIRrs','getMakaProjectConfig','761513nPbWaK','/ssh.json','sudo\x20snap\x20install\x20--classic\x20certbot','search','3214197OdbnXU','43704520vxUMQQ','domains','stringify','Checking\x20remote\x20host\x20availability','Email\x20to\x20use\x20for\x20auto-updates:\x20','339sMInkN','toString','readFileSync','Remote\x20host\x20connection\x20successful','apply','domainNames','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','(((.+)+)+)+$','Verifying\x20Letsencrypt\x20configuration','mkKeysDir'];a92c=function(){return A;};return a92c();}
@@ -1 +1 @@
1
- const a93q=a93d;(function(a,b){const m=a93d,c=a();while(!![]){try{const d=parseInt(m(0x1a0))/0x1*(-parseInt(m(0x186))/0x2)+parseInt(m(0x193))/0x3*(-parseInt(m(0x18b))/0x4)+-parseInt(m(0x18a))/0x5+-parseInt(m(0x197))/0x6+parseInt(m(0x1a3))/0x7+parseInt(m(0x1a4))/0x8+parseInt(m(0x167))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x7f92a));const a93b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a93d;if(c){const e=c[n(0x188)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){const o=a93d;return a93a[o(0x166)]()[o(0x177)](o(0x169))[o(0x166)]()['constructor'](a93a)['search']('(((.+)+)+)+$');});a93a();import a93e from'fs';import a93f from'path';import a93g from'dotenv';function a93c(){const t=['Meteor\x20Settings:\x20','mocha','jasmine','search','engines','join','--env','--driver-package','openSync','none','driverPackage','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','concat','slice','invokeMeteorCommand','findProjectDirectory','process.env','unit','42UgTPyY','sanjo:jasmine','apply','splice','1175065wmiUcj','1088vKhSBC','.maka','fsi','isFile','notice','filter','create','driver','5502gILhmn','packages','once','config.json','5143524aspaQL','settings.json','getAppConfigPath','env','argv','--full-app','Node\x20Env\x20Config:\x20','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','parse','44067cRQMnW','config','rawLogs','6465466yNQtPJ','6685400ZRLPsZ','test-packages','inspect','toString','11517723GTDyxU','test','(((.+)+)+)+$','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','exit','readFileSync','testAppPath','warn','Cannot\x20find\x20Node\x20Environment\x20File:\x20','--packages','meteortesting:mocha','driver-package','--settings'];a93c=function(){return t;};return a93c();}import{Command}from'../command.js';function a93d(a,b){const c=a93c();return a93d=function(d,e){d=d-0x165;let f=c[d];return f;},a93d(a,b);}import{Log}from'../tools/log/log.class.js';const syncSource=function(a){const p=a93d;a93e[p(0x17c)](a,'r'),a93g[p(0x1a1)]({'path':a});};Command[a93q(0x191)]({'name':a93q(0x168),'mustBeInMakaProject':!![],'validOpts':[a93q(0x195),a93q(0x194),a93q(0x192),a93q(0x17e),a93q(0x185),a93q(0x19a),a93q(0x1a2),'port',a93q(0x165),a93q(0x16d)],'usage':'maka\x20test\x20<opts>','shortDesc':a93q(0x16a),'examples':[]},function(a,b){const r=a93q;try{let c=this[r(0x18d)][r(0x199)]('development');b['env']&&(c=this[r(0x18d)]['getAppConfigPath'](b[r(0x19a)]));(!b[r(0x185)]||!!b['once'])&&(a=a[r(0x180)]([r(0x19c)]));b[r(0x185)]&&delete b[r(0x185)];let d=b[r(0x172)]||b[r(0x192)]||r(0x17d);if(d==='none'){const j=JSON[r(0x19f)](a93e[r(0x16c)](a93f[r(0x179)](this[r(0x18d)][r(0x183)](),r(0x18c),r(0x196)),'utf8'));if(j[r(0x178)][r(0x168)]===r(0x176))d=r(0x187);else j[r(0x178)][r(0x168)]===r(0x175)&&(d=r(0x171));}if(d===r(0x17d))throw r(0x17f);(!b[r(0x172)]||!b['driver'])&&(a=a[r(0x180)]([r(0x17b),d]));const f=a93f['join'](c,r(0x198));this['fsi'][r(0x18e)](f)?(Log[r(0x18f)](r(0x174)+f),a=a[r(0x180)]([r(0x173),f])):Log[r(0x16e)](r(0x19e)+f);const g=a93f[r(0x179)](c,r(0x184));this[r(0x18d)][r(0x18e)](g)?(Log[r(0x18f)](r(0x19d)+g),syncSource(g)):Log['warn'](r(0x16f)+g);const h=process[r(0x19b)][r(0x181)](0x2)[r(0x190)](k=>k!==r(0x17a))[r(0x190)](k=>k!==r(0x168))[r(0x190)](k=>k!==a[0x0]);h['forEach']((k,l)=>{const s=r;(k===s(0x17a)||k==='--driver')&&h[s(0x189)](l,0x2),k===s(0x170)&&h[s(0x189)](l,0x1);});const i=b[r(0x194)]?r(0x1a5):'test';this['fsi'][r(0x182)](i,a[r(0x180)](h));}catch(k){console['error'](k),process[r(0x16b)](0x0);}});
1
+ const a93q=a93d;function a93c(){const t=['sanjo:jasmine','--full-app','port','meteortesting:mocha','error','--env','driver-package','--packages','engines','13785auKNtm','--driver','2423358XzFhXK','412KahUPt','29875yiRrFK','2udwMdh','toString','888WFTiSH','rawLogs','fsi','--driver-package','notice','Cannot\x20find\x20Node\x20Environment\x20File:\x20','parse','search','splice','config.json','--settings','Node\x20Env\x20Config:\x20','test','none','6329456DhUtCV','apply','packages','isFile','inspect','concat','getAppConfigPath','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','slice','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','10UrGFya','.maka','join','unit','forEach','env','findProjectDirectory','openSync','utf8','warn','readFileSync','jasmine','exit','(((.+)+)+)+$','config','4376061hRbrgv','318442dWioPH','maka\x20test\x20<opts>','Meteor\x20Settings:\x20','test-packages','filter','driver','22968847eJMcOw','argv'];a93c=function(){return t;};return a93c();}(function(a,b){const m=a93d,c=a();while(!![]){try{const d=parseInt(m(0x188))/0x1*(-parseInt(m(0x15e))/0x2)+-parseInt(m(0x159))/0x3*(parseInt(m(0x15c))/0x4)+-parseInt(m(0x15d))/0x5*(parseInt(m(0x160))/0x6)+parseInt(m(0x15b))/0x7+-parseInt(m(0x16e))/0x8+-parseInt(m(0x187))/0x9*(-parseInt(m(0x178))/0xa)+parseInt(m(0x14e))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x6eaab));const a93b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a93d;if(c){const e=c[n(0x16f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){const o=a93d;return a93a[o(0x15f)]()['search'](o(0x185))[o(0x15f)]()['constructor'](a93a)[o(0x167)](o(0x185));});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-0x14b;let f=c[d];return f;},a93d(a,b);}const syncSource=function(a){const p=a93d;a93e[p(0x17f)](a,'r'),a93g[p(0x186)]({'path':a});};Command['create']({'name':'test','mustBeInMakaProject':!![],'validOpts':['once',a93q(0x170),a93q(0x14d),'driverPackage',a93q(0x17b),a93q(0x17d),a93q(0x161),a93q(0x152),a93q(0x172),'testAppPath'],'usage':a93q(0x189),'shortDesc':'Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','examples':[]},function(a,b){const r=a93q;try{let c=this[r(0x162)]['getAppConfigPath']('development');b[r(0x17d)]&&(c=this['fsi'][r(0x174)](b['env']));(!b[r(0x17b)]||!!b['once'])&&(a=a[r(0x173)]([r(0x151)]));b[r(0x17b)]&&delete b['unit'];let d=b[r(0x156)]||b[r(0x14d)]||'none';if(d===r(0x16d)){const j=JSON[r(0x166)](a93e[r(0x182)](a93f['join'](this[r(0x162)][r(0x17e)](),r(0x179),r(0x169)),r(0x180)));if(j[r(0x158)]['test']===r(0x183))d=r(0x150);else j[r(0x158)][r(0x16c)]==='mocha'&&(d=r(0x153));}if(d===r(0x16d))throw r(0x175);(!b['driver-package']||!b['driver'])&&(a=a[r(0x173)]([r(0x163),d]));const f=a93f['join'](c,'settings.json');this[r(0x162)][r(0x171)](f)?(Log[r(0x164)](r(0x18a)+f),a=a[r(0x173)]([r(0x16a),f])):Log[r(0x181)](r(0x177)+f);const g=a93f[r(0x17a)](c,'process.env');this['fsi'][r(0x171)](g)?(Log['notice'](r(0x16b)+g),syncSource(g)):Log[r(0x181)](r(0x165)+g);const h=process[r(0x14f)][r(0x176)](0x2)[r(0x14c)](k=>k!==r(0x155))[r(0x14c)](k=>k!==r(0x16c))[r(0x14c)](k=>k!==a[0x0]);h[r(0x17c)]((k,l)=>{const s=r;(k===s(0x155)||k===s(0x15a))&&h[s(0x168)](l,0x2),k===s(0x157)&&h[s(0x168)](l,0x1);});const i=b['packages']?r(0x14b):r(0x16c);this[r(0x162)]['invokeMeteorCommand'](i,a[r(0x173)](h));}catch(k){console[r(0x154)](k),process[r(0x184)](0x0);}});
@@ -1 +1 @@
1
- const a94m=a94d;(function(a,b){const k=a94d,c=a();while(!![]){try{const d=-parseInt(k(0x1c3))/0x1+parseInt(k(0x1b8))/0x2+-parseInt(k(0x1a5))/0x3+parseInt(k(0x1c6))/0x4+parseInt(k(0x1b4))/0x5*(parseInt(k(0x1b9))/0x6)+parseInt(k(0x1aa))/0x7*(-parseInt(k(0x1bf))/0x8)+parseInt(k(0x1c5))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0x682c9));function a94c(){const o=['maka\x20version\x20--verbose','Project\x27s\x20Meteor\x20Version\x20','replace','create','node\x20-v','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','----------------------System----------------------------','11235FIIOOc','exit','System\x27s\x20Node\x20Version\x20','fsi','615518SbitWp','378toMIks','isMakaProject','maka\x20version','maka\x20v',')\x20to\x20at\x20least\x20meteor\x27s\x20(','Project\x27s\x20Meteor\x20Node\x20Version\x20','26456IOfNOP','error','warn','search','289155OTBmFq','verbose','5589108aPqSoA','531316FeykoB','meteor','version','toString','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.','----------------------Project----------------------------','meteor.bat','bright','compareMakaToLatest','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','281328KQpJxU','(((.+)+)+)+$','win32','getGlobalMeteorVersion','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','833aVZrlp','constructor','\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'];a94c=function(){return o;};return a94c();}const a94b=(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;};}()),a94a=a94b(this,function(){const l=a94d;return a94a['toString']()[l(0x1c2)](l(0x1a6))[l(0x1c9)]()[l(0x1ab)](a94a)[l(0x1c2)](l(0x1a6));});function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x1a1;let f=c[d];return f;},a94d(a,b);}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.7.4'};Command[a94m(0x1b0)]({'name':a94m(0x1c8),'aliases':['v'],'usage':'maka\x20version','maxArgLength':0x1,'validOpts':[a94m(0x1c4)],'shortDesc':a94m(0x1a9),'examples':[a94m(0x1bc),a94m(0x1bb),a94m(0x1ad)],'description':'\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'},async function(a,b){const n=a94m;try{const c=process['platform']===n(0x1a7)?n(0x1a1):n(0x1c7);Log['majestic']('Maka\x20'+pjson['version']),await this[n(0x1b7)][n(0x1a3)]();if(b[n(0x1c4)]){await this[n(0x1b7)][n(0x1a3)](),Log[n(0x1a2)](n(0x1b3));const d=this[n(0x1b7)][n(0x1a8)]();Log[n(0x1a2)](('System\x27s\x20Meteor\x20Version\x20'+d)[n(0x1af)]('\x0a',''));const f=execSync(c+'\x20node\x20-v')['toString']()['replace'](/\r?\n|\r/,'')['replace']('v','');Log[n(0x1a2)](n(0x1b2)+f);const g=execSync(n(0x1b1))[n(0x1c9)]()[n(0x1af)](/\r?\n|\r/,'')['replace']('v','');a94e['gt'](f,g)?(Log[n(0x1c1)](n(0x1b6)+g),Log['warn']('\x20!\x20consider\x20updating\x20your\x20node\x20version\x20('+g+n(0x1bd)+f+')')):Log[n(0x1a2)](n(0x1b6)+g);if(this[n(0x1b7)][n(0x1ba)]()){Log[n(0x1a2)](n(0x1cb));const h=this['fsi']['getProjectMeteorVersion']();a94e['gt'](d,h)?(Log['warn'](n(0x1ae)+h[n(0x1af)]('\x0a','')),Log[n(0x1c1)](n(0x1a4)+d+'\x22')):Log['notice']((n(0x1ae)+h)[n(0x1af)]('\x0a',''));const i=await this[n(0x1b7)]['getProjectsMeteorNodeVersion']();i==='N/A'?(Log[n(0x1c1)](n(0x1be)+i),Log[n(0x1c1)](n(0x1ca))):Log['bright']('Project\x27s\x20Meteor\x20Node\x20Version\x20'+i),Log[n(0x1a2)](n(0x1ac));}}}catch(j){console[n(0x1c0)](j),process[n(0x1b5)](0x0);}});
1
+ function a94c(){const p=['notice','889sOHIUo','bright','majestic','getProjectMeteorVersion',')\x20to\x20at\x20least\x20meteor\x27s\x20(','7218NegMqy','286383vvHglI','platform','apply','toString','warn','Project\x27s\x20Meteor\x20Version\x20','10qIMITG','exit','\x20node\x20-v','Project\x27s\x20Meteor\x20Node\x20Version\x20','version','fsi','287962RPyosD','(((.+)+)+)+$','maka\x20version','meteor.bat','search','getProjectsMeteorNodeVersion','32372362zOrTky','System\x27s\x20Node\x20Version\x20','----------------------System----------------------------','node\x20-v','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','2039090tHEizI','Maka\x20','4405vhQyKl','replace','compareMakaToLatest','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','maka\x20version\x20--verbose','6663798KpNSDC','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.','win32','System\x27s\x20Meteor\x20Version\x20','constructor','getGlobalMeteorVersion','meteor','\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','create','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','36yKBaef','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','----------------------Project----------------------------','28104FcQaYf','N/A'];a94c=function(){return p;};return a94c();}const a94n=a94d;(function(a,b){const k=a94d,c=a();while(!![]){try{const d=-parseInt(k(0x107))/0x1*(parseInt(k(0x101))/0x2)+parseInt(k(0xfb))/0x3*(-parseInt(k(0xef))/0x4)+parseInt(k(0x114))/0x5*(parseInt(k(0xfa))/0x6)+parseInt(k(0xf5))/0x7*(-parseInt(k(0xf2))/0x8)+-parseInt(k(0xe5))/0x9+parseInt(k(0x112))/0xa+parseInt(k(0x10d))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0xb010a));function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0xe5;let f=c[d];return f;},a94d(a,b);}const a94b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a94d;if(c){const e=c[l(0xfd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a94a=a94b(this,function(){const m=a94d;return a94a[m(0xfe)]()[m(0x10b)]('(((.+)+)+)+$')['toString']()[m(0xe9)](a94a)['search'](m(0x108));});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.7.6'};Command[a94n(0xed)]({'name':'version','aliases':['v'],'usage':a94n(0x109),'maxArgLength':0x1,'validOpts':['verbose'],'shortDesc':a94n(0x117),'examples':['maka\x20v',a94n(0x109),a94n(0x118)],'description':'\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'},async function(a,b){const o=a94n;try{const c=process[o(0xfc)]===o(0xe7)?o(0x10a):o(0xeb);Log[o(0xf7)](o(0x113)+pjson[o(0x105)]),await this[o(0x106)][o(0x116)]();if(b['verbose']){await this['fsi'][o(0x116)](),Log[o(0xf6)](o(0x10f));const d=this[o(0x106)][o(0xea)]();Log[o(0xf6)]((o(0xe8)+d)[o(0x115)]('\x0a',''));const f=execSync(c+o(0x103))[o(0xfe)]()[o(0x115)](/\r?\n|\r/,'')[o(0x115)]('v','');Log[o(0xf6)](o(0x111)+f);const g=execSync(o(0x110))['toString']()[o(0x115)](/\r?\n|\r/,'')[o(0x115)]('v','');a94e['gt'](f,g)?(Log[o(0xff)]('System\x27s\x20Node\x20Version\x20'+g),Log[o(0xff)](o(0xf0)+g+o(0xf9)+f+')')):Log[o(0xf6)](o(0x10e)+g);if(this[o(0x106)]['isMakaProject']()){Log[o(0xf6)](o(0xf1));const h=this[o(0x106)][o(0xf8)]();a94e['gt'](d,h)?(Log[o(0xff)](o(0x100)+h[o(0x115)]('\x0a','')),Log[o(0xff)](o(0xee)+d+'\x22')):Log[o(0xf4)]((o(0x100)+h)[o(0x115)]('\x0a',''));const i=await this[o(0x106)][o(0x10c)]();i===o(0xf3)?(Log[o(0xff)](o(0x104)+i),Log[o(0xff)](o(0xe6))):Log[o(0xf6)]('Project\x27s\x20Meteor\x20Node\x20Version\x20'+i),Log[o(0xf6)](o(0xec));}}}catch(j){console['error'](j),process[o(0x102)](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a95d,c=a();while(!![]){try{var d=-parseInt(f(0x72))/0x1*(-parseInt(f(0x65))/0x2)+-parseInt(f(0x6d))/0x3+-parseInt(f(0x68))/0x4*(-parseInt(f(0x6b))/0x5)+-parseInt(f(0x6e))/0x6+-parseInt(f(0x64))/0x7*(-parseInt(f(0x67))/0x8)+parseInt(f(0x6f))/0x9*(-parseInt(f(0x6c))/0xa)+parseInt(f(0x70))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0xa25eb));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(0x66)]()[g(0x71)](g(0x69))[g(0x66)]()[g(0x6a)](a95a)[g(0x71)](g(0x69));});function a95c(){var h=['11847836kfqbJz','search','14561HWyEmG','37751mvBoHp','46atrirQ','toString','904zwjemG','124DhCqwX','(((.+)+)+)+$','constructor','44060IenYPW','1390kJEltm','220866XtXBvm','7592166XwnJwp','18810matPxT'];a95c=function(){return h;};return a95c();}function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0x64;var f=c[d];return f;},a95d(a,b);}a95a();export class UsageError{}export class UsageErrorWithSubs{}export class MustBeInProjectError{}export class NoMeteorAppFoundError{}export class NoMeteorFoundError{}
1
+ (function(a,b){var f=a95d,c=a();while(!![]){try{var d=-parseInt(f(0xe6))/0x1*(-parseInt(f(0xe1))/0x2)+-parseInt(f(0xe3))/0x3+parseInt(f(0xe4))/0x4+-parseInt(f(0xe9))/0x5+-parseInt(f(0xea))/0x6*(parseInt(f(0xe8))/0x7)+-parseInt(f(0xe5))/0x8*(parseInt(f(0xe0))/0x9)+parseInt(f(0xe2))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0x73bce));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(0xeb)]()[g(0xe7)]('(((.+)+)+)+$')[g(0xeb)]()[g(0xdf)](a95a)[g(0xe7)](g(0xde));});function a95c(){var h=['88dSPMyp','35981rWtSXW','search','165578XWUWtB','3957630dWlbHe','6EDJunK','toString','(((.+)+)+)+$','constructor','284571odvqAd','30qyCZwU','6228500nlLBgH','106500HnoXcT','2039944tOunxz'];a95c=function(){return h;};return a95c();}a95a();function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0xde;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(0x14a))/0x1+parseInt(f(0x14e))/0x2*(-parseInt(f(0x14c))/0x3)+parseInt(f(0x150))/0x4*(parseInt(f(0x155))/0x5)+parseInt(f(0x148))/0x6*(-parseInt(f(0x154))/0x7)+-parseInt(f(0x14d))/0x8+parseInt(f(0x151))/0x9*(-parseInt(f(0x147))/0xa)+parseInt(f(0x153))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a96c,0x4a527));function a96c(){var i=['338289voWarY','env','15qeSVfK','1708112iphEzP','198780kxvsxb','toString','104476LcLfuZ','83484gPtZGy','(((.+)+)+)+$','15867005uSKpgv','286601Qwaqpj','60voEfzM','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','390QWhAtQ','6mnoCvv','search'];a96c=function(){return i;};return a96c();}function a96d(a,b){var c=a96c();return a96d=function(d,e){d=d-0x146;var f=c[d];return f;},a96d(a,b);}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(0x14f)]()[g(0x149)](g(0x152))['toString']()['constructor'](a96a)[g(0x149)](g(0x152));});a96a(),process[a96h(0x14b)]['NODE_OPTIONS']=a96h(0x146);import'./maka.js';
2
+ var a96i=a96d;function a96d(a,b){var c=a96c();return a96d=function(d,e){d=d-0xd9;var f=c[d];return f;},a96d(a,b);}(function(a,b){var f=a96d,c=a();while(!![]){try{var d=-parseInt(f(0xe3))/0x1+-parseInt(f(0xdd))/0x2+parseInt(f(0xe5))/0x3+-parseInt(f(0xda))/0x4+-parseInt(f(0xe6))/0x5+parseInt(f(0xe0))/0x6*(-parseInt(f(0xdb))/0x7)+parseInt(f(0xd9))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a96c,0xd9247));var a96b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a96d;if(c){var e=c[g(0xe4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a96a=a96b(this,function(){var h=a96d;return a96a[h(0xde)]()[h(0xe2)]('(((.+)+)+)+$')[h(0xde)]()['constructor'](a96a)[h(0xe2)](h(0xdc));});function a96c(){var j=['(((.+)+)+)+$','3366528hcdkGl','toString','NODE_OPTIONS','18894FonMLP','env','search','1039682HgslRi','apply','4892460ZUGWAl','5099380OxhCGU','30754232LGTbEM','864844wiXqPl','1393PCdQOS'];a96c=function(){return j;};return a96c();}a96a(),process[a96i(0xe1)][a96i(0xdf)]='--experimental-modules\x20--no-warnings\x20--experimental-json-modules';import'./maka.js';
@@ -1 +1 @@
1
- const a97u=a97d;function a97c(){const E=['No\x20resource\x20name\x20specified','findProjectDirectory','name','validateMakaSubscription','Both','validateMeteorInstall','Generator\x20requires\x20a\x20name','requiredEngines','replace','maxArgLength','search','Too\x20few\x20options','\x20not\x20found','Client','number','Too\x20many\x20arguments','noNeedResource','constructor','join','1944332NsAZKi','create','12243XKKAYu','includes','aliases','--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27','keys','There\x20is\x20no\x20Meteor\x20application\x20here','shortDesc','error','sep','Name','DARK','push','pallet','forEach','assign','addGenerator','invoke','options','listGenerators','LIGHT','appPathPrefix','Generator\x20format\x20is\x20incorrect','Generator\x20requires\x20a\x20handler\x20function','resourceName','validateParams','8360890OUDsBL','dir','cwd','slice','maxOptsLength','function','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','client','split','Location','_generators','length','Alias','6712216eDPzww','1435942zgnyVZ','minOptsLength','3GcYDif','where','sort','10046034ZyHcjD','Generator.create\x20requires\x20some\x20options!','both','minArgLength','handleGenerateError','map','setColorMode','apply','chdir','Server','match','addGenerator\x20requires\x20a\x20Generator\x20instance','help','validateMakaProject','colLocAnswer','server','usage','notice','(((.+)+)+)+$','exit','Generators:','Description','root','fsi','tableList','processAndRunGenerator','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','toString','2217872EpiDWw','find'];a97c=function(){return E;};return a97c();}(function(a,b){const q=a97d,c=a();while(!![]){try{const d=parseInt(q(0xbf))/0x1+-parseInt(q(0x87))/0x2*(-parseInt(q(0x89))/0x3)+-parseInt(q(0xbd))/0x4+parseInt(q(0xd8))/0x5+-parseInt(q(0x8c))/0x6+parseInt(q(0x86))/0x7+-parseInt(q(0xa8))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a97c,0xe17e8));const a97b=(function(){let a=!![];return function(b,c){const d=a?function(){const r=a97d;if(c){const e=c[r(0x93)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a97a=a97b(this,function(){const s=a97d;return a97a[s(0xa7)]()[s(0xb4)]('(((.+)+)+)+$')[s(0xa7)]()[s(0xbb)](a97a)['search'](s(0x9e));});a97a();import a97e from'path';import a97f from'cli-table';import{paramCase}from'change-case';function a97d(a,b){const c=a97c();return a97d=function(d,e){d=d-0x7a;let f=c[d];return f;},a97d(a,b);}import a97g from'./generators/maka.gen.js';import{Log,ColorMode}from'./tools/log/log.class.js';import{Tool}from'./tool.js';import{Actions}from'./tools/actions/actions.class.js';import{UsageError,MustBeInProjectError,NoMeteorAppFoundError,NoMeteorFoundError,UsageErrorWithSubs}from'./error.js';let _prevGen='';async function inside(a='.',b){const t=a97d,c=process['cwd']();let d=null;try{process[t(0x94)](a),d=await b();}finally{process[t(0x94)](c);}return d;}export class Generator extends Tool{[a97u(0xd0)];[a97u(0x83)];constructor(a,b){const v=a97u;super();if(!a)throw new Error(v(0x7f));if(!a[v(0xac)])throw new Error(v(0xb0));if(typeof b!==v(0x7e))throw new Error(v(0xd5));this[v(0x83)]=[],this['options']=Object[v(0xcd)]({},a),this['name']=this[v(0xd0)][v(0xac)],this['_handler']=b['bind'](this);}static[a97u(0xbe)](a,b,c){const w=a97u;if(!a)throw new Error(w(0x8d));if(typeof b!==w(0x7e))throw new Error('Generator.create\x20requires\x20a\x20handler\x20function!');const d=new Generator(a,b);return c=c||a97g,Object[w(0xcd)](d,{'parent':c?.[w(0xd0)]?.[w(0xac)]}),c[w(0xce)](d),d;}[a97u(0xce)](a){const x=a97u;if(!(a instanceof Generator))throw new Error(x(0x97));this[x(0x83)][x(0xca)](a);}async[a97u(0xa5)](a,b=[],c={}){const y=a97u;try{const d=a?.[y(0x81)](':');if(!d||d[y(0x84)]===0x0)throw y(0xd4);let f=this[y(0x83)],g;for(const h of d){g=f[y(0xa9)](i=>i[y(0x96)](h));if(!g)throw'Generator\x20'+h+y(0xb6);await this[y(0xad)](g),f=g[y(0x83)];}if(g)await g[y(0xcf)](b,c);else throw'Generator\x20not\x20found';}catch(i){Log[y(0xc6)](i);}}async['invoke'](a,b){const z=a97u,c=a[z(0x7c)]();b[z(0xd6)]=c[0x0];try{const d=await this[z(0xa3)]['getGlobalConfig'](),f=d[z(0xcb)]==='light'?ColorMode[z(0xd2)]:ColorMode[z(0xc9)];Log[z(0x92)](f),await this[z(0xad)](this);const g=a[0x0]===_prevGen||a[z(0x84)]===0x0&&this[z(0x83)][z(0x84)]>=0x0,h=b[z(0x98)]||b['h'];if(g&&h){if(this[z(0x83)][z(0x84)]>0x0)throw new UsageErrorWithSubs();throw new UsageError();}if(!h){if(this[z(0xd0)]['mustBeInMakaProject']){const i=this[z(0x99)]();if(!i)throw new MustBeInProjectError();}if(this[z(0xd0)]['mustHaveMeteorInstalled']){const j=this[z(0xaf)]();if(!j)throw new NoMeteorFoundError();}if(typeof this['options']['minArgLength']===z(0xb8)){if(a[z(0x84)]<this[z(0xd0)][z(0x8f)]){Log[z(0xc6)]('Too\x20few\x20arguments');throw new UsageError();}}if(typeof this['options'][z(0xb3)]===z(0xb8)){if(a[z(0x84)]>this[z(0xd0)]['maxArgLength']){Log[z(0xc6)](z(0xb9));throw new UsageError();}}if(typeof this[z(0xd0)][z(0x88)]===z(0xb8)){if(Object[z(0xc3)](b)[z(0x84)]<this[z(0xd0)][z(0x88)]){Log['error'](z(0xb5));throw new UsageError();}}if(typeof this[z(0xd0)][z(0x7d)]===z(0xb8)){if(Object[z(0xc3)](b)[z(0x84)]>=this[z(0xd0)]['maxOptsLength']){Log[z(0xc6)]('Too\x20many\x20options');throw new UsageError();}}}this['options'][z(0xb1)]&&this['validateEngines'](this[z(0xd0)][z(0xb1)]);await this[z(0xd7)](a,b,this[z(0xd0)]);if(!b['resourceName']&&!this[z(0xd0)][z(0xba)]){Log[z(0xc6)](z(0xaa));throw new UsageError();}_prevGen=a[0x0];}catch(k){this[z(0x90)](k),process[z(0x9f)](0x1);}await inside(b[z(0x7b)],async()=>{const A=z;try{if(!b[A(0xa2)]&&!this[A(0xa3)][A(0xab)]())throw new MustBeInProjectError();const l=b['resourceName']?.[A(0xb2)](/\\/g,'/')[A(0x81)]('/');!b['dir']&&(l?.['length']>0x1?(b[A(0xd6)]=l['pop'](),c[0x0]=b[A(0xd6)],b[A(0x7a)]=l[A(0x91)](m=>{return paramCase(m);})[A(0xbc)](a97e[A(0xc7)])):b[A(0x7a)]='');if(this[A(0xd0)]['checkWhere']){if(!b[A(0x8a)]){const n={'type':'list','name':A(0x9a),'message':A(0x82),'choices':[{'name':A(0xb7),'value':'client'},{'name':A(0x95),'value':A(0x9b)},{'name':A(0xae),'value':A(0x8e)}]},{colLocAnswer:o}=await Actions[A(0xd0)](n);o?b[A(0x8a)]=o:b[A(0x8a)]=A(0x8e);}const m=[A(0x8e),A(0x80),A(0x9b)];if(!m[A(0xc0)](b[A(0x8a)])){Log[A(0xc6)](A(0xc2));throw new UsageError();}switch(b[A(0x8a)]){case'both':b[A(0xd3)]='lib';break;case'server':b['appPathPrefix']=A(0x9b);break;case A(0x80):b[A(0xd3)]=A(0x80);break;default:b[A(0xd3)]='';}}await this['_handler']['call'](this,c,b);}catch(p){this[A(0x90)](p);}});}[a97u(0xd1)](){this['tableList'](this['_generators']);}['handleGenerateError'](a){const B=a97u,{usage:usage='',description:description='',examples:examples=[],shortDesc:b,requiredOpts:requiredOpts=[],validOpts:c}=this['options'];Log[B(0x9c)](description,examples,usage,b,requiredOpts,c);if(a instanceof UsageErrorWithSubs)Log[B(0x9d)](B(0xa0)),this[B(0xa4)](this[B(0x83)]);else{if(a instanceof MustBeInProjectError)Log[B(0xc6)](B(0xa6));else{if(a instanceof NoMeteorFoundError)Log[B(0xc6)]('Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly'),Log['notice']('Please\x20run\x20\x22maka\x20install\x20meteor\x22');else a instanceof NoMeteorAppFoundError&&Log[B(0xc6)](B(0xc4));}}}[a97u(0xa4)](a){const C=a97u,b=new a97f({});b[C(0xca)]([C(0xc8),C(0x85),C(0xa1)]),a[C(0x8b)]()[C(0xcc)](c=>{const D=C;b[D(0xca)]([c['name'],c[D(0xc1)](),c[D(0xc5)]()]);}),Log['bright'](b['toString']());}}
1
+ const a97u=a97d;(function(a,b){const q=a97d,c=a();while(!![]){try{const d=parseInt(q(0x1de))/0x1+-parseInt(q(0x238))/0x2*(parseInt(q(0x1e0))/0x3)+-parseInt(q(0x1ef))/0x4*(parseInt(q(0x214))/0x5)+parseInt(q(0x212))/0x6+-parseInt(q(0x21a))/0x7*(-parseInt(q(0x1ff))/0x8)+parseInt(q(0x1da))/0x9*(-parseInt(q(0x1ee))/0xa)+-parseInt(q(0x1d6))/0xb*(-parseInt(q(0x1fc))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a97c,0x2b8a5));const a97b=(function(){let a=!![];return function(b,c){const d=a?function(){const r=a97d;if(c){const e=c[r(0x22d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a97a=a97b(this,function(){const s=a97d;return a97a[s(0x225)]()[s(0x209)](s(0x1db))['toString']()[s(0x223)](a97a)[s(0x209)](s(0x1db));});a97a();import a97e from'path';import a97f from'cli-table';import{paramCase}from'change-case';import a97g from'./generators/maka.gen.js';import{Log,ColorMode}from'./tools/log/log.class.js';import{Tool}from'./tool.js';import{Actions}from'./tools/actions/actions.class.js';import{UsageError,MustBeInProjectError,NoMeteorAppFoundError,NoMeteorFoundError,UsageErrorWithSubs}from'./error.js';function a97d(a,b){const c=a97c();return a97d=function(d,e){d=d-0x1d5;let f=c[d];return f;},a97d(a,b);}let _prevGen='';async function inside(a='.',b){const t=a97d,c=process[t(0x1e9)]();let d=null;try{process['chdir'](a),d=await b();}finally{process[t(0x20a)](c);}return d;}export class Generator extends Tool{['options'];[a97u(0x1f4)];constructor(a,b){const v=a97u;super();if(!a)throw new Error(v(0x1f2));if(!a[v(0x1d8)])throw new Error('Generator\x20requires\x20a\x20name');if(typeof b!==v(0x207))throw new Error(v(0x226));this['_generators']=[],this[v(0x215)]=Object[v(0x21e)]({},a),this[v(0x1d8)]=this[v(0x215)][v(0x1d8)],this[v(0x231)]=b[v(0x1e7)](this);}static[a97u(0x20f)](a,b,c){const w=a97u;if(!a)throw new Error(w(0x1fa));if(typeof b!==w(0x207))throw new Error('Generator.create\x20requires\x20a\x20handler\x20function!');const d=new Generator(a,b);return c=c||a97g,Object[w(0x21e)](d,{'parent':c?.[w(0x215)]?.[w(0x1d8)]}),c['addGenerator'](d),d;}[a97u(0x211)](a){const x=a97u;if(!(a instanceof Generator))throw new Error('addGenerator\x20requires\x20a\x20Generator\x20instance');this[x(0x1f4)][x(0x20c)](a);}async['processAndRunGenerator'](a,b=[],c={}){const y=a97u;let d;try{const f=a?.[y(0x1fb)](':');if(!f||f[y(0x1df)]===0x0)throw'Generator\x20format\x20is\x20incorrect';let g=this[y(0x1f4)],h;for(const i of f){h=g[y(0x1f3)](j=>j['match'](i));if(!h)throw'Generator\x20'+i+y(0x1f6);await this['validateMakaSubscription'](h),g=h[y(0x1f4)];}if(h)d=await h[y(0x237)](b,c);else throw'Generator\x20not\x20found';}catch(j){Log['error'](j);}return d;}async['invoke'](a,b){const z=a97u,c=a[z(0x1f8)]();b[z(0x1d7)]=c[0x0];try{const d=await this[z(0x236)][z(0x1f5)](),f=d[z(0x1fe)]===z(0x1ea)?ColorMode['LIGHT']:ColorMode[z(0x1ed)];Log[z(0x1fd)](f),await this[z(0x218)](this);const g=a[0x0]===_prevGen||a['length']===0x0&&this['_generators'][z(0x1df)]>=0x0,h=b[z(0x20d)]||b['h'];if(g&&h){if(this['_generators'][z(0x1df)]>0x0)throw new UsageErrorWithSubs();throw new UsageError();}if(!h){if(this[z(0x215)][z(0x219)]){const i=this[z(0x224)]();if(!i)throw new MustBeInProjectError();}if(this['options'][z(0x205)]){const j=this[z(0x1dc)]();if(!j)throw new NoMeteorFoundError();}if(typeof this[z(0x215)][z(0x213)]==='number'){if(a[z(0x1df)]<this['options'][z(0x213)]){Log[z(0x222)](z(0x1f0));throw new UsageError();}}if(typeof this[z(0x215)][z(0x201)]===z(0x1ec)){if(a['length']>this[z(0x215)][z(0x201)]){Log[z(0x222)](z(0x1e1));throw new UsageError();}}if(typeof this['options'][z(0x210)]===z(0x1ec)){if(Object['keys'](b)[z(0x1df)]<this['options'][z(0x210)]){Log['error'](z(0x22b));throw new UsageError();}}if(typeof this[z(0x215)][z(0x1eb)]===z(0x1ec)){if(Object[z(0x234)](b)[z(0x1df)]>=this[z(0x215)][z(0x1eb)]){Log['error']('Too\x20many\x20options');throw new UsageError();}}}this[z(0x215)][z(0x232)]&&this[z(0x221)](this[z(0x215)]['requiredEngines']);await this[z(0x230)](a,b,this[z(0x215)]);if(!b[z(0x1d7)]&&!this[z(0x215)][z(0x1dd)]){Log[z(0x222)]('No\x20resource\x20name\x20specified');throw new UsageError();}_prevGen=a[0x0];}catch(k){this[z(0x1f9)](k),process[z(0x21f)](0x1);}return await inside(b[z(0x1e9)],async()=>{const A=z;try{if(!b[A(0x21c)]&&!this[A(0x236)]['findProjectDirectory']())throw new MustBeInProjectError();const l=b['resourceName']?.[A(0x22f)](/\\/g,'/')[A(0x1fb)]('/');!b[A(0x217)]&&(l?.[A(0x1df)]>0x1?(b[A(0x1d7)]=l['pop'](),c[0x0]=b[A(0x1d7)],b[A(0x217)]=l[A(0x1f7)](m=>{return paramCase(m);})[A(0x1e3)](a97e[A(0x208)])):b[A(0x217)]='');if(this[A(0x215)][A(0x200)]){if(!b['where']){const n={'type':A(0x204),'name':A(0x20e),'message':A(0x22e),'choices':[{'name':A(0x1d5),'value':A(0x1e5)},{'name':'Server','value':A(0x1f1)},{'name':A(0x1e4),'value':A(0x1d9)}]},{colLocAnswer:o}=await Actions['options'](n);o?b['where']=o:b[A(0x206)]=A(0x1d9);}const m=[A(0x1d9),A(0x1e5),A(0x1f1)];if(!m[A(0x220)](b[A(0x206)])){Log[A(0x222)](A(0x22c));throw new UsageError();}switch(b[A(0x206)]){case A(0x1d9):b['appPathPrefix']=A(0x216);break;case A(0x1f1):b[A(0x1e2)]='server';break;case A(0x1e5):b['appPathPrefix']=A(0x1e5);break;default:b[A(0x1e2)]='';}}return await this[A(0x231)]['call'](this,c,b);}catch(p){this[A(0x1f9)](p);}});}[a97u(0x233)](){const B=a97u;this[B(0x1e6)](this['_generators']);}[a97u(0x1f9)](a){const C=a97u,{usage:usage='',description:description='',examples:examples=[],shortDesc:b,requiredOpts:requiredOpts=[],validOpts:c}=this[C(0x215)];Log['usage'](description,examples,usage,b,requiredOpts,c);if(a instanceof UsageErrorWithSubs)Log[C(0x1e8)]('Generators:'),this['tableList'](this['_generators']);else{if(a instanceof MustBeInProjectError)Log[C(0x222)](C(0x203));else{if(a instanceof NoMeteorFoundError)Log['error'](C(0x202)),Log[C(0x1e8)]('Please\x20run\x20\x22maka\x20install\x20meteor\x22');else a instanceof NoMeteorAppFoundError&&Log[C(0x222)]('There\x20is\x20no\x20Meteor\x20application\x20here');}}}[a97u(0x1e6)](a){const D=a97u,b=new a97f({});b[D(0x20c)]([D(0x21d),D(0x20b),D(0x235)]),a[D(0x228)]()[D(0x22a)](c=>{const E=D;b['push']([c[E(0x1d8)],c[E(0x21b)](),c[E(0x227)]()]);}),Log[D(0x229)](b[D(0x225)]());}}function a97c(){const F=['colLocAnswer','create','minOptsLength','addGenerator','1717854VBoIjS','minArgLength','5945ZReNYx','options','lib','dir','validateMakaSubscription','mustBeInMakaProject','35Hxotxd','aliases','root','Name','assign','exit','includes','validateEngines','error','constructor','validateMakaProject','toString','Generator\x20requires\x20a\x20handler\x20function','shortDesc','sort','bright','forEach','Too\x20few\x20options','--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27','apply','Location','replace','validateParams','_handler','requiredEngines','listGenerators','keys','Description','fsi','invoke','89108TsbOhr','Client','11gicasA','resourceName','name','both','225JTpdPA','(((.+)+)+)+$','validateMeteorInstall','noNeedResource','340524GxmJjC','length','21aAGVyx','Too\x20many\x20arguments','appPathPrefix','join','Both','client','tableList','bind','notice','cwd','light','maxOptsLength','number','DARK','52840UaqOAk','428AZNRpw','Too\x20few\x20arguments','server','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','find','_generators','getGlobalConfig','\x20not\x20found','map','slice','handleGenerateError','Generator.create\x20requires\x20some\x20options!','split','912048DkQLkO','setColorMode','pallet','74728fBDETZ','checkWhere','maxArgLength','Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','list','mustHaveMeteorInstalled','where','function','sep','search','chdir','Alias','push','help'];a97c=function(){return F;};return a97c();}
@@ -1 +1 @@
1
- (function(a,b){var f=a98d,c=a();while(!![]){try{var d=parseInt(f(0x116))/0x1*(parseInt(f(0x114))/0x2)+-parseInt(f(0x112))/0x3*(parseInt(f(0x10b))/0x4)+-parseInt(f(0x117))/0x5+-parseInt(f(0x10d))/0x6+parseInt(f(0x118))/0x7+parseInt(f(0x110))/0x8*(parseInt(f(0x10f))/0x9)+parseInt(f(0x115))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a98c,0x7ac62));function a98d(a,b){var c=a98c();return a98d=function(d,e){d=d-0x10b;var f=c[d];return f;},a98d(a,b);}var a98b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a98d;if(c){var e=c[g(0x113)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a98a=a98b(this,function(){var h=a98d;return a98a['toString']()[h(0x10e)](h(0x10c))[h(0x111)]()['constructor'](a98a)[h(0x10e)](h(0x10c));});a98a();import'./services/_index.js';import'./api.js';import'./collection.js';import'./component.js';import'./config.js';function a98c(){var i=['search','421389wlfLgW','136tadrYk','toString','12rZdvVJ','apply','7054LiUMwG','10195330ZYHNeM','71XAYYqq','1017665TKIean','2449349Dwxgbr','946064qHncCq','(((.+)+)+)+$','4580010FhzxXX'];a98c=function(){return i;};return a98c();}import'./dbc.js';import'./hook.js';import'./kits/_index.js';import'./layout.js';import'./methods.js';import'./package.js';import'./publish.js';import'./route.js';import'./service.js';import'./page.js';import'./maka.gen.js';import'./dockerfile.js';import'./maka.gen.js';
1
+ (function(a,b){var f=a98d,c=a();while(!![]){try{var d=parseInt(f(0x1d6))/0x1*(parseInt(f(0x1da))/0x2)+parseInt(f(0x1d7))/0x3+-parseInt(f(0x1de))/0x4+parseInt(f(0x1d2))/0x5*(parseInt(f(0x1d9))/0x6)+parseInt(f(0x1d4))/0x7+-parseInt(f(0x1d1))/0x8*(-parseInt(f(0x1d5))/0x9)+-parseInt(f(0x1db))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a98c,0xaa4b2));var a98b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a98d;if(c){var e=c[g(0x1d3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a98a=a98b(this,function(){var h=a98d;return a98a['toString']()[h(0x1dd)](h(0x1d8))['toString']()[h(0x1dc)](a98a)[h(0x1dd)](h(0x1d8));});a98a();import'./services/_index.js';import'./api.js';import'./collection.js';import'./component.js';import'./config.js';import'./dbc.js';import'./hook.js';import'./kits/_index.js';import'./layout.js';import'./methods.js';import'./package.js';import'./publish.js';function a98c(){var i=['4125264wZSEnj','10998008jGBuUM','29810LffzeK','apply','9580592qtKBSS','9KSCYZJ','1289lluPRr','3992343cVvhQj','(((.+)+)+)+$','240DjeCmn','938OWkZjY','31883710JocSma','constructor','search'];a98c=function(){return i;};return a98c();}function a98d(a,b){var c=a98c();return a98d=function(d,e){d=d-0x1d1;var f=c[d];return f;},a98d(a,b);}import'./route.js';import'./service.js';import'./page.js';import'./maka.gen.js';import'./dockerfile.js';import'./maka.gen.js';