@maka/maka-cli 4.7.5 → 4.7.7

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 (146) 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 -1
  109. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  110. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  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/tool.js +1 -1
  128. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  129. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  130. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  131. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  132. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  133. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  134. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/https/https.class.js +1 -1
  136. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  137. package/bundle/obf/src/tools/log/log.class.js +1 -1
  138. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  139. package/bundle/obf/src/tools/options/options.class.js +1 -1
  140. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  141. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  142. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  143. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  144. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  145. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  146. 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(0x8c))/0x1+-parseInt(l(0xa4))/0x2+parseInt(l(0x96))/0x3+-parseInt(l(0x9c))/0x4+-parseInt(l(0x99))/0x5+parseInt(l(0x80))/0x6*(-parseInt(l(0x8b))/0x7)+parseInt(l(0x7d))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x6dc04));const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a78d;if(c){const e=c[m(0x98)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const n=a78d;return a78a[n(0x9a)]()[n(0x8f)](n(0x85))[n(0x9a)]()[n(0x8a)](a78a)[n(0x8f)]('(((.+)+)+)+$');});function a78c(){const q=['constructor','1133524ATJXxT','347856aEokdB','maka\x20logout','cert','search','isFile','logout','failure','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','fsi','notice','2170272MFGPby','Logging\x20out\x20of\x20https://','apply','2847010fUCdco','toString','assign','472164ZaSbbY','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','env','Preflight\x20Check','getGlobalConfig','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','create','374388sURszE','withSpinner','setGlobalConfig','header','www.maka-cli.com','success','get','7205000Vwgvct','MAKA_DEV','cacert','24EiTaoz','start','post','error','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','(((.+)+)+)+$','localhost','authToken','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','exit'];a78c=function(){return q;};return a78c();}function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x77;let f=c[d];return f;},a78d(a,b);}a78a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78o(0x9f)][a78o(0x7e)]==='True'?a78o(0x86):a78o(0x7a);Command[a78o(0xa3)]({'name':a78o(0x91),'validOpts':[a78o(0x7f)],'usage':a78o(0x8d),'maxArgLength':0x2,'shortDesc':a78o(0xa2),'disableAuthCheck':!![],'examples':[a78o(0x8d)]},async function(a,b){const p=a78o,c=Log[p(0x77)]();try{let d='';b[p(0x7f)]&&(this[p(0x94)][p(0x90)](b[p(0x7f)])?(d=b[p(0x7f)],Log[p(0x95)]('Using\x20CA\x20Cert\x20'+d)):Log['error'](p(0x93)+d));const f=await this['fsi'][p(0xa1)]();if(f[p(0x8e)]){if(this[p(0x94)]['isFile'](f['cert']))d=f[p(0x8e)];else{c[p(0x92)]();throw Log[p(0x83)](p(0x9e)+d);}}Log[p(0x79)](p(0x97)+hostname);const g={'url':'https://'+hostname+'/api/v1/status'};b['cacert']&&Object[p(0x9b)](g,{'cert':d});c[p(0x81)](p(0xa0));const {statusCode:h}=await HTTPS[p(0x7c)](g);if(h===0x198){c[p(0x92)]();throw p(0x9d);}c[p(0x7b)]();if(h!==0xc8){c[p(0x92)]();throw p(0x84);}if(!f?.['token']?.[p(0x87)])throw Log[p(0x83)](p(0x88));c['start']('Logging\x20out');const i={'hostname':hostname,'path':'/api/v1/logoutAll','data':{},'headers':{'x-auth-token':f['token'][p(0x87)]}};b[p(0x7f)]&&Object[p(0x9b)](i,{'cert':d});const {statusCode:j}=await HTTPS[p(0x82)](i);if(j===0x198){c[p(0x92)]('\x0a');throw p(0x9d);}this['fsi'][p(0x78)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[p(0x7b)]();}catch(k){k&&console['error'](k),process[p(0x89)](0x0);}});
1
+ const a78n=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=-parseInt(l(0x9a))/0x1*(parseInt(l(0xa2))/0x2)+-parseInt(l(0xaa))/0x3+-parseInt(l(0x98))/0x4+-parseInt(l(0x9c))/0x5*(-parseInt(l(0xac))/0x6)+parseInt(l(0xb3))/0x7*(parseInt(l(0x9d))/0x8)+parseInt(l(0xad))/0x9+parseInt(l(0xb9))/0xa*(parseInt(l(0xa4))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x3da07));function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x98;let f=c[d];return f;},a78d(a,b);}const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const m=a78d;return a78a[m(0xa6)]()['search'](m(0xb0))['toString']()['constructor'](a78a)[m(0xb7)](m(0xb0));});a78a();function a78c(){const p=['2121327TvLODj','authToken','assign','(((.+)+)+)+$','fsi','setGlobalConfig','301217DinlGo','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','env','/api/v1/status','search','cacert','260BhuRHE','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','/api/v1/logoutAll','getGlobalConfig','Using\x20CA\x20Cert\x20','https://','success','withSpinner','Logging\x20out\x20of\x20https://','logout','start','MAKA_DEV','Preflight\x20Check','1003600OkJYSc','www.maka-cli.com','25fQVaOS','True','5705MMaahD','40uiIpaZ','maka\x20logout','notice','header','isFile','17454bdIzIY','create','106249MDkeab','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','toString','error','failure','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','95517phpbzL','get','270EBMpnX'];a78c=function(){return p;};return a78c();}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78n(0xb5)][a78n(0xc4)]===a78n(0x9b)?'localhost':a78n(0x99);Command[a78n(0xa3)]({'name':a78n(0xc2),'validOpts':[a78n(0xb8)],'usage':'maka\x20logout','maxArgLength':0x2,'shortDesc':'Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','disableAuthCheck':!![],'examples':[a78n(0x9e)]},async function(a,b){const o=a78n,c=Log[o(0xc0)]();try{let d='';b[o(0xb8)]&&(this[o(0xb1)][o(0xa1)](b[o(0xb8)])?(d=b[o(0xb8)],Log[o(0x9f)](o(0xbd)+d)):Log[o(0xa7)]('CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+d));const f=await this[o(0xb1)][o(0xbc)]();if(f['cert']){if(this[o(0xb1)][o(0xa1)](f['cert']))d=f['cert'];else{c[o(0xa8)]();throw Log[o(0xa7)](o(0xb4)+d);}}Log[o(0xa0)](o(0xc1)+hostname);const g={'url':o(0xbe)+hostname+o(0xb6)};b[o(0xb8)]&&Object['assign'](g,{'cert':d});c['start'](o(0xc5));const {statusCode:h}=await HTTPS[o(0xab)](g);if(h===0x198){c[o(0xa8)]();throw o(0xa5);}c[o(0xbf)]();if(h!==0xc8){c['failure']();throw o(0xba);}if(!f?.['token']?.['authToken'])throw Log[o(0xa7)](o(0xa9));c[o(0xc3)]('Logging\x20out');const i={'hostname':hostname,'path':o(0xbb),'data':{},'headers':{'x-auth-token':f['token'][o(0xae)]}};b[o(0xb8)]&&Object[o(0xaf)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c['failure']('\x0a');throw o(0xa5);}this[o(0xb1)][o(0xb2)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c[o(0xbf)]();}catch(k){k&&console['error'](k),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a79m=a79d;(function(a,b){const j=a79d,c=a();while(!![]){try{const d=-parseInt(j(0x170))/0x1+parseInt(j(0x15e))/0x2*(-parseInt(j(0x156))/0x3)+parseInt(j(0x158))/0x4+parseInt(j(0x15a))/0x5+parseInt(j(0x157))/0x6*(-parseInt(j(0x16e))/0x7)+parseInt(j(0x164))/0x8*(parseInt(j(0x168))/0x9)+-parseInt(j(0x162))/0xa*(-parseInt(j(0x16b))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x41dd1));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a79d;if(c){const e=c[k(0x173)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const l=a79d;return a79a[l(0x163)]()[l(0x167)](l(0x155))[l(0x163)]()[l(0x15d)](a79a)[l(0x167)](l(0x155));});a79a();import a79e from'fs';import a79f from'path';function a79c(){const o=['(((.+)+)+)+$','3LkgnbQ','40998quZkrU','806496YpeCzL','View\x20the\x20PM2\x20logs','338720xrNFNh','maka\x20logs\x20--env\x20dev','assign','constructor','575612YdTsqa','maka\x20logs\x20--env\x20staging','fsi','readFileSync','963950fzVdlE','toString','128FZEqyG','logs','parse','search','187713SMfvoK','create','pm2\x20logs','22PcSpNJ','error','maka\x20logs','112CtBBoN','maka\x20l\x20-e\x20p','128959sSTMrn','env','verbose','apply','sshSync'];a79c=function(){return o;};return a79c();}function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x155;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(0x169)]({'name':a79m(0x165),'aliases':['l','log'],'usage':a79m(0x16d),'requiredOpts':[a79m(0x171)],'mustBeInMakaProject':!![],'validOpts':[a79m(0x172)],'shortDesc':a79m(0x159),'isPro':!![],'examples':[a79m(0x15b),a79m(0x15f),a79m(0x16f)]},function(a,b){const n=a79m;try{const c=n(0x16a),d=this[n(0x160)]['getAppConfigPath'](b[n(0x171)]),f=a79f['join'](d,'ssh.json'),g=a79e[n(0x161)](f),h=JSON[n(0x166)](g[n(0x163)]());Object[n(0x15c)](h,{'env':d}),SSH[n(0x174)](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log[n(0x16c)](i);}});
1
+ const a79l=a79d;(function(a,b){const j=a79d,c=a();while(!![]){try{const d=-parseInt(j(0x153))/0x1*(parseInt(j(0x162))/0x2)+parseInt(j(0x15b))/0x3*(-parseInt(j(0x150))/0x4)+parseInt(j(0x14b))/0x5*(-parseInt(j(0x158))/0x6)+-parseInt(j(0x156))/0x7+parseInt(j(0x168))/0x8+-parseInt(j(0x161))/0x9*(parseInt(j(0x15e))/0xa)+parseInt(j(0x159))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0xeedf7));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const k=a79d;return a79a['toString']()['search'](k(0x14c))[k(0x163)]()[k(0x15a)](a79a)['search'](k(0x14c));});a79a();import a79e from'fs';import a79f from'path';import{Command}from'../command.js';function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x14b;let f=c[d];return f;},a79d(a,b);}import{SSH}from'../tools/ssh/ssh.class.js';function a79c(){const n=['maka\x20logs\x20--env\x20staging','View\x20the\x20PM2\x20logs','50roVSYb','parse','pm2\x20logs','1576287SmyKap','2uQftip','toString','assign','readFileSync','ssh.json','logs','2757536baWloX','82795QxSZEj','(((.+)+)+)+$','env','getAppConfigPath','log','461980FYUXXB','maka\x20l\x20-e\x20p','fsi','99565PCvNlN','sshSync','maka\x20logs','2537654KzzYYq','join','696xSnVMg','47897927PKAAuT','constructor','12TeyahN'];a79c=function(){return n;};return a79c();}import{Log}from'../tools/log/log.class.js';Command['create']({'name':a79l(0x167),'aliases':['l',a79l(0x14f)],'usage':a79l(0x155),'requiredOpts':[a79l(0x14d)],'mustBeInMakaProject':!![],'validOpts':['verbose'],'shortDesc':a79l(0x15d),'isPro':!![],'examples':['maka\x20logs\x20--env\x20dev',a79l(0x15c),a79l(0x151)]},function(a,b){const m=a79l;try{const c=m(0x160),d=this[m(0x152)][m(0x14e)](b[m(0x14d)]),f=a79f[m(0x157)](d,m(0x166)),g=a79e[m(0x165)](f),h=JSON[m(0x15f)](g[m(0x163)]());Object[m(0x164)](h,{'env':d}),SSH[m(0x154)](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log['error'](i);}});
@@ -1 +1 @@
1
- function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0xf6;let f=c[d];return f;},a80d(a,b);}const a80i=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=parseInt(f(0x105))/0x1+parseInt(f(0xfb))/0x2*(parseInt(f(0xf7))/0x3)+parseInt(f(0x102))/0x4+-parseInt(f(0x10a))/0x5+-parseInt(f(0x106))/0x6+parseInt(f(0x104))/0x7*(-parseInt(f(0xf6))/0x8)+parseInt(f(0x100))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xefffb));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a80d;if(c){const e=c[g(0x101)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const h=a80d;return a80a['toString']()[h(0xff)](h(0xf9))[h(0xfc)]()[h(0x108)](a80a)['search'](h(0xf9));});a80a();import{Command}from'../command.js';function a80c(){const k=['maka\x20install\x20meteor','3582971gApjoO','1300396rVhiiG','5029284HQCQXF','exit','constructor','maka\x20<command>\x20[<args>]\x20[<opts>]','3445130lmnZSI','16KrUGqA','19971ZRrgvZ','\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','(((.+)+)+)+$','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','44XpXmzx','toString','maka\x20create\x20Todo','maka\x20--help','search','16302807kJpiGW','apply','1102832Vqilfg'];a80c=function(){return k;};return a80c();}const Maka=new Command({'name':'maka','minArgLength':0x1,'shortDesc':a80i(0xfa),'validOpts':[],'usage':a80i(0x109),'disableAuthCheck':!![],'examples':[a80i(0xfe),a80i(0x103),a80i(0xfd),'maka\x20run'],'description':a80i(0xf8)},async function(a,b){const j=a80i;try{const c=a[0x0];a['splice'](0x0,0x1),this['processAndRunCommand'](c,a,b);}catch(d){process[j(0x107)](0x1);}});export default Maka;
1
+ const a80h=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=parseInt(f(0xf7))/0x1+parseInt(f(0xf2))/0x2+parseInt(f(0xf8))/0x3+parseInt(f(0xf6))/0x4+-parseInt(f(0xf1))/0x5+-parseInt(f(0xed))/0x6*(-parseInt(f(0xef))/0x7)+-parseInt(f(0xf9))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xb3928));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(0xee)]()['search'](g(0xf5))['toString']()[g(0xfb)](a80a)[g(0xfa)](g(0xf5));});a80a();function a80c(){const j=['constructor','\x0a\x0a\x20\x20Scaffold\x20Web\x20Applications\x20with\x20Meteor\x20and\x20Maka-CLI\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.-:\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20:-.\x20\x20\x20\x20\x20:--\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::\x20\x20::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::::::\x20.:::::::\x20..\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20..:.....\x20.::..::.\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20.::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::::::\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20\x20::::::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::..-::.\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::....\x20\x20::..---:..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20.\x20.:::::::\x20\x20::..::.\x20..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20\x20:.\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:--\x20\x20\x20\x20\x20\x20\x20\x20\x20.--.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-:\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20:\x0a.:..::...::.\x20\x20\x20....:\x20\x20\x20.:\x20\x20\x20::\x20\x20....:.\x20\x20\x20\x20\x20\x20\x20\x20.::::\x20\x20.:\x20\x20::\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20\x20....:-\x20\x20.-..:.\x20\x20\x20....:-\x20\x20...\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20.:\x20\x20\x20:-\x20\x20.-\x20\x20.:\x20\x20.:\x20\x20\x20:-\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a.:.\x20\x20\x20:.\x20\x20\x20.:\x20\x20....\x20:.\x20.:.\x20\x20..\x20\x20....\x20:.\x20\x20\x20\x20\x20\x20\x20.....\x20\x20.:.\x20.:.\x0a\x0a\x20\x20','maka\x20install\x20meteor','processAndRunCommand','splice','maka\x20<command>\x20[<args>]\x20[<opts>]','9312ssYSVm','toString','4613PwNBKa','maka\x20create\x20Todo','6302320txkhTU','1957872nVVRGM','maka\x20run','maka\x20--help','(((.+)+)+)+$','3497752ZPyGnA','1452VJAGgc','4221033eFgRRq','18308904WqGqGb','search'];a80c=function(){return j;};return a80c();}function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0xe9;let f=c[d];return f;},a80d(a,b);}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':a80h(0xec),'disableAuthCheck':!![],'examples':[a80h(0xf4),a80h(0xe9),a80h(0xf0),a80h(0xf3)],'description':a80h(0xfc)},async function(a,b){const i=a80h;try{const c=a[0x0];a[i(0xeb)](0x0,0x1),this[i(0xea)](c,a,b);}catch(d){process['exit'](0x1);}});export default Maka;
@@ -1 +1 @@
1
- function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x12b;var f=c[d];return f;},a81d(a,b);}var a81h=a81d;function a81c(){var j=['constructor','log','17940jeEueC','1668882ufILMd','769872upkaiT','2487152MnXFhE','557217HoXGKZ','font-family:\x20monospace','create','7933gMQQfH','72ghjXwH','murder','7FVHgTO','exit','(((.+)+)+)+$','861465RvSPEm','toString','search','Murrrrderrrrr'];a81c=function(){return j;};return a81c();}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=-parseInt(f(0x12d))/0x1*(-parseInt(f(0x12e))/0x2)+-parseInt(f(0x13b))/0x3+parseInt(f(0x139))/0x4+parseInt(f(0x133))/0x5+-parseInt(f(0x13a))/0x6*(-parseInt(f(0x130))/0x7)+-parseInt(f(0x13c))/0x8+parseInt(f(0x13d))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x3959c));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var g=a81d;return a81a[g(0x134)]()['search'](g(0x132))[g(0x134)]()[g(0x137)](a81a)[g(0x135)](g(0x132));});a81a();import{Command}from'../command.js';Command[a81h(0x12c)]({'name':a81h(0x12f),'usage':'maka\x20murder','maxArgLength':0x1,'shortDesc':a81h(0x136),'validOpts':[]},async function(){var i=a81h;try{console[i(0x138)]('%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',i(0x12b));}catch(a){console['error'](a),process[i(0x131)](0x0);}});
1
+ var a81i=a81d;function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x1c1;var f=c[d];return f;},a81d(a,b);}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=-parseInt(f(0x1c1))/0x1+-parseInt(f(0x1d0))/0x2*(-parseInt(f(0x1ca))/0x3)+-parseInt(f(0x1cc))/0x4*(-parseInt(f(0x1c6))/0x5)+-parseInt(f(0x1cf))/0x6+-parseInt(f(0x1cb))/0x7*(parseInt(f(0x1d2))/0x8)+parseInt(f(0x1cd))/0x9*(-parseInt(f(0x1ce))/0xa)+parseInt(f(0x1c8))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0xa7ce7));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x1c5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x1c4)]()[h(0x1c9)]('(((.+)+)+)+$')['toString']()['constructor'](a81a)[h(0x1c9)]('(((.+)+)+)+$');});function a81c(){var k=['apply','5olMAUA','maka\x20murder','32614230DbskkM','search','1354602WLIQbu','5054TsqmBp','1674796OlIMpP','738KDyyTi','93880WhsEnG','6125538orOFQI','2lUrZHA','log','12584YTVxEj','create','221383OHhjxa','exit','%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','toString'];a81c=function(){return k;};return a81c();}a81a();import{Command}from'../command.js';Command[a81i(0x1d3)]({'name':'murder','usage':a81i(0x1c7),'maxArgLength':0x1,'shortDesc':'Murrrrderrrrr','validOpts':[]},async function(){var j=a81i;try{console[j(0x1d1)](j(0x1c3),'font-family:\x20monospace');}catch(a){console['error'](a),process[j(0x1c2)](0x0);}});
@@ -1 +1 @@
1
- const a82p=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=-parseInt(m(0x10f))/0x1*(parseInt(m(0x118))/0x2)+parseInt(m(0x122))/0x3*(parseInt(m(0x119))/0x4)+-parseInt(m(0x108))/0x5+-parseInt(m(0x10c))/0x6+parseInt(m(0x10e))/0x7+parseInt(m(0x131))/0x8*(-parseInt(m(0x112))/0x9)+parseInt(m(0x111))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0xa5ffa));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a82d;if(c){const e=c[n(0x11f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const o=a82d;return a82a['toString']()[o(0x125)](o(0x12b))[o(0x130)]()[o(0x110)](a82a)['search'](o(0x12b));});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';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x108;let f=c[d];return f;},a82d(a,b);}import{UsageError}from'../error.js';function a82c(){const r=['1327052PNzcxj','.key','listen','genSSC','maka\x20proxy\x20--target-host\x20http://192.168.1.20','mkKeysDir','apply','join','isFile','6nOFciP','readFileSync','listenPort','search','appName','proxy','utf8','sslconfig','localhost','(((.+)+)+)+$','error','processAndRunGenerator','getMakaProjectConfig','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','toString','8dcZxVV','4015005NZXFcx','targetHost','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','.crt','4256604eKuoum','genCSR','7832895axijoR','1350296qKQZLs','constructor','25250410kkopqz','6884019rSJCaf','targetPort','fsi','bright','\x20to\x20','=>\x20SSL\x20Proxy\x20forwarding\x20','2nouowG'];a82c=function(){return r;};return a82c();}import{SSL}from'../tools/ssl/ssl.class.js';import a82h from'../generators/maka.gen.js';Command['create']({'name':a82p(0x127),'usage':'maka\x20proxy','mustBeInMakaProject':!![],'validOpts':['help',a82p(0x113),a82p(0x124),a82p(0x109)],'maxArgLength':0x1,'shortDesc':a82p(0x12f),'description':'\x0a\x20\x20If\x20you\x27re\x20running\x20your\x20Meteor\x20service,\x20and\x20need\x20to\x20stand\x20up\x20an\x20SSL\x0a\x20\x20Proxy,\x20this\x20command\x20will\x20automatically\x20create\x20a\x20key\x20pair\x20for\x20use\x20in\x20an\x20HTTPS\x0a\x20\x20proxy.\x0a\x0a\x20\x20For\x20example,\x20you\x27re\x20running\x20http://localhost:3000\x20with\x20\x22maka\x20run\x22\x20then\x20open\x20a\x20new\x0a\x20\x20terminal\x20and\x20run\x20\x22maka\x20proxy\x22\x20to\x20standup\x20https://localhost:3443.\x0a\x20\x20Then\x20open\x20your\x20browser\x20to\x20that\x20URL\x20(you\x20may\x20need\x20to\x20trust\x20the\x20certificates\x0a\x20\x20because\x20they\x20are\x20self-signed)\x20and\x20you\x27ll\x20have\x20an\x20SSL\x20connection\x20to\x20your\x0a\x20\x20http://localhost:3000.\x0a\x0a\x20\x20To\x20avoid\x20possibly\x20overwriting\x20PKI\x20files\x20in\x20higher\x20environments,\x20\x22maka\x20proxy\x22\x0a\x20\x20will\x20try\x20to\x20only\x20generate\x20/\x20store\x20PKI\x20keys\x20in\x20the\x20development\x20environment.\x0a\x20\x20','examples':['maka\x20proxy',a82p(0x10a),a82p(0x11d)]},async function(a,b){const q=a82p,c=this[q(0x114)][q(0x12e)](),d='development',e=this[q(0x114)]['getAppConfigPath'](d),f=this[q(0x114)][q(0x11e)]({'configPath':e}),g=b['targetPort']?Number(b['targetPort']):0xbb8,h=b[q(0x124)]?Number(b[q(0x124)]):0xd73,i=b['targetHost']?b[q(0x109)]:q(0x12a),j=a82f[q(0x120)](f,c[q(0x126)]+q(0x11a)),k=a82f[q(0x120)](f,c['appName']+q(0x10b));(!this[q(0x114)][q(0x121)](j)||!this[q(0x114)][q(0x121)](k))&&(await a82h[q(0x12d)](q(0x129),[],{'env':d}),SSL[q(0x10d)]({'keyName':c['appName']+'.key','csrName':c['appName']+'.csr','cwd':f}),SSL[q(0x11c)]({'keyName':c[q(0x126)]+'.key','crtName':c['appName']+'.crt','cwd':f}));if(g===h){Log[q(0x12c)]('Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.');throw new UsageError();}const l={'ssl':{'key':a82e['readFileSync'](j,q(0x128)),'cert':a82e[q(0x123)](k,'utf8')},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g['createProxyServer'](l)[q(0x11b)](Number(h)),Log[q(0x115)](q(0x117)+h+q(0x116)+g);});
1
+ const a82o=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=parseInt(m(0x16a))/0x1+-parseInt(m(0x15e))/0x2+parseInt(m(0x14c))/0x3*(parseInt(m(0x16c))/0x4)+parseInt(m(0x158))/0x5*(parseInt(m(0x16f))/0x6)+parseInt(m(0x157))/0x7+parseInt(m(0x162))/0x8+parseInt(m(0x14d))/0x9*(-parseInt(m(0x165))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x7af36));function a82c(){const q=['join','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','1249171hFNAsG','4567775kUPiNc','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','bright','toString','development','453246EUKkUa','utf8','.crt','.key','2131256jgrhTs','targetPort','\x20to\x20','20jByCHm','createProxyServer','\x0a\x20\x20If\x20you\x27re\x20running\x20your\x20Meteor\x20service,\x20and\x20need\x20to\x20stand\x20up\x20an\x20SSL\x0a\x20\x20Proxy,\x20this\x20command\x20will\x20automatically\x20create\x20a\x20key\x20pair\x20for\x20use\x20in\x20an\x20HTTPS\x0a\x20\x20proxy.\x0a\x0a\x20\x20For\x20example,\x20you\x27re\x20running\x20http://localhost:3000\x20with\x20\x22maka\x20run\x22\x20then\x20open\x20a\x20new\x0a\x20\x20terminal\x20and\x20run\x20\x22maka\x20proxy\x22\x20to\x20standup\x20https://localhost:3443.\x0a\x20\x20Then\x20open\x20your\x20browser\x20to\x20that\x20URL\x20(you\x20may\x20need\x20to\x20trust\x20the\x20certificates\x0a\x20\x20because\x20they\x20are\x20self-signed)\x20and\x20you\x27ll\x20have\x20an\x20SSL\x20connection\x20to\x20your\x0a\x20\x20http://localhost:3000.\x0a\x0a\x20\x20To\x20avoid\x20possibly\x20overwriting\x20PKI\x20files\x20in\x20higher\x20environments,\x20\x22maka\x20proxy\x22\x0a\x20\x20will\x20try\x20to\x20only\x20generate\x20/\x20store\x20PKI\x20keys\x20in\x20the\x20development\x20environment.\x0a\x20\x20','targetHost','processAndRunGenerator','50551piZCPy','listen','249820VzkdeH','getAppConfigPath','proxy','6GKcxYJ','=>\x20SSL\x20Proxy\x20forwarding\x20','fsi','error','help','appName','search','.csr','maka\x20proxy\x20--target-host\x20http://192.168.1.20','9zqAdPc','3897459bBXcUd','(((.+)+)+)+$','create','readFileSync','maka\x20proxy','genCSR','mkKeysDir','listenPort'];a82c=function(){return q;};return a82c();}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(0x15c)]()[n(0x149)](n(0x14e))[n(0x15c)]()['constructor'](a82a)['search'](n(0x14e));});a82a();import a82e from'fs';import a82f from'path';import a82g from'http-proxy';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';import{SSL}from'../tools/ssl/ssl.class.js';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x148;let f=c[d];return f;},a82d(a,b);}import a82h from'../generators/maka.gen.js';Command[a82o(0x14f)]({'name':a82o(0x16e),'usage':'maka\x20proxy','mustBeInMakaProject':!![],'validOpts':[a82o(0x173),a82o(0x163),a82o(0x154),a82o(0x168)],'maxArgLength':0x1,'shortDesc':a82o(0x15a),'description':a82o(0x167),'examples':[a82o(0x151),a82o(0x159),a82o(0x14b)]},async function(a,b){const p=a82o,c=this[p(0x171)]['getMakaProjectConfig'](),d=p(0x15d),e=this[p(0x171)][p(0x16d)](d),f=this[p(0x171)][p(0x153)]({'configPath':e}),g=b[p(0x163)]?Number(b[p(0x163)]):0xbb8,h=b[p(0x154)]?Number(b[p(0x154)]):0xd73,i=b[p(0x168)]?b[p(0x168)]:'localhost',j=a82f[p(0x155)](f,c[p(0x148)]+p(0x161)),k=a82f['join'](f,c[p(0x148)]+'.crt');(!this[p(0x171)]['isFile'](j)||!this[p(0x171)]['isFile'](k))&&(await a82h[p(0x169)]('sslconfig',[],{'env':d}),SSL[p(0x152)]({'keyName':c[p(0x148)]+p(0x161),'csrName':c[p(0x148)]+p(0x14a),'cwd':f}),SSL['genSSC']({'keyName':c[p(0x148)]+p(0x161),'crtName':c[p(0x148)]+p(0x160),'cwd':f}));if(g===h){Log[p(0x172)](p(0x156));throw new UsageError();}const l={'ssl':{'key':a82e[p(0x150)](j,p(0x15f)),'cert':a82e[p(0x150)](k,p(0x15f))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[p(0x166)](l)[p(0x16b)](Number(h)),Log[p(0x15b)](p(0x170)+h+p(0x164)+g);});
@@ -1 +1 @@
1
- function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0xc4;let f=c[d];return f;},a83d(a,b);}const a83p=a83d;function a83c(){const r=['1109936yOWxZA','uname\x20-a','ssh','1086021jjtFTO','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','392841WuYBbl','exit','readFileSync','\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','~/pm2.config.js','sshSync','Remote\x20host\x20connection\x20successful','existsSync','reconfig','error','(((.+)+)+)+$','~/ses.json','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','ses.json','join','scp','settings.json','maka\x20reconfig\x20--env\x20prod','toString','pm2\x20delete\x20all','env','parse','Reconfigure\x20your\x20deployed\x20applications','2492160yEDeak','constructor','2667810mlYJaH','assign','13617751sZlCMs','success','ping','648858yElENA','search','notice'];a83c=function(){return r;};return a83c();}(function(a,b){const n=a83d,c=a();while(!![]){try{const d=parseInt(n(0xd4))/0x1+parseInt(n(0xce))/0x2+-parseInt(n(0xd6))/0x3+parseInt(n(0xd1))/0x4+parseInt(n(0xc7))/0x5+parseInt(n(0xc9))/0x6+-parseInt(n(0xcb))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x876a5));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const o=a83d;return a83a[o(0xe8)]()[o(0xcf)](o(0xe0))[o(0xe8)]()[o(0xc8)](a83a)[o(0xcf)]('(((.+)+)+)+$');});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':a83p(0xde),'validOpts':[''],'requiredOpts':['env'],'mustBeInMakaProject':!![],'usage':'maka\x20reconfig','isPro':!![],'shortDesc':a83p(0xc6),'description':a83p(0xd9),'examples':[a83p(0xe7)]},async function(a,b){const q=a83p;try{const c=this['fsi']['getAppConfigPath'](b[q(0xc4)]),d=a83f[q(0xe4)](c,'ssh.json'),f=a83e[q(0xd8)](d)['toString'](),g=JSON[q(0xc5)](f);Object[q(0xca)](g,{'env':c}),Log[q(0xd0)]('Checking\x20remote\x20host\x20availability');const h=SSH[q(0xcd)](q(0xd2),g);if(!h)throw q(0xe2);if(h)Log[q(0xcc)](q(0xdc));const i=a83f[q(0xe4)](c,'_keys',q(0xe3));if(a83e[q(0xdd)](i)){const l={'source':i,'dest':q(0xe1),'verbose':!![]};SSH[q(0xe5)](l,{...g});}const j=a83f[q(0xe4)](c,'pm2.config.js');SSH['scp']({'source':j,'dest':q(0xda),'verbose':!![]},{...g});const k=a83f[q(0xe4)](c,q(0xe6));SSH[q(0xe5)]({'source':k,'dest':'~/settings.json','verbose':!![]},{...g}),SSH[q(0xdb)](q(0xe9),g),await SSH[q(0xd3)](q(0xd5),{...g},{'verbose':!![]});}catch(m){console[q(0xdf)](m),process[q(0xd7)](0x0);}});
1
+ const a83p=a83d;(function(a,b){const n=a83d,c=a();while(!![]){try{const d=parseInt(n(0x152))/0x1*(-parseInt(n(0x15c))/0x2)+parseInt(n(0x148))/0x3*(-parseInt(n(0x143))/0x4)+-parseInt(n(0x13c))/0x5+parseInt(n(0x136))/0x6+parseInt(n(0x145))/0x7*(parseInt(n(0x159))/0x8)+-parseInt(n(0x150))/0x9+parseInt(n(0x134))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a83c,0x4ac88));const a83b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a83a=a83b(this,function(){const o=a83d;return a83a[o(0x133)]()[o(0x146)](o(0x13b))[o(0x133)]()[o(0x139)](a83a)['search'](o(0x13b));});a83a();import a83e from'fs';function a83c(){const r=['784444seQqxo','~/settings.json','7yPjuMx','search','_keys','3tQLROU','sshSync','notice','scp','pm2.config.js','Remote\x20host\x20connection\x20successful','fsi','join','2612124Xchdgg','parse','778MbkCfO','ssh.json','create','existsSync','getAppConfigPath','success','env','3817496VauNBx','pm2\x20delete\x20all','ssh','1402jnfTSy','toString','6832170PRLeHU','error','1883898wIyTUr','assign','maka\x20reconfig\x20--env\x20prod','constructor','Checking\x20remote\x20host\x20availability','(((.+)+)+)+$','681750tMhhPD','\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','reconfig','ping','exit','maka\x20reconfig','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.'];a83c=function(){return r;};return a83c();}import a83f from'path';import{Command}from'../command.js';function a83d(a,b){const c=a83c();return a83d=function(d,e){d=d-0x133;let f=c[d];return f;},a83d(a,b);}import{Log}from'../tools/log/log.class.js';import{SSH}from'../tools/ssh/ssh.class.js';Command[a83p(0x154)]({'name':a83p(0x13e),'validOpts':[''],'requiredOpts':['env'],'mustBeInMakaProject':!![],'usage':a83p(0x141),'isPro':!![],'shortDesc':'Reconfigure\x20your\x20deployed\x20applications','description':a83p(0x13d),'examples':[a83p(0x138)]},async function(a,b){const q=a83p;try{const c=this[q(0x14e)][q(0x156)](b[q(0x158)]),d=a83f[q(0x14f)](c,q(0x153)),f=a83e['readFileSync'](d)[q(0x133)](),g=JSON[q(0x151)](f);Object[q(0x137)](g,{'env':c}),Log[q(0x14a)](q(0x13a));const h=SSH[q(0x13f)]('uname\x20-a',g);if(!h)throw q(0x142);if(h)Log[q(0x157)](q(0x14d));const i=a83f[q(0x14f)](c,q(0x147),'ses.json');if(a83e[q(0x155)](i)){const l={'source':i,'dest':'~/ses.json','verbose':!![]};SSH[q(0x14b)](l,{...g});}const j=a83f[q(0x14f)](c,q(0x14c));SSH['scp']({'source':j,'dest':'~/pm2.config.js','verbose':!![]},{...g});const k=a83f['join'](c,'settings.json');SSH[q(0x14b)]({'source':k,'dest':q(0x144),'verbose':!![]},{...g}),SSH[q(0x149)](q(0x15a),g),await SSH[q(0x15b)]('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[q(0x135)](m),process[q(0x140)](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a84d,c=a();while(!![]){try{var d=-parseInt(f(0xd5))/0x1*(-parseInt(f(0xda))/0x2)+parseInt(f(0xde))/0x3*(parseInt(f(0xd1))/0x4)+parseInt(f(0xd6))/0x5+parseInt(f(0xd7))/0x6+parseInt(f(0xd9))/0x7+-parseInt(f(0xd3))/0x8*(parseInt(f(0xdd))/0x9)+-parseInt(f(0xd2))/0xa*(parseInt(f(0xdb))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0xb88af));var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0xd4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a[h(0xd8)]()['search'](h(0xe0))[h(0xd8)]()[h(0xdf)](a84a)[h(0xdc)](h(0xe0));});a84a();function a84c(){var i=['7276010EnrPiW','14864TwkczD','77WTnuPL','search','755523XpEDbC','1707nwCBgk','constructor','(((.+)+)+)+$','8940GFYLmC','3267910tKdaYa','64QzMwNB','apply','5gBJCmo','6573525PDCbuP','311940aDFZdn','toString'];a84c=function(){return i;};return a84c();}function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0xd1;var f=c[d];return f;},a84d(a,b);}import'./run.command.js';import'./docker.sub.cmd.js';
1
+ (function(a,b){var f=a84d,c=a();while(!![]){try{var d=parseInt(f(0x7a))/0x1*(parseInt(f(0x72))/0x2)+parseInt(f(0x79))/0x3+-parseInt(f(0x77))/0x4*(parseInt(f(0x73))/0x5)+-parseInt(f(0x7c))/0x6+parseInt(f(0x78))/0x7*(parseInt(f(0x75))/0x8)+parseInt(f(0x7b))/0x9+parseInt(f(0x70))/0xa*(-parseInt(f(0x71))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a84c,0x74884));var a84b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a84d;if(c){var e=c[g(0x6f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a84a=a84b(this,function(){var h=a84d;return a84a['toString']()['search'](h(0x7d))[h(0x7e)]()[h(0x76)](a84a)[h(0x74)](h(0x7d));});a84a();function a84c(){var i=['constructor','311276glXdPG','65506NENbbd','2789205KajZzY','21035CZqdRl','5950476cBYxeH','587688jpOoOk','(((.+)+)+)+$','toString','apply','2770FGgSBd','74569jMAKNI','38hlVyoq','25awmuUb','search','728zqBgGr'];a84c=function(){return i;};return a84c();}import'./run.command.js';function a84d(a,b){var c=a84c();return a84d=function(d,e){d=d-0x6f;var f=c[d];return f;},a84d(a,b);}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(0x193))/0x1*(-parseInt(i(0x1a2))/0x2)+-parseInt(i(0x189))/0x3+parseInt(i(0x188))/0x4*(parseInt(i(0x18e))/0x5)+parseInt(i(0x18f))/0x6+parseInt(i(0x192))/0x7+parseInt(i(0x197))/0x8+-parseInt(i(0x1a0))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0xb0ff9));const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a85d;if(c){const e=c[j(0x19e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const k=a85d;return a85a['toString']()[k(0x195)](k(0x1a1))[k(0x19a)]()[k(0x19d)](a85a)[k(0x195)](k(0x1a1));});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-0x185;let f=c[d];return f;},a85d(a,b);}import a85g from'fs';import{Log}from'../../tools/log/log.class.js';import{Command}from'../../command.js';import{paramCase}from'change-case';function a85c(){const n=['\x20up\x20--remove-orphans','\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','2156301OOxaLe','245WcjVpC','fsi','search','existsSync','9590824cQzCcP','config/docker-compose.yaml','getAppConfigPath','toString','templateContent','join','constructor','apply','appName','6419196kxurEp','(((.+)+)+)+$','952gYtFjo','create','docker-compose.yaml','notice','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','Docker\x20Compose\x20Path:\x20','maka\x20run\x20docker','90124SfwRbI','2748564ZoSHrn','inherit','docker','PM2\x20Config\x20File:\x20','exit','40tfdTnr','3303918CajxAu'];a85c=function(){return n;};return a85c();}Command[a85l(0x1a3)]({'name':a85l(0x18b),'aliases':['d'],'shortDesc':a85l(0x185),'description':a85l(0x191),'usage':a85l(0x187),'isPro':!![],'validOpts':['']},async function(){const m=a85l;try{const a=this[m(0x194)]['getMakaProjectConfig'](),b=this[m(0x194)][m(0x199)](m(0x18b)),c=a85f[m(0x19c)](b,m(0x1a4)),d=a85f['join'](b,'pm2.config.js');Log[m(0x1a5)](m(0x18c)+d),Log[m(0x1a5)](m(0x186)+c);if(!a85g[m(0x196)](c)){const f={'app':a[m(0x19f)],'appFileCase':paramCase(a[m(0x19f)])},g=this['fsi'][m(0x19b)]({'srcPath':m(0x198),'context':f})+'\x0a';this[m(0x194)]['createFile']({'filePath':c,'data':g});}execSync('docker-compose\x20--project-directory\x20'+b+m(0x190),{'stdio':m(0x18a)});}catch(h){process[m(0x18d)](0x1);}},a85e);
1
+ const a85m=a85d;function a85d(a,b){const c=a85c();return a85d=function(d,e){d=d-0x6b;let f=c[d];return f;},a85d(a,b);}(function(a,b){const j=a85d,c=a();while(!![]){try{const d=parseInt(j(0x85))/0x1+-parseInt(j(0x78))/0x2+parseInt(j(0x72))/0x3+-parseInt(j(0x83))/0x4*(-parseInt(j(0x88))/0x5)+-parseInt(j(0x6c))/0x6+parseInt(j(0x71))/0x7+-parseInt(j(0x6b))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a85c,0x91417));const a85b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a85d;if(c){const e=c[k(0x86)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a85a=a85b(this,function(){const l=a85d;return a85a['toString']()[l(0x7f)](l(0x7a))[l(0x75)]()[l(0x6f)](a85a)[l(0x7f)](l(0x7a));});function a85c(){const o=['docker-compose\x20--project-directory\x20','5JPZpjO','maka\x20run\x20docker','8113416GMbewg','3014310ejxsrs','join','pm2.config.js','constructor','notice','4198047CBraRL','1738113ArNatW','Run\x20your\x20application\x20in\x20a\x20Docker\x20container','existsSync','toString','config/docker-compose.yaml','PM2\x20Config\x20File:\x20','1967582hqusFV','templateContent','(((.+)+)+)+$','create','appName','getMakaProjectConfig','fsi','search','docker','getAppConfigPath','Docker\x20Compose\x20Path:\x20','3736796aVNEdl','exit','982029lHhmho','apply'];a85c=function(){return o;};return a85c();}a85a();import a85e from'./run.command.js';import{execSync}from'child_process';import a85f from'path';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[a85m(0x7b)]({'name':a85m(0x80),'aliases':['d'],'shortDesc':a85m(0x73),'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':a85m(0x89),'isPro':!![],'validOpts':['']},async function(){const n=a85m;try{const a=this[n(0x7e)][n(0x7d)](),b=this[n(0x7e)][n(0x81)](n(0x80)),c=a85f['join'](b,'docker-compose.yaml'),d=a85f[n(0x6d)](b,n(0x6e));Log[n(0x70)](n(0x77)+d),Log[n(0x70)](n(0x82)+c);if(!a85g[n(0x74)](c)){const f={'app':a['appName'],'appFileCase':paramCase(a[n(0x7c)])},g=this[n(0x7e)][n(0x79)]({'srcPath':n(0x76),'context':f})+'\x0a';this[n(0x7e)]['createFile']({'filePath':c,'data':g});}try{await a85h('http://localhost');}catch(h){}execSync(n(0x87)+b+'\x20up\x20--remove-orphans',{'stdio':'inherit'});}catch(i){process[n(0x84)](0x1);}},a85e);
@@ -1 +1 @@
1
- const a86t=a86d;(function(a,b){const p=a86d,c=a();while(!![]){try{const d=-parseInt(p(0xa4))/0x1*(-parseInt(p(0xa7))/0x2)+-parseInt(p(0x9e))/0x3*(parseInt(p(0xb7))/0x4)+parseInt(p(0xc2))/0x5*(parseInt(p(0x9f))/0x6)+-parseInt(p(0xcd))/0x7*(-parseInt(p(0xb5))/0x8)+parseInt(p(0xb0))/0x9+parseInt(p(0xcc))/0xa+-parseInt(p(0x97))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xa053f));const a86b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a86d;if(c){const e=c[q(0xbd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){const r=a86d;return a86a[r(0xb4)]()[r(0xa9)](r(0xa2))[r(0xb4)]()[r(0xc3)](a86a)[r(0xa9)](r(0xa2));});a86a();import a86e from'path';function a86c(){const w=['extraPackages','4166pbuaJd','join','search','fsi','exit','checkMeteorPackage','error','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','Node\x20Env\x20Config:\x20','10653273NUlSCS','Run\x20your\x20Meteor\x20application','--settings','slice','toString','56NWEZuS','--production','458004IdsrCL','Cannot\x20find\x20Node\x20Environment\x20File:\x20','docker','compareMakaToLatest','notice','env','apply','development','mobileServer','splice','isDirectory','20imfoLo','constructor','rawLogs','filter','push','allowIncompatibleUpdate','verbose','length','.meteor','cordova-build','10855590yWdWxK','803509CIPrQX','split','invokeMeteorCommand','ios','Please\x20provide\x20a\x20URL\x20where\x20your\x20mobile\x20app\x20should\x20connect\x20to\x20your\x20server\x20(e.g.,\x20-m\x20|\x20--mobile-server=https://example-server.com)','config','warn','inspect','concat','isFile','29460090TnWYOf','settings.json','process.env','autoupdate','\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.','exclude-archs','production','27LcGKxG','1567140tvLSzG','Meteor\x20Settings:\x20','settings','(((.+)+)+)+$','mobile-server','119UKfdHP','run'];a86c=function(){return w;};return a86c();}import a86f from'fs';import a86g from'dotenv';import{rimraf}from'rimraf';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0x94;let f=c[d];return f;},a86d(a,b);}const syncSource=function(a){const s=a86d;a86f['openSync'](a,'r'),a86g[s(0xd2)]({'path':a});},Run=Command['create']({'name':a86t(0xa5),'mustBeInMakaProject':!![],'shortDesc':a86t(0xb1),'description':a86t(0x9b),'validOpts':[a86t(0xbc),a86t(0xb9),a86t(0xc4),'port',a86t(0x94),a86t(0xbf),a86t(0xc8),a86t(0xc7),a86t(0xa6),'x',a86t(0x9c),a86t(0x9d)]},async function(a,b){const u=a86t;try{await this[u(0xaa)][u(0xac)](u(0x9a),{'shouldInstall':!![]});const c=a[0x0];if(c===u(0xd0)){const l=this[u(0xaa)]['findProjectDirectory'](),m=a86e[u(0xa8)](l,'app',u(0xca),'local',u(0xcb));this[u(0xaa)][u(0xc1)](m)&&await rimraf(m);}if(b['mobile-server']&&b[u(0xa3)]===!![]||b['m']&&b['m']===!![])throw u(0xd1);await this[u(0xaa)][u(0xba)]();const d=b[u(0xbc)]?b['env']:u(0xbe),f=this['fsi']['getAppConfigPath'](d),g=a86e[u(0xa8)](f,u(0x99));let h=a86e[u(0xa8)](f,u(0x98));b[u(0xa1)]?h=b[u(0xa1)]:h=a86e[u(0xa8)](f,u(0x98));if(this[u(0xaa)][u(0x96)](g)&&!b[u(0xb9)])Log[u(0xbb)](u(0xaf)+g),syncSource(g);else!b[u(0xb9)]&&Log['warn'](u(0xb8)+g);this[u(0xaa)][u(0x96)](h)?(Log[u(0xbb)](u(0xa0)+h),a=a[u(0x95)]([u(0xb2),h])):Log[u(0xd3)](u(0xae)+h);const i=f[u(0xce)](a86e['sep']),j=i[i[u(0xc9)]-0x1];j===u(0x9d)&&a[u(0xc6)](u(0xb6));const k=process['argv'][u(0xb3)](0x2)[u(0xc5)](n=>n!==u(0xa5))[u(0xc5)](n=>n!==a[0x0]);k['forEach']((n,o)=>{const v=u;n==='--env'&&k[v(0xc0)](o,0x2),n==='-e'&&k[v(0xc0)](o,0x2);}),this[u(0xaa)][u(0xcf)](u(0xa5),a[u(0x95)](k));}catch(n){console[u(0xad)](n),process[u(0xab)](0x1);}});export default Run;
1
+ const a86s=a86d;(function(a,b){const p=a86d,c=a();while(!![]){try{const d=-parseInt(p(0xbf))/0x1*(-parseInt(p(0xec))/0x2)+parseInt(p(0xce))/0x3+parseInt(p(0xb1))/0x4*(parseInt(p(0xdf))/0x5)+parseInt(p(0xd7))/0x6+parseInt(p(0xcb))/0x7+parseInt(p(0xdc))/0x8*(-parseInt(p(0xd3))/0x9)+-parseInt(p(0xbb))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a86c,0xb7dea));const a86b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a86d;if(c){const e=c[q(0xb9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a86a=a86b(this,function(){const r=a86d;return a86a[r(0xc7)]()[r(0xb6)](r(0xe5))[r(0xc7)]()[r(0xde)](a86a)[r(0xb6)](r(0xe5));});function a86d(a,b){const c=a86c();return a86d=function(d,e){d=d-0xb0;let f=c[d];return f;},a86d(a,b);}a86a();import a86e from'path';import a86f from'fs';function a86c(){const v=['cordova-build','440WmDyJM','create','excludeArchs','fsi','findProjectDirectory','search','length','inspect','apply','Run\x20your\x20Meteor\x20application','31816620taMyTA','argv','--settings','getAppConfigPath','9yEVCrw','settings','--exclude-archs','--env','ios','settings.json','filter','warn','toString','notice','splice','run','2209074boTZiD','production','\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.\x0a\x20\x20','1926240VIQFlw','split','slice','env','allowIncompatibleUpdate','9wDVzog','app','web.browser.legacy','concat','6209826QLxecI','checkMeteorPackage','push','mobileServer','verbose','2243496MHYgSq','local','constructor','64105npoxlW','invokeMeteorCommand','extraPackages','Cannot\x20find\x20Node\x20Environment\x20File:\x20','isDirectory','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','(((.+)+)+)+$','isFile','compareMakaToLatest','port','.meteor','rawLogs','join','180508TGPENF','boolean','autoupdate','development','Node\x20Env\x20Config:\x20'];a86c=function(){return v;};return a86c();}import a86g from'dotenv';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){a86f['openSync'](a,'r'),a86g['config']({'path':a});},Run=Command[a86s(0xb2)]({'name':a86s(0xca),'mustBeInMakaProject':!![],'shortDesc':a86s(0xba),'description':a86s(0xcd),'validOpts':[a86s(0xd1),'docker',a86s(0xea),a86s(0xe8),a86s(0xb8),'mobileServer',a86s(0xdb),a86s(0xd2),a86s(0xe1),'x',a86s(0xb3),a86s(0xcc),'ci']},async function(a,b){const t=a86s;try{await this[t(0xb4)][t(0xd8)](t(0xee),{'shouldInstall':!![]});const c=a[0x0];if(c===t(0xc3)){const l=this['fsi'][t(0xb5)](),m=a86e[t(0xeb)](l,t(0xd4),t(0xe9),t(0xdd),t(0xb0));this['fsi'][t(0xe3)](m)&&await rimraf(m);}!b[t(0xb3)]&&!b['x']&&(a=a['concat']([t(0xc1),t(0xd5)]));if(b[t(0xda)]&&typeof b[t(0xda)]===t(0xed))throw'Please\x20provide\x20a\x20URL\x20where\x20your\x20mobile\x20app\x20should\x20connect\x20to\x20your\x20server\x20(e.g.,\x20-m\x20|\x20--mobile-server=https://example-server.com)';await this['fsi'][t(0xe7)]();const d=b[t(0xd1)]?b['env']:t(0xef),f=this['fsi'][t(0xbe)](d),g=a86e['join'](f,'process.env');let h=a86e[t(0xeb)](f,t(0xc4));b[t(0xc0)]?h=b[t(0xc0)]:h=a86e['join'](f,t(0xc4));if(this[t(0xb4)]['isFile'](g)&&!b['docker'])Log[t(0xc8)](t(0xf0)+g),syncSource(g);else!b['docker']&&Log[t(0xc6)](t(0xe2)+g);this[t(0xb4)][t(0xe6)](h)?(Log[t(0xc8)]('Meteor\x20Settings:\x20'+h),a=a[t(0xd6)]([t(0xbd),h])):Log[t(0xc6)](t(0xe4)+h);const i=f[t(0xcf)](a86e['sep']),j=i[i[t(0xb7)]-0x1];j===t(0xcc)&&a[t(0xd9)]('--production');const k=process[t(0xbc)][t(0xd0)](0x2)[t(0xc5)](n=>n!==t(0xca))[t(0xc5)](n=>n!==a[0x0]);k['forEach']((n,o)=>{const u=t;n===u(0xc2)&&k['splice'](o,0x2),n==='-e'&&k[u(0xc9)](o,0x2);});try{await a86h('http://localhost:'+(b[t(0xe8)]||0xbb8));}catch(n){}this[t(0xb4)][t(0xe0)](t(0xca),a['concat'](k));}catch(o){Log['error'](o),process['exit'](0x1);}});export default Run;
@@ -1 +1 @@
1
- function a87c(){var i=['6xqHDtE','13205890LFSxDv','apply','10552036vVVaUD','10373419avfDVw','1458mkuvik','866184CjaSPo','195CYXuXQ','2404405rIHTMN','32264PMkQbu','(((.+)+)+)+$','constructor','search','4ZtRvxl','toString','2186HhOriH'];a87c=function(){return i;};return a87c();}(function(a,b){var f=a87d,c=a();while(!![]){try{var d=parseInt(f(0xba))/0x1+parseInt(f(0xb3))/0x2*(-parseInt(f(0xbb))/0x3)+-parseInt(f(0xc1))/0x4*(parseInt(f(0xbc))/0x5)+-parseInt(f(0xb4))/0x6*(-parseInt(f(0xb8))/0x7)+-parseInt(f(0xbd))/0x8*(parseInt(f(0xb9))/0x9)+-parseInt(f(0xb5))/0xa+parseInt(f(0xb7))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0xbeccc));var a87b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a87d;if(c){var e=c[g(0xb6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){var h=a87d;return a87a[h(0xc2)]()[h(0xc0)]('(((.+)+)+)+$')[h(0xc2)]()[h(0xbf)](a87a)[h(0xc0)](h(0xbe));});a87a();import'./set.command.js';import'./global.sub.cmd.js';function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0xb3;var f=c[d];return f;},a87d(a,b);}import'./local.sub.cmd.js';
1
+ (function(a,b){var f=a87d,c=a();while(!![]){try{var d=parseInt(f(0xf7))/0x1+parseInt(f(0xf3))/0x2+parseInt(f(0xed))/0x3*(parseInt(f(0xf8))/0x4)+-parseInt(f(0xf1))/0x5*(parseInt(f(0xf5))/0x6)+parseInt(f(0xf6))/0x7*(parseInt(f(0xf0))/0x8)+-parseInt(f(0xf9))/0x9+parseInt(f(0xee))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a87c,0x9b51c));var a87b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a87d;if(c){var e=c[g(0xf4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a87a=a87b(this,function(){var h=a87d;return a87a[h(0xef)]()[h(0xf2)]('(((.+)+)+)+$')['toString']()[h(0xec)](a87a)[h(0xf2)]('(((.+)+)+)+$');});a87a();function a87c(){var i=['4749480Ntgatq','toString','1016epeUGY','25iUTAco','search','929638utEHcV','apply','1266042rvOzAd','46067RQNhyj','1021204EQOsQl','4LFsLBv','10254546HuQEJH','constructor','101577Flmpms'];a87c=function(){return i;};return a87c();}import'./set.command.js';function a87d(a,b){var c=a87c();return a87d=function(d,e){d=d-0xec;var f=c[d];return f;},a87d(a,b);}import'./global.sub.cmd.js';import'./local.sub.cmd.js';
@@ -1 +1 @@
1
- const a88j=a88d;(function(a,b){const h=a88d,c=a();while(!![]){try{const d=-parseInt(h(0x1f4))/0x1+parseInt(h(0x1de))/0x2*(-parseInt(h(0x1d1))/0x3)+-parseInt(h(0x1d7))/0x4*(-parseInt(h(0x1d4))/0x5)+-parseInt(h(0x1ca))/0x6*(parseInt(h(0x1dc))/0x7)+-parseInt(h(0x1d9))/0x8+parseInt(h(0x1d5))/0x9+parseInt(h(0x1e7))/0xa*(parseInt(h(0x1ec))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0xb15ff));function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x1ca;let f=c[d];return f;},a88d(a,b);}const a88b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a88a=a88b(this,function(){const i=a88d;return a88a[i(0x1cb)]()['search'](i(0x1e4))[i(0x1cb)]()[i(0x1ee)](a88a)[i(0x1f3)]('(((.+)+)+)+$');});function a88c(){const l=['constructor','cacert','\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','dark','Set\x20color\x20pallet\x20to:\x20','search','881729HGYbHB','light','2964ZJhckz','toString','allowInsecure','openai','error','exit','maka\x20set:global-config','2507511QlLVpB','success','maka\x20set:global-config\x20--cacert\x20<path>','1099130wWwHHe','8843553jLbcoq','isDirectory','12PKtrPi','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','7234024GWbiWe','workspace','disallowInsecure','7483OWadMw','Could\x20not\x20find\x20directory','2FPvtzF','boolean','Set\x20allowInsecure:\x20','help','maka\x20set:gc\x20--insecure\x20<path>','resolve','(((.+)+)+)+$','setGlobalConfig','Set\x20global\x20Maka-CLI\x20settings','70SgxTpj','Set\x20workspace:\x20','maka\x20set:gc\x20--workspace\x20<path>','pallet','global-config','3511101ZigfGT','fsi'];a88c=function(){return l;};return a88c();}a88a();import a88e from'path';import a88f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':a88j(0x1eb),'usage':a88j(0x1d0),'aliases':['gc'],'maxOptsLength':0x3,'validOpts':[{'name':a88j(0x1ef),'boolFlag':![]},{'name':'allowInsecure','boolFlag':!![]},{'name':'disallowInsecure','boolFlag':!![]},{'name':a88j(0x1da),'boolFlag':![]},{'name':a88j(0x1cd),'boolFlag':![]},{'name':a88j(0x1e1),'boolFlag':!![]},{'name':'pallet','values':[a88j(0x1f5),a88j(0x1f1)]}],'shortDesc':a88j(0x1e6),'description':a88j(0x1f0),'examples':[a88j(0x1d3),a88j(0x1e2),a88j(0x1e9)]},async function(a,b){const k=a88j;try{if(b[k(0x1ef)]){if(this['fsi']['isFile'](b[k(0x1ef)]))await this[k(0x1ed)][k(0x1e5)]({'cert':b[k(0x1ef)]}),Log[k(0x1d2)]('Set\x20CA\x20Cert\x20Path:\x20'+b['cacert']);else{const c=typeof b['cacert']===k(0x1df)?k(0x1d8):'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+b[k(0x1ef)];throw Log[k(0x1ce)](c);}}if(b[k(0x1da)]){const d=this[k(0x1ed)][k(0x1d6)](b[k(0x1da)]);if(d)await this[k(0x1ed)][k(0x1e5)]({'workspace':a88e[k(0x1e3)](b['workspace'])}),Log[k(0x1d2)](k(0x1e8)+a88e[k(0x1e3)](b[k(0x1da)]));else throw Log[k(0x1ce)](k(0x1dd));}b[k(0x1cd)]&&(await this[k(0x1ed)][k(0x1e5)]({'openai':b['openai']}),Log['success']('Set\x20OpenAI\x20Key:\x20'+b['openai']));b[k(0x1ea)]&&(await this[k(0x1ed)][k(0x1e5)]({'pallet':b[k(0x1ea)]}),Log[k(0x1d2)](k(0x1f2)+b[k(0x1ea)]));if(b[k(0x1cc)]){if(b['allowInsecure']&&b['disallowInsecure'])throw Log[k(0x1ce)]('One\x20or\x20the\x20other\x20buddy');let f=b[k(0x1cc)];b[k(0x1db)]&&(f=![]),await this['fsi']['setGlobalConfig']({'allowInsecure':f}),Log[k(0x1d2)](k(0x1e0)+f);}process[k(0x1cf)](0x0);}catch(g){console[k(0x1ce)](g),process['exit'](0x0);}},a88f);
1
+ function a88d(a,b){const c=a88c();return a88d=function(d,e){d=d-0x1c3;let f=c[d];return f;},a88d(a,b);}function a88c(){const l=['maka\x20set:gc\x20--workspace\x20<path>','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','2bYdTPI','1791036syhtKK','help','dark','8sbziGf','isFile','384126SWAnfH','(((.+)+)+)+$','762492lzZIxP','boolean','openai','constructor','Set\x20workspace:\x20','disallowInsecure','1260980toMghJ','exit','success','5awpaCQ','fsi','Set\x20CA\x20Cert\x20Path:\x20','\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','118019jPRNEA','workspace','toString','2208850mfpqAV','search','Set\x20color\x20pallet\x20to:\x20','allowInsecure','maka\x20set:gc\x20--insecure\x20<path>','setGlobalConfig','global-config','error','Set\x20OpenAI\x20Key:\x20','maka\x20set:global-config','pallet','Please\x20provide\x20a\x20path\x20for\x20the\x20--cacert\x20flag.','cacert','Could\x20not\x20find\x20directory','Set\x20allowInsecure:\x20','Set\x20global\x20Maka-CLI\x20settings','9640610DCKFiW'];a88c=function(){return l;};return a88c();}const a88j=a88d;(function(a,b){const h=a88d,c=a();while(!![]){try{const d=parseInt(h(0x1d9))/0x1+-parseInt(h(0x1c4))/0x2*(-parseInt(h(0x1cc))/0x3)+parseInt(h(0x1d2))/0x4*(parseInt(h(0x1d5))/0x5)+-parseInt(h(0x1ca))/0x6+-parseInt(h(0x1dc))/0x7*(-parseInt(h(0x1c8))/0x8)+parseInt(h(0x1c5))/0x9+-parseInt(h(0x1ec))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a88c,0x2a74c));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(0x1db)]()[i(0x1dd)](i(0x1cb))[i(0x1db)]()[i(0x1cf)](a88a)[i(0x1dd)](i(0x1cb));});a88a();import a88e from'path';import a88f from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';Command['create']({'name':a88j(0x1e2),'usage':a88j(0x1e5),'aliases':['gc'],'maxOptsLength':0x3,'validOpts':[{'name':a88j(0x1e8),'boolFlag':![]},{'name':a88j(0x1df),'boolFlag':!![]},{'name':a88j(0x1d1),'boolFlag':!![]},{'name':a88j(0x1da),'boolFlag':![]},{'name':a88j(0x1ce),'boolFlag':![]},{'name':a88j(0x1c6),'boolFlag':!![]},{'name':'pallet','values':['light',a88j(0x1c7)]}],'shortDesc':a88j(0x1eb),'description':a88j(0x1d8),'examples':['maka\x20set:global-config\x20--cacert\x20<path>',a88j(0x1e0),a88j(0x1ed)]},async function(a,b){const k=a88j;try{if(b['cacert']){if(this['fsi'][k(0x1c9)](b[k(0x1e8)]))await this[k(0x1d6)][k(0x1e1)]({'cert':b[k(0x1e8)]}),Log['success'](k(0x1d7)+b['cacert']);else{const c=typeof b['cacert']===k(0x1cd)?k(0x1e7):k(0x1c3)+b[k(0x1e8)];throw Log[k(0x1e3)](c);}}if(b[k(0x1da)]){const d=this[k(0x1d6)]['isDirectory'](b[k(0x1da)]);if(d)await this[k(0x1d6)][k(0x1e1)]({'workspace':a88e['resolve'](b[k(0x1da)])}),Log[k(0x1d4)](k(0x1d0)+a88e['resolve'](b[k(0x1da)]));else throw Log['error'](k(0x1e9));}b[k(0x1ce)]&&(await this['fsi'][k(0x1e1)]({'openai':b['openai']}),Log[k(0x1d4)](k(0x1e4)+b['openai']));b[k(0x1e6)]&&(await this['fsi']['setGlobalConfig']({'pallet':b[k(0x1e6)]}),Log[k(0x1d4)](k(0x1de)+b['pallet']));if(b[k(0x1df)]){if(b['allowInsecure']&&b[k(0x1d1)])throw Log[k(0x1e3)]('One\x20or\x20the\x20other\x20buddy');let f=b[k(0x1df)];b[k(0x1d1)]&&(f=![]),await this[k(0x1d6)]['setGlobalConfig']({'allowInsecure':f}),Log['success'](k(0x1ea)+f);}process[k(0x1d3)](0x0);}catch(g){console[k(0x1e3)](g),process[k(0x1d3)](0x0);}},a88f);
@@ -1 +1 @@
1
- function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0xa2;var f=c[d];return f;},a89d(a,b);}var a89i=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=-parseInt(f(0xa3))/0x1+-parseInt(f(0xb2))/0x2*(parseInt(f(0xae))/0x3)+-parseInt(f(0xa9))/0x4+-parseInt(f(0xa6))/0x5*(parseInt(f(0xa4))/0x6)+parseInt(f(0xab))/0x7+parseInt(f(0xb0))/0x8+parseInt(f(0xad))/0x9*(parseInt(f(0xa8))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x9b625));var a89b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a89d;if(c){var e=c[g(0xa2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){var h=a89d;return a89a[h(0xa5)]()[h(0xac)]('(((.+)+)+)+$')[h(0xa5)]()['constructor'](a89a)[h(0xac)]('(((.+)+)+)+$');});a89a();import a89e from'./set.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a89c(){var k=['1215qdqbOb','Set\x20local\x20maka\x20app\x20settings','2239384hOIvoH','notice','1982sWXcxj','apply','652319pIwxWK','505332qZttfF','toString','30ZIftRK','maka\x20set:local-config','30DMCcdj','764208mNKLwv','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','6669579cfLTXj','search','3461373wjYzIV'];a89c=function(){return k;};return a89c();}Command['create']({'name':'local-config','usage':a89i(0xa7),'examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'shortDesc':a89i(0xaf),'validOpts':[],'description':a89i(0xaa)},async function(){var j=a89i;Log[j(0xb1)]('Sorry,\x20not\x20implemented\x20yet');},a89e);
1
+ var a89i=a89d;(function(a,b){var f=a89d,c=a();while(!![]){try{var d=-parseInt(f(0x78))/0x1*(parseInt(f(0x7f))/0x2)+-parseInt(f(0x81))/0x3*(-parseInt(f(0x75))/0x4)+-parseInt(f(0x7e))/0x5*(-parseInt(f(0x84))/0x6)+parseInt(f(0x74))/0x7+-parseInt(f(0x85))/0x8*(parseInt(f(0x79))/0x9)+parseInt(f(0x7d))/0xa+parseInt(f(0x7b))/0xb*(-parseInt(f(0x7c))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a89c,0x937e1));var a89b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a89d;if(c){var e=c[g(0x76)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a89a=a89b(this,function(){var h=a89d;return a89a['toString']()[h(0x80)](h(0x86))[h(0x87)]()['constructor'](a89a)['search']('(((.+)+)+)+$');});a89a();import a89e from'./set.command.js';import{Command}from'../../command.js';function a89d(a,b){var c=a89c();return a89d=function(d,e){d=d-0x73;var f=c[d];return f;},a89d(a,b);}import{Log}from'../../tools/log/log.class.js';function a89c(){var k=['search','101271iTZtNX','\x0a\x20\x20Set\x20maka\x20configurations\x20in\x20a\x20maka\x20projects\x20(local)\x20.maka/config.json\x20file.\x0a\x20\x20','Set\x20local\x20maka\x20app\x20settings','438972IAajvX','792PULoPO','(((.+)+)+)+$','toString','Sorry,\x20not\x20implemented\x20yet','228151cIwrAv','4LHbwCr','apply','local-config','9EnsJfk','12717ORZNIq','maka\x20set:local-config','4950riueRz','16584wEclES','10446400VnFUYp','50cUhXpC','105932xrbBjb'];a89c=function(){return k;};return a89c();}Command['create']({'name':a89i(0x77),'usage':a89i(0x7a),'examples':[],'aliases':['lc'],'mustBeInMakaProject':!![],'shortDesc':a89i(0x83),'validOpts':[],'description':a89i(0x82)},async function(){var j=a89i;Log['notice'](j(0x73));},a89e);
@@ -1 +1 @@
1
- const a90h=a90d;(function(a,b){const f=a90d,c=a();while(!![]){try{const d=parseInt(f(0x10e))/0x1+parseInt(f(0x11b))/0x2*(parseInt(f(0x112))/0x3)+parseInt(f(0x10d))/0x4*(parseInt(f(0x108))/0x5)+-parseInt(f(0x111))/0x6*(parseInt(f(0x118))/0x7)+parseInt(f(0x109))/0x8+-parseInt(f(0x115))/0x9*(-parseInt(f(0x116))/0xa)+parseInt(f(0x110))/0xb*(-parseInt(f(0x113))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x74022));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const g=a90d;return a90a[g(0x10a)]()[g(0x10b)](g(0x117))[g(0x10a)]()['constructor'](a90a)[g(0x10b)](g(0x117));});function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x108;let f=c[d];return f;},a90d(a,b);}function a90c(){const j=['12618kihVTn','6190bFDDYi','(((.+)+)+)+$','22211pFDjdz','create','findSubCommand','52muqpfH','\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>','3986365hZKVcH','5132112YpaYig','toString','search','set','4VvYRZc','333193fifOge','runSubCommand','165Duhcbq','222DjQqHT','78864ZLGqXY','2184588lReVIq','Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally'];a90c=function(){return j;};return a90c();}a90a();import{Command}from'../../command.js';const SetCommand=Command[a90h(0x119)]({'name':a90h(0x10c),'usage':a90h(0x11d),'shortDesc':a90h(0x114),'description':a90h(0x11c),'validOpts':[]},async function(a,b){const i=a90h,c=a[0x0],d=this[i(0x11a)](c);d&&this[i(0x10f)](c,a,b);});export default SetCommand;
1
+ function a90c(){const j=['(((.+)+)+)+$','search','create','640176vkLaPF','343168puRbpC','findSubCommand','4007416XwlBcq','toString','234796HHEUav','90836vZVdYV','3gzvWEV','maka\x20set:<sub-command>','set','754000dhwKRV','\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','808374amNRGU'];a90c=function(){return j;};return a90c();}const a90h=a90d;(function(a,b){const f=a90d,c=a();while(!![]){try{const d=-parseInt(f(0x16e))/0x1+parseInt(f(0x16d))/0x2*(-parseInt(f(0x16f))/0x3)+parseInt(f(0x168))/0x4+-parseInt(f(0x172))/0x5+-parseInt(f(0x164))/0x6+-parseInt(f(0x169))/0x7+parseInt(f(0x16b))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a90c,0x1cda8));const a90b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a90a=a90b(this,function(){const g=a90d;return a90a[g(0x16c)]()[g(0x166)]('(((.+)+)+)+$')[g(0x16c)]()['constructor'](a90a)[g(0x166)](g(0x165));});a90a();import{Command}from'../../command.js';const SetCommand=Command[a90h(0x167)]({'name':a90h(0x171),'usage':a90h(0x170),'shortDesc':'Set\x20Maka-CLI\x20settings\x20globally\x20or\x20locally','description':a90h(0x173),'validOpts':[]},async function(a,b){const i=a90h,c=a[0x0],d=this[i(0x16a)](c);d&&this['runSubCommand'](c,a,b);});function a90d(a,b){const c=a90c();return a90d=function(d,e){d=d-0x164;let f=c[d];return f;},a90d(a,b);}export default SetCommand;
@@ -1 +1 @@
1
- function a91c(){const o=['1uyyiqf','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','ssh','1925SvmOvp','parse','error','maka\x20ssh\x20<command>','join','17880iVYWYS','maka\x20ssh\x20--env\x20dev','apply','env','1923660lnfLii','42QHBzhR','27117hyIEsN','readFileSync','assign','ssh.json','fsi','(((.+)+)+)+$','maka\x20ssh\x20--env\x20prod','1577655zdeRQd','length','exit','1641485AOXeTC','verbose','getAppConfigPath','526778ASKjWF','create','216quaXMQ','toString','search','460020RgTvlI','maka\x20ssh\x20--env\x20staging'];a91c=function(){return o;};return a91c();}const a91m=a91d;(function(a,b){const j=a91d,c=a();while(!![]){try{const d=-parseInt(j(0xfb))/0x1*(parseInt(j(0xf4))/0x2)+parseInt(j(0xee))/0x3+parseInt(j(0xe5))/0x4+-parseInt(j(0xf1))/0x5+parseInt(j(0xf9))/0x6*(-parseInt(j(0xe6))/0x7)+parseInt(j(0xf6))/0x8*(parseInt(j(0xe7))/0x9)+-parseInt(j(0xe1))/0xa*(-parseInt(j(0xdc))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0x554a1));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a91d;if(c){const e=c[k(0xe3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const l=a91d;return a91a[l(0xf7)]()[l(0xf8)]('(((.+)+)+)+$')[l(0xf7)]()['constructor'](a91a)[l(0xf8)](l(0xec));});a91a();import a91e from'fs';import a91f from'path';import{Command}from'../command.js';function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0xda;let f=c[d];return f;},a91d(a,b);}import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a91m(0xf5)]({'name':a91m(0xdb),'usage':a91m(0xdf),'mustBeInMakaProject':!![],'requiredOpts':[a91m(0xe4)],'validOpts':['env','verbose'],'isPro':!![],'shortDesc':'Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','examples':[a91m(0xe2),a91m(0xfa),a91m(0xed),'maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22',a91m(0xda),'maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22']},async function(a,b){const n=a91m;try{const c=this[n(0xeb)][n(0xf3)](b[n(0xe4)]);let d='';a[n(0xef)]>0x0&&(d=a[0x0]);const f=a91f[n(0xe0)](c,n(0xea)),g=a91e[n(0xe8)](f)['toString'](),h=JSON[n(0xdd)](g);Object[n(0xe9)](h,{'env':c}),SSH['sshSync'](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0xf2)]});}catch(i){Log[n(0xde)](i),process[n(0xf0)](0x1);}});
1
+ const a91m=a91d;function a91d(a,b){const c=a91c();return a91d=function(d,e){d=d-0xb4;let f=c[d];return f;},a91d(a,b);}(function(a,b){const j=a91d,c=a();while(!![]){try{const d=parseInt(j(0xd6))/0x1*(-parseInt(j(0xd8))/0x2)+-parseInt(j(0xbf))/0x3*(parseInt(j(0xc8))/0x4)+parseInt(j(0xba))/0x5*(parseInt(j(0xd3))/0x6)+-parseInt(j(0xb4))/0x7*(parseInt(j(0xc0))/0x8)+parseInt(j(0xce))/0x9*(parseInt(j(0xbb))/0xa)+parseInt(j(0xc2))/0xb*(parseInt(j(0xcd))/0xc)+-parseInt(j(0xd5))/0xd*(-parseInt(j(0xc4))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a91c,0x9a0fc));const a91b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a91d;if(c){const e=c[k(0xb7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a91a=a91b(this,function(){const l=a91d;return a91a[l(0xc5)]()[l(0xd0)](l(0xcf))['toString']()[l(0xc6)](a91a)['search'](l(0xcf));});a91a();function a91c(){const o=['6lZNidP','16UmaZdy','env','8371759aqcOAV','join','5460BqeWyV','toString','constructor','readFileSync','2076316FlZvzP','sshSync','fsi','ssh.json','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20status\x22','12JlkxJy','393093BVaVvY','(((.+)+)+)+$','search','ssh','maka\x20ssh\x20--env\x20prod\x20\x22ls\x20-la\x22','2625528iaZtzP','verbose','12974XpCUTX','369308XRHXyG','maka\x20ssh\x20--env\x20staging','4NAHiHe','2483530JLQFyV','Connect\x20to\x20or\x20run\x20commands\x20at\x20to\x20your\x20server.','getAppConfigPath','apply','maka\x20ssh\x20--env\x20prod\x20\x22pm2\x20logs\x22','maka\x20ssh\x20<command>','10pHQKew','250ujTRnO','error','maka\x20ssh\x20--env\x20dev','create'];a91c=function(){return o;};return a91c();}import a91e from'fs';import a91f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a91m(0xbe)]({'name':a91m(0xd1),'usage':a91m(0xb9),'mustBeInMakaProject':!![],'requiredOpts':[a91m(0xc1)],'validOpts':[a91m(0xc1),a91m(0xd4)],'isPro':!![],'shortDesc':a91m(0xb5),'examples':[a91m(0xbd),a91m(0xd7),'maka\x20ssh\x20--env\x20prod',a91m(0xd2),a91m(0xcc),a91m(0xb8)]},async function(a,b){const n=a91m;try{const c=this[n(0xca)][n(0xb6)](b[n(0xc1)]);let d='';a['length']>0x0&&(d=a[0x0]);const f=a91f[n(0xc3)](c,n(0xcb)),g=a91e[n(0xc7)](f)['toString'](),h=JSON['parse'](g);Object['assign'](h,{'env':c}),SSH[n(0xc9)](d,h,{'tty':!![],'verbose':!![],'sshVerbose':b[n(0xd4)]});}catch(i){Log[n(0xbc)](i),process['exit'](0x1);}});
@@ -1 +1 @@
1
- const a92y=a92d;(function(a,b){const v=a92d,c=a();while(!![]){try{const d=-parseInt(v(0x1aa))/0x1*(-parseInt(v(0x1a5))/0x2)+parseInt(v(0x18b))/0x3*(parseInt(v(0x179))/0x4)+parseInt(v(0x188))/0x5+parseInt(v(0x1a4))/0x6*(parseInt(v(0x195))/0x7)+parseInt(v(0x1ab))/0x8*(-parseInt(v(0x180))/0x9)+parseInt(v(0x17f))/0xa*(-parseInt(v(0x190))/0xb)+-parseInt(v(0x196))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0x23bb3));const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0x18d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a['toString']()[x(0x189)]('(((.+)+)+)+$')['toString']()[x(0x1ac)](a92a)[x(0x189)](x(0x19c));});function a92c(){const A=['genCSR','/ssh.json','Using\x20saved\x20letsencrypt\x20config','email','sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','getMakaProjectConfig','166615knrkDE','search','withSpinner','102GzPCxj','letsencrypt.json','apply','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','mkKeysDir','332783WrpUft','join','appName','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','parse','14PkIqjb','2577936JahzhT','writeFileSync','genSSC','Create\x20and\x20manage\x20your\x20SSL\x20operations.','Verifying\x20Letsencrypt\x20configuration','maka\x20ssl\x20--env\x20dev\x20generate-csr','(((.+)+)+)+$','.key','start','error','generate-csr','notice','Remote\x20host\x20connection\x20successful','.csr','171552kEInEM','91394Xaqedu','Checking\x20remote\x20host\x20availability','success','existsSync','ping','5yqGUrl','80bvFqKJ','constructor','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','domainNames','stringify','sudo\x20snap\x20install\x20--classic\x20certbot','ssh','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','letsencrypt','env','fsi','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','11724UCdHoO','ask','toString','getAppConfigPath','domains','readFileSync','10bsqWiK','24489Xoultl','[?]\x20Domains\x20to\x20register:\x20'];a92c=function(){return A;};return a92c();}a92a();import a92e from'fs';import a92f from'path';import{Actions}from'../tools/actions/actions.class.js';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x171;let f=c[d];return f;},a92d(a,b);}import{SSL}from'../tools/ssl/ssl.class.js';Command['create']({'name':'ssl','usage':'maka\x20ssl\x20[command]','validOpts':[a92y(0x17d),a92y(0x185)],'requiredOpts':[a92y(0x176)],'shortDesc':a92y(0x199),'mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':[a92y(0x19b),'maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate',a92y(0x178)]},async function(a,b){const z=a92y,c=this[z(0x177)][z(0x187)](),d=this[z(0x177)][z(0x17c)](b[z(0x176)]),f=this[z(0x177)][z(0x18f)]({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g===z(0x1a0))SSL[z(0x182)]({'keyName':c[z(0x192)]+'.key','csrName':c[z(0x192)]+'.csr','cwd':f});else{if(g==='generate-ssc'){if(!a92e[z(0x1a8)](a92f[z(0x191)](f,c['appName']+z(0x19d))))throw'The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20'+a92f[z(0x191)](f,c[z(0x192)]+z(0x19d));if(!a92e[z(0x1a8)](a92f[z(0x191)](f,c[z(0x192)]+'.csr')))throw z(0x193)+a92f['join'](f,c[z(0x192)]+z(0x1a3));SSL[z(0x198)]({'keyName':c[z(0x192)]+z(0x19d),'crtName':c[z(0x192)]+'.crt','cwd':f}),Log[z(0x1a1)]('New\x20CSR\x20written\x20to\x20'+f);}else{if(g===z(0x175)){let h=b[z(0x17d)],i=b[z(0x185)];try{const p=a92e[z(0x17e)](a92f[z(0x191)](d,z(0x18c)))[z(0x17b)](),q=JSON[z(0x194)](p);h=b['domains']?b['domains']:q[z(0x1ae)],i=b[z(0x185)]?b[z(0x185)]:q['emailUpdate'],(!b[z(0x185)]||!b[z(0x17d)])&&Log[z(0x1a1)](z(0x184));}catch(r){}const j=JSON[z(0x194)](a92e[z(0x17e)](d+z(0x183))[z(0x17b)]());Object['assign'](j,{'env':d}),Log[z(0x1a1)](z(0x1a6));try{const s=SSH[z(0x1a9)]('uname\x20-a',j);if(!s)throw z(0x174);if(s)Log[z(0x1a7)](z(0x1a2));}catch(t){Log[z(0x19f)](t);return;}const k=Log[z(0x18a)]();k[z(0x19e)](z(0x19a)),SSH['ssh'](z(0x186),{...j}),SSH[z(0x173)](z(0x172),{...j}),SSH['ssh'](z(0x18e),{...j}),k['success']();const l=h?h:await Actions[z(0x17a)](z(0x181)),m=i?i:await Actions[z(0x17a)]('Email\x20to\x20use\x20for\x20auto-updates:\x20');SSH['ssh'](z(0x1ad)+l+'\x20--email\x20'+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON[z(0x171)](n,null,0x2);a92e[z(0x197)](a92f['join'](d,z(0x18c)),o);}else throw'Please\x20provide\x20a\x20command.';}}}catch(u){console[z(0x19f)](u),process['exit'](0x0);}});
1
+ function a92c(){const A=['sudo\x20snap\x20install\x20core;\x20sudo\x20snap\x20refresh\x20core','1357384XGyVHy','sudo\x20ln\x20-s\x20/snap/bin/certbot\x20/usr/bin/certbot','join','uname\x20-a','fsi','592142mQClvl','genCSR','.key','Email\x20to\x20use\x20for\x20auto-updates:\x20','(((.+)+)+)+$','2683920qnRuKd','env','maka\x20ssl\x20[command]','\x20--email\x20','ssh','Verifying\x20Letsencrypt\x20configuration','apply','exit','4GUFMAy','sudo\x20snap\x20install\x20--classic\x20certbot','ask','appName','toString','maka\x20ssl\x20--env\x20dev\x20generate-csr','The\x20KEY\x20(.key)\x20is\x20missing\x20from:\x20','withSpinner','emailUpdate','ping','Please\x20provide\x20a\x20command.','Checking\x20remote\x20host\x20availability','parse','38580rUvIzr','error','start','domainNames','ssl','/ssh.json','Using\x20saved\x20letsencrypt\x20config','[?]\x20Domains\x20to\x20register:\x20','52176wGQvYZ','27gwXHNl','sudo\x20certbot\x20--nginx\x20--agree-tos\x20--expand\x20-n\x20--domains\x20','Remote\x20host\x20connection\x20successful','5781275xrHUfq','assign','letsencrypt','letsencrypt.json','21QGYelW','notice','Could\x20not\x20connect\x20to\x20remote\x20host.\x20Please\x20check\x20your\x20ssh.json\x20config\x20file.','The\x20CSR\x20file\x20(.csr)\x20is\x20missing\x20from:\x20','18MfuRmX','genSSC','maka\x20ssl\x20--env\x20prod\x20letsencrypt\x20//\x20Walkthrough\x20the\x20letsencrypt\x20process','.csr','existsSync','search','email','2227832xhETGv','readFileSync','success','3696FUCGsO','constructor','domains','create','getMakaProjectConfig'];a92c=function(){return A;};return a92c();}const a92y=a92d;function a92d(a,b){const c=a92c();return a92d=function(d,e){d=d-0x1ad;let f=c[d];return f;},a92d(a,b);}(function(a,b){const v=a92d,c=a();while(!![]){try{const d=parseInt(v(0x1ca))/0x1*(-parseInt(v(0x1bd))/0x2)+parseInt(v(0x1e7))/0x3*(parseInt(v(0x1df))/0x4)+-parseInt(v(0x1e3))/0x5+parseInt(v(0x1eb))/0x6*(parseInt(v(0x1b8))/0x7)+-parseInt(v(0x1af))/0x8*(-parseInt(v(0x1e0))/0x9)+parseInt(v(0x1d7))/0xa*(parseInt(v(0x1b2))/0xb)+parseInt(v(0x1c2))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a92c,0xa7f12));const a92b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a92d;if(c){const e=c[w(0x1c8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a92a=a92b(this,function(){const x=a92d;return a92a[x(0x1ce)]()[x(0x1ad)](x(0x1c1))[x(0x1ce)]()[x(0x1b3)](a92a)[x(0x1ad)](x(0x1c1));});a92a();import a92e from'fs';import a92f from'path';import{Actions}from'../tools/actions/actions.class.js';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{SSL}from'../tools/ssl/ssl.class.js';Command[a92y(0x1b5)]({'name':a92y(0x1db),'usage':a92y(0x1c4),'validOpts':['domains',a92y(0x1ae)],'requiredOpts':['env'],'shortDesc':'Create\x20and\x20manage\x20your\x20SSL\x20operations.','mustBeInMakaProject':!![],'minArgLength':0x1,'isPro':!![],'examples':[a92y(0x1cf),'maka\x20ssl\x20--env\x20dev\x20generate-ssc\x20//\x20Self-Signed\x20Certificate',a92y(0x1ed)]},async function(a,b){const z=a92y,c=this[z(0x1bc)][z(0x1b6)](),d=this[z(0x1bc)]['getAppConfigPath'](b[z(0x1c3)]),f=this[z(0x1bc)]['mkKeysDir']({'configPath':d});let g='';a&&(g=a[0x0]);try{if(g==='generate-csr')SSL[z(0x1be)]({'keyName':c[z(0x1cd)]+z(0x1bf),'csrName':c['appName']+z(0x1ee),'cwd':f});else{if(g==='generate-ssc'){if(!a92e[z(0x1ef)](a92f[z(0x1ba)](f,c[z(0x1cd)]+z(0x1bf))))throw z(0x1d0)+a92f[z(0x1ba)](f,c[z(0x1cd)]+'.key');if(!a92e['existsSync'](a92f[z(0x1ba)](f,c[z(0x1cd)]+'.csr')))throw z(0x1ea)+a92f['join'](f,c[z(0x1cd)]+z(0x1ee));SSL[z(0x1ec)]({'keyName':c[z(0x1cd)]+'.key','crtName':c['appName']+'.crt','cwd':f}),Log[z(0x1e8)]('New\x20CSR\x20written\x20to\x20'+f);}else{if(g===z(0x1e5)){let h=b[z(0x1b4)],i=b['email'];try{const p=a92e[z(0x1b0)](a92f[z(0x1ba)](d,'letsencrypt.json'))[z(0x1ce)](),q=JSON[z(0x1d6)](p);h=b['domains']?b[z(0x1b4)]:q[z(0x1da)],i=b[z(0x1ae)]?b[z(0x1ae)]:q[z(0x1d2)],(!b[z(0x1ae)]||!b[z(0x1b4)])&&Log[z(0x1e8)](z(0x1dd));}catch(r){}const j=JSON[z(0x1d6)](a92e[z(0x1b0)](d+z(0x1dc))[z(0x1ce)]());Object[z(0x1e4)](j,{'env':d}),Log['notice'](z(0x1d5));try{const s=SSH[z(0x1d3)](z(0x1bb),j);if(!s)throw z(0x1e9);if(s)Log[z(0x1b1)](z(0x1e2));}catch(t){Log[z(0x1d8)](t);return;}const k=Log[z(0x1d1)]();k[z(0x1d9)](z(0x1c7)),SSH['ssh'](z(0x1b7),{...j}),SSH[z(0x1c6)](z(0x1cb),{...j}),SSH[z(0x1c6)](z(0x1b9),{...j}),k[z(0x1b1)]();const l=h?h:await Actions[z(0x1cc)](z(0x1de)),m=i?i:await Actions[z(0x1cc)](z(0x1c0));SSH['ssh'](z(0x1e1)+l+z(0x1c5)+m,{...j},{'verbose':!![]});const n={'domainNames':l,'emailUpdate':m},o=JSON['stringify'](n,null,0x2);a92e['writeFileSync'](a92f[z(0x1ba)](d,z(0x1e6)),o);}else throw z(0x1d4);}}}catch(u){console['error'](u),process[z(0x1c9)](0x0);}});
@@ -1 +1 @@
1
- function a93c(){const s=['port','env','fsi','mocha','test-packages','driver-package','1804800DsiUFW','error','readFileSync','notice','settings.json','filter','15576qHcZAr','maka\x20test\x20<opts>','Meteor\x20Settings:\x20','rawLogs','(((.+)+)+)+$','engines','.maka','2718SUwVir','unit','slice','--driver-package','--full-app','none','toString','test','--env','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','openSync','testAppPath','warn','argv','once','config.json','join','710sRMaEU','3190124BLmvtx','packages','--settings','Cannot\x20find\x20Node\x20Environment\x20File:\x20','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','concat','invokeMeteorCommand','2590326ECBRJy','driver','isFile','exit','create','search','splice','65vVkCOZ','255731pHCfSR','driverPackage','development','process.env','getAppConfigPath','inspect','constructor','7476372NwNLwK'];a93c=function(){return s;};return a93c();}const a93p=a93d;(function(a,b){const m=a93d,c=a();while(!![]){try{const d=parseInt(m(0x191))/0x1+parseInt(m(0x1bd))/0x2*(parseInt(m(0x1ac))/0x3)+-parseInt(m(0x1a5))/0x4*(parseInt(m(0x190))/0x5)+-parseInt(m(0x1c5))/0x6+-parseInt(m(0x1be))/0x7+-parseInt(m(0x19f))/0x8+parseInt(m(0x198))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x3baaa));const a93b=(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;};}()),a93a=a93b(this,function(){const n=a93d;return a93a[n(0x1b2)]()[n(0x1ca)](n(0x1a9))[n(0x1b2)]()[n(0x197)](a93a)[n(0x1ca)](n(0x1a9));});function a93d(a,b){const c=a93c();return a93d=function(d,e){d=d-0x190;let f=c[d];return f;},a93d(a,b);}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';const syncSource=function(a){const o=a93d;a93e[o(0x1b6)](a,'r'),a93g['config']({'path':a});};Command[a93p(0x1c9)]({'name':a93p(0x1b3),'mustBeInMakaProject':!![],'validOpts':[a93p(0x1ba),a93p(0x1bf),a93p(0x1c6),a93p(0x192),a93p(0x1ad),a93p(0x19a),a93p(0x1a8),a93p(0x199),a93p(0x196),a93p(0x1b7)],'usage':a93p(0x1a6),'shortDesc':'Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','examples':[]},function(a,b){const q=a93p;try{let c=this[q(0x19b)][q(0x195)](q(0x193));b['env']&&(c=this[q(0x19b)][q(0x195)](b[q(0x19a)]));(!b['unit']||!!b['once'])&&(a=a['concat']([q(0x1b0)]));b[q(0x1ad)]&&delete b[q(0x1ad)];let d=b[q(0x19e)]||b[q(0x1c6)]||q(0x1b1);if(d===q(0x1b1)){const j=JSON['parse'](a93e[q(0x1a1)](a93f['join'](this[q(0x19b)]['findProjectDirectory'](),q(0x1ab),q(0x1bb)),'utf8'));if(j[q(0x1aa)][q(0x1b3)]==='jasmine')d='sanjo:jasmine';else j[q(0x1aa)][q(0x1b3)]===q(0x19c)&&(d='meteortesting:mocha');}if(d===q(0x1b1))throw q(0x1b5);(!b['driver-package']||!b['driver'])&&(a=a['concat']([q(0x1af),d]));const f=a93f[q(0x1bc)](c,q(0x1a3));this[q(0x19b)][q(0x1c7)](f)?(Log[q(0x1a2)](q(0x1a7)+f),a=a[q(0x1c3)]([q(0x1c0),f])):Log['warn'](q(0x1c2)+f);const g=a93f[q(0x1bc)](c,q(0x194));this[q(0x19b)]['isFile'](g)?(Log['notice']('Node\x20Env\x20Config:\x20'+g),syncSource(g)):Log[q(0x1b8)](q(0x1c1)+g);const h=process[q(0x1b9)][q(0x1ae)](0x2)[q(0x1a4)](k=>k!==q(0x1b4))[q(0x1a4)](k=>k!==q(0x1b3))[q(0x1a4)](k=>k!==a[0x0]);h['forEach']((k,l)=>{const r=q;(k===r(0x1b4)||k==='--driver')&&h['splice'](l,0x2),k==='--packages'&&h[r(0x1cb)](l,0x1);});const i=b['packages']?q(0x19d):q(0x1b3);this[q(0x19b)][q(0x1c4)](i,a[q(0x1c3)](h));}catch(k){console[q(0x1a0)](k),process[q(0x1c8)](0x0);}});
1
+ const a93q=a93d;(function(a,b){const m=a93d,c=a();while(!![]){try{const d=parseInt(m(0x85))/0x1+-parseInt(m(0x81))/0x2*(parseInt(m(0x84))/0x3)+parseInt(m(0x94))/0x4+-parseInt(m(0x87))/0x5+-parseInt(m(0xa2))/0x6*(-parseInt(m(0x74))/0x7)+parseInt(m(0x72))/0x8*(parseInt(m(0x9a))/0x9)+parseInt(m(0x8a))/0xa*(-parseInt(m(0x8b))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a93c,0x279f9));const a93b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a93d;if(c){const e=c[n(0xa8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a93a=a93b(this,function(){const o=a93d;return a93a[o(0xa4)]()['search'](o(0x8f))[o(0xa4)]()[o(0x6f)](a93a)[o(0x99)](o(0x8f));});a93a();import a93e from'fs';import a93f from'path';import a93g from'dotenv';function a93c(){const t=['933055XUvvLg','Run\x20the\x20meteor\x20test\x20package,\x20either\x20Mocha\x20or\x20Jasmine.','port','30MEpDLt','2167473ygFOHb','concat','--full-app','.maka','(((.+)+)+)+$','Cannot\x20find\x20Node\x20Environment\x20File:\x20','utf8','development','forEach','1164060CLwHfQ','findProjectDirectory','config.json','test','none','search','18MYduMj','env','mocha','--driver-package','splice','packages','process.env','test-packages','318630XpZuEM','filter','toString','join','--env','Meteor\x20Settings:\x20','apply','meteortesting:mocha','inspect','warn','openSync','testAppPath','fsi','getAppConfigPath','--packages','constructor','notice','driver','1276480GNYVdJ','engines','7aSCcIb','readFileSync','invokeMeteorCommand','error','exit','config','sanjo:jasmine','Cannot\x20find\x20Meteor\x20Settings\x20File:\x20','maka\x20test\x20<opts>','This\x20project\x20does\x20not\x20have\x20a\x20test\x20driver\x20(mocha\x20or\x20jasmine)','parse','--driver','once','46694XTvXHU','unit','Node\x20Env\x20Config:\x20','3bSarkG','300144LgTjuN','driverPackage'];a93c=function(){return t;};return a93c();}function a93d(a,b){const c=a93c();return a93d=function(d,e){d=d-0x6b;let f=c[d];return f;},a93d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';const syncSource=function(a){const p=a93d;a93e[p(0xac)](a,'r'),a93g[p(0x79)]({'path':a});};Command['create']({'name':a93q(0x97),'mustBeInMakaProject':!![],'validOpts':[a93q(0x80),a93q(0x9f),a93q(0x71),a93q(0x86),a93q(0x82),a93q(0x9b),'rawLogs',a93q(0x89),a93q(0xaa),a93q(0x6b)],'usage':a93q(0x7c),'shortDesc':a93q(0x88),'examples':[]},function(a,b){const r=a93q;try{let c=this['fsi'][r(0x6d)](r(0x92));b['env']&&(c=this['fsi'][r(0x6d)](b[r(0x9b)]));(!b[r(0x82)]||!!b['once'])&&(a=a['concat']([r(0x8d)]));b['unit']&&delete b['unit'];let d=b['driver-package']||b[r(0x71)]||r(0x98);if(d===r(0x98)){const j=JSON[r(0x7e)](a93e[r(0x75)](a93f['join'](this[r(0x6c)][r(0x95)](),r(0x8e),r(0x96)),r(0x91)));if(j['engines'][r(0x97)]==='jasmine')d=r(0x7a);else j[r(0x73)][r(0x97)]===r(0x9c)&&(d=r(0xa9));}if(d===r(0x98))throw r(0x7d);(!b['driver-package']||!b[r(0x71)])&&(a=a[r(0x8c)]([r(0x9d),d]));const f=a93f[r(0xa5)](c,'settings.json');this[r(0x6c)]['isFile'](f)?(Log[r(0x70)](r(0xa7)+f),a=a[r(0x8c)](['--settings',f])):Log[r(0xab)](r(0x7b)+f);const g=a93f[r(0xa5)](c,r(0xa0));this[r(0x6c)]['isFile'](g)?(Log['notice'](r(0x83)+g),syncSource(g)):Log[r(0xab)](r(0x90)+g);const h=process['argv']['slice'](0x2)[r(0xa3)](k=>k!==r(0xa6))[r(0xa3)](k=>k!==r(0x97))['filter'](k=>k!==a[0x0]);h[r(0x93)]((k,l)=>{const s=r;(k===s(0xa6)||k===s(0x7f))&&h[s(0x9e)](l,0x2),k===s(0x6e)&&h[s(0x9e)](l,0x1);});const i=b[r(0x9f)]?r(0xa1):r(0x97);this['fsi'][r(0x76)](i,a[r(0x8c)](h));}catch(k){console[r(0x77)](k),process[r(0x78)](0x0);}});
@@ -1 +1 @@
1
- const a94m=a94d;(function(a,b){const k=a94d,c=a();while(!![]){try{const d=parseInt(k(0x150))/0x1+parseInt(k(0x142))/0x2+-parseInt(k(0x130))/0x3*(-parseInt(k(0x137))/0x4)+-parseInt(k(0x133))/0x5+parseInt(k(0x151))/0x6+parseInt(k(0x14a))/0x7+-parseInt(k(0x158))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0x66ee5));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(0x143)](l(0x12d))[l(0x14e)]()[l(0x139)](a94a)[l(0x143)]('(((.+)+)+)+$');});a94a();function a94c(){const o=[')\x20to\x20at\x20least\x20meteor\x27s\x20(','node\x20-v','15017584uZLHWu','platform','compareMakaToLatest','(((.+)+)+)+$','replace','N/A','3buozNd','create','win32','1381995uBzIUL','verbose','maka\x20version\x20--verbose','version','3153148JLQBGr','majestic','constructor','meteor','bright','isMakaProject','warn','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20','\x20node\x20-v','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','Project\x27s\x20Meteor\x20Node\x20Version\x20','1094414oMlZRP','search','----------------------System----------------------------','\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.','getGlobalMeteorVersion','maka\x20version','maka\x20v','----------------------Project----------------------------','3262266sGvYsX','exit','meteor.bat','getProjectsMeteorNodeVersion','toString','notice','367059FeuZBX','2439666mIXHSm','fsi','Project\x27s\x20Meteor\x20Version\x20','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','System\x27s\x20Node\x20Version\x20'];a94c=function(){return o;};return a94c();}function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x12b;let f=c[d];return f;},a94d(a,b);}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.5'};Command[a94m(0x131)]({'name':a94m(0x136),'aliases':['v'],'usage':a94m(0x147),'maxArgLength':0x1,'validOpts':[a94m(0x134)],'shortDesc':'Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','examples':[a94m(0x148),a94m(0x147),a94m(0x135)],'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[n(0x12b)]===n(0x132)?n(0x14c):n(0x13a);Log[n(0x138)]('Maka\x20'+pjson[n(0x136)]),await this['fsi'][n(0x12c)]();if(b[n(0x134)]){await this[n(0x152)][n(0x12c)](),Log[n(0x13b)](n(0x144));const d=this[n(0x152)][n(0x146)]();Log[n(0x13b)](('System\x27s\x20Meteor\x20Version\x20'+d)[n(0x12e)]('\x0a',''));const f=execSync(c+n(0x13f))['toString']()['replace'](/\r?\n|\r/,'')[n(0x12e)]('v','');Log[n(0x13b)](n(0x154)+f);const g=execSync(n(0x157))[n(0x14e)]()[n(0x12e)](/\r?\n|\r/,'')['replace']('v','');a94e['gt'](f,g)?(Log[n(0x13d)](n(0x155)+g),Log[n(0x13d)](n(0x140)+g+n(0x156)+f+')')):Log[n(0x13b)](n(0x155)+g);if(this[n(0x152)][n(0x13c)]()){Log[n(0x13b)](n(0x149));const h=this[n(0x152)]['getProjectMeteorVersion']();a94e['gt'](d,h)?(Log[n(0x13d)](n(0x153)+h[n(0x12e)]('\x0a','')),Log[n(0x13d)](n(0x13e)+d+'\x22')):Log[n(0x14f)]((n(0x153)+h)[n(0x12e)]('\x0a',''));const i=await this['fsi'][n(0x14d)]();i===n(0x12f)?(Log[n(0x13d)](n(0x141)+i),Log[n(0x13d)](n(0x145))):Log[n(0x13b)](n(0x141)+i),Log[n(0x13b)]('\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');}}}catch(j){console['error'](j),process[n(0x14b)](0x0);}});
1
+ const a94m=a94d;(function(a,b){const k=a94d,c=a();while(!![]){try{const d=parseInt(k(0x11e))/0x1*(-parseInt(k(0x119))/0x2)+-parseInt(k(0x109))/0x3+parseInt(k(0x132))/0x4+parseInt(k(0x122))/0x5*(parseInt(k(0x130))/0x6)+parseInt(k(0x108))/0x7*(parseInt(k(0x125))/0x8)+parseInt(k(0x106))/0x9+-parseInt(k(0x10e))/0xa*(parseInt(k(0x115))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a94c,0x6aa5f));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(0x128)]('(((.+)+)+)+$')['toString']()[l(0x12c)](a94a)[l(0x128)](l(0x10a));});a94a();function a94c(){const o=['getProjectMeteorVersion','55BeHROm','version','bright','majestic','26JfHVCu','node\x20-v','\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','System\x27s\x20Meteor\x27s\x20Node\x20Version\x20','toString','22307aseuzy','getProjectsMeteorNodeVersion','Project\x27s\x20Meteor\x20Node\x20Version\x20','fsi','1088725ItAZfb','verbose','meteor.bat','72nopmPy','replace','compareMakaToLatest','search','\x20!\x20consider\x20updating\x20your\x20node\x20version\x20(','maka\x20version','Maka\x20','constructor','warn','maka\x20version\x20--verbose','Return\x20the\x20version\x20of\x20Maka,\x20Meteor,\x20and\x20the\x20Node\x20version\x20of\x20Meteor.','6UZRyxg','create','1800028pmEMYC','6654708NsOIxv','4.7.7','590947SqeaLB','2357103eQiULW','(((.+)+)+)+$','notice','System\x27s\x20Node\x20Version\x20','----------------------Project----------------------------','1308860lDdBIy','win32','getGlobalMeteorVersion','Project\x27s\x20Meteor\x20Version\x20','isMakaProject','\x20!\x20consider\x20updating\x20your\x20project\x27s\x20meteor\x20version\x20with\x20\x22maka\x20update\x20--release\x20'];a94c=function(){return o;};return a94c();}function a94d(a,b){const c=a94c();return a94d=function(d,e){d=d-0x106;let f=c[d];return f;},a94d(a,b);}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':a94m(0x107)};Command[a94m(0x131)]({'name':a94m(0x116),'aliases':['v'],'usage':a94m(0x12a),'maxArgLength':0x1,'validOpts':[a94m(0x123)],'shortDesc':a94m(0x12f),'examples':['maka\x20v',a94m(0x12a),a94m(0x12e)],'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(0x10f)?n(0x124):'meteor';Log[n(0x118)](n(0x12b)+pjson[n(0x116)]),await this[n(0x121)][n(0x127)]();if(b[n(0x123)]){await this[n(0x121)][n(0x127)](),Log[n(0x117)]('----------------------System----------------------------');const d=this[n(0x121)][n(0x110)]();Log[n(0x117)](('System\x27s\x20Meteor\x20Version\x20'+d)[n(0x126)]('\x0a',''));const f=execSync(c+'\x20node\x20-v')[n(0x11d)]()['replace'](/\r?\n|\r/,'')[n(0x126)]('v','');Log[n(0x117)](n(0x11c)+f);const g=execSync(n(0x11a))[n(0x11d)]()[n(0x126)](/\r?\n|\r/,'')[n(0x126)]('v','');a94e['gt'](f,g)?(Log[n(0x12d)](n(0x10c)+g),Log['warn'](n(0x129)+g+')\x20to\x20at\x20least\x20meteor\x27s\x20('+f+')')):Log[n(0x117)]('System\x27s\x20Node\x20Version\x20'+g);if(this[n(0x121)][n(0x112)]()){Log[n(0x117)](n(0x10d));const h=this[n(0x121)][n(0x114)]();a94e['gt'](d,h)?(Log['warn'](n(0x111)+h['replace']('\x0a','')),Log[n(0x12d)](n(0x113)+d+'\x22')):Log[n(0x10b)](('Project\x27s\x20Meteor\x20Version\x20'+h)[n(0x126)]('\x0a',''));const i=await this[n(0x121)][n(0x11f)]();i==='N/A'?(Log[n(0x12d)](n(0x120)+i),Log[n(0x12d)]('\x20!\x20Cannot\x20find\x20this\x20project\x27s\x20node\x20version\x20because\x20this\x20project\x20has\x20never\x20been\x20run.')):Log[n(0x117)](n(0x120)+i),Log['bright'](n(0x11b));}}}catch(j){console['error'](j),process['exit'](0x0);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a95d,c=a();while(!![]){try{var d=-parseInt(f(0x88))/0x1*(-parseInt(f(0x83))/0x2)+-parseInt(f(0x85))/0x3+-parseInt(f(0x80))/0x4*(parseInt(f(0x7f))/0x5)+parseInt(f(0x7c))/0x6+-parseInt(f(0x7e))/0x7+parseInt(f(0x86))/0x8*(-parseInt(f(0x82))/0x9)+parseInt(f(0x87))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0xce65e));function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0x7c;var f=c[d];return f;},a95d(a,b);}var a95b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a95d;if(c){var e=c[g(0x7d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a95a=a95b(this,function(){var h=a95d;return a95a['toString']()['search'](h(0x84))[h(0x89)]()['constructor'](a95a)[h(0x81)](h(0x84));});a95a();export class UsageError{}export class UsageErrorWithSubs{}function a95c(){var i=['2562707BDcdon','369860tAVRBJ','64XGVild','search','9OdkEqd','2aIAlsa','(((.+)+)+)+$','2125539QyPtLq','3340216PjYQzK','20348580MMhUDY','330191WglKLU','toString','6936300QoPCzj','apply'];a95c=function(){return i;};return a95c();}export class MustBeInProjectError{}export class NoMeteorAppFoundError{}export class NoMeteorFoundError{}
1
+ function a95c(){var i=['16DjlKbU','14986ETvlZx','toString','126rIAzHI','53272BeWsUw','constructor','27mDvAtv','(((.+)+)+)+$','search','apply','796985EOTVuu','24440nBZiEG','4048620jYZnVm','177846SHBYdH','1093362jkAWwS'];a95c=function(){return i;};return a95c();}(function(a,b){var f=a95d,c=a();while(!![]){try{var d=-parseInt(f(0x84))/0x1+parseInt(f(0x78))/0x2*(parseInt(f(0x7d))/0x3)+-parseInt(f(0x77))/0x4*(parseInt(f(0x82))/0x5)+-parseInt(f(0x76))/0x6+parseInt(f(0x81))/0x7+parseInt(f(0x7b))/0x8*(-parseInt(f(0x7a))/0x9)+parseInt(f(0x83))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a95c,0x1ba97));var a95b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a95d;if(c){var e=c[g(0x80)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a95a=a95b(this,function(){var h=a95d;return a95a[h(0x79)]()[h(0x7f)](h(0x7e))['toString']()[h(0x7c)](a95a)[h(0x7f)](h(0x7e));});a95a();export class UsageError{}function a95d(a,b){var c=a95c();return a95d=function(d,e){d=d-0x76;var f=c[d];return f;},a95d(a,b);}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 a96c(){var i=['constructor','1992016CwSHoA','232439Jbwypk','90zGmRJE','toString','search','4152310Ppggkv','env','(((.+)+)+)+$','54355ZcXytF','12azqHub','16636pIIEZZ','4255712rhUqON','6236295BSFeBA','828xQHCiV'];a96c=function(){return i;};return a96c();}(function(a,b){var f=a96d,c=a();while(!![]){try{var d=parseInt(f(0xc4))/0x1+parseInt(f(0xbe))/0x2*(parseInt(f(0xcc))/0x3)+-parseInt(f(0xbf))/0x4+-parseInt(f(0xc0))/0x5+-parseInt(f(0xc1))/0x6*(parseInt(f(0xcb))/0x7)+-parseInt(f(0xc3))/0x8+-parseInt(f(0xc5))/0x9*(-parseInt(f(0xc8))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a96c,0xbff56));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['toString']()[g(0xc7)](g(0xca))[g(0xc6)]()[g(0xc2)](a96a)['search'](g(0xca));});function a96d(a,b){var c=a96c();return a96d=function(d,e){d=d-0xbe;var f=c[d];return f;},a96d(a,b);}a96a(),process[a96h(0xc9)]['NODE_OPTIONS']='--experimental-modules\x20--no-warnings\x20--experimental-json-modules';import'./maka.js';
2
+ function a96c(){var j=['toString','63ycYNZm','274682ImyQMe','constructor','search','753696hLcMfH','NODE_OPTIONS','9YQyFQf','382728rQNlvg','12fksICO','(((.+)+)+)+$','--experimental-modules\x20--no-warnings\x20--experimental-json-modules','20tgLUns','9264IxVRft','apply','env','2194450buqXpb','9843537JAMnws','210363EOzAKA'];a96c=function(){return j;};return a96c();}var a96i=a96d;function a96d(a,b){var c=a96c();return a96d=function(d,e){d=d-0x1e1;var f=c[d];return f;},a96d(a,b);}(function(a,b){var f=a96d,c=a();while(!![]){try{var d=parseInt(f(0x1e9))/0x1+-parseInt(f(0x1ec))/0x2+-parseInt(f(0x1e4))/0x3*(-parseInt(f(0x1f3))/0x4)+parseInt(f(0x1e3))/0x5*(-parseInt(f(0x1ef))/0x6)+-parseInt(f(0x1eb))/0x7*(parseInt(f(0x1f2))/0x8)+-parseInt(f(0x1f1))/0x9*(-parseInt(f(0x1e7))/0xa)+parseInt(f(0x1e8))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a96c,0x4058d));var a96b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a96d;if(c){var e=c[g(0x1e5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a96a=a96b(this,function(){var h=a96d;return a96a[h(0x1ea)]()[h(0x1ee)](h(0x1e1))[h(0x1ea)]()[h(0x1ed)](a96a)[h(0x1ee)](h(0x1e1));});a96a(),process[a96i(0x1e6)][a96i(0x1f0)]=a96i(0x1e2);import'./maka.js';
@@ -1 +1 @@
1
- const a97u=a97d;(function(a,b){const q=a97d,c=a();while(!![]){try{const d=-parseInt(q(0x18c))/0x1+parseInt(q(0x152))/0x2*(-parseInt(q(0x17b))/0x3)+parseInt(q(0x13f))/0x4+-parseInt(q(0x136))/0x5+parseInt(q(0x12d))/0x6+-parseInt(q(0x130))/0x7*(-parseInt(q(0x128))/0x8)+-parseInt(q(0x145))/0x9*(parseInt(q(0x168))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a97c,0x93187));const a97b=(function(){let a=!![];return function(b,c){const d=a?function(){const r=a97d;if(c){const e=c[r(0x13e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a97a=a97b(this,function(){const s=a97d;return a97a[s(0x141)]()['search'](s(0x132))[s(0x141)]()[s(0x12e)](a97a)[s(0x16d)]('(((.+)+)+)+$');});function a97c(){const F=['toString','both','validateEngines','maxArgLength','75078SNpDce','name','length','assign','addGenerator','listGenerators','processAndRunGenerator','bright','Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly','minOptsLength','Name','sort','_handler','44006BaQbNi','_generators','handleGenerateError','tableList','Too\x20many\x20options','shortDesc','validateMakaSubscription','Too\x20few\x20options','Generator.create\x20requires\x20some\x20options!','aliases','DARK','resourceName','notice','client','minArgLength','appPathPrefix','slice','checkWhere','--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27','forEach','Generator.create\x20requires\x20a\x20handler\x20function!','mustHaveMeteorInstalled','560ENYVHQ','create','find','push','Description','search','Please\x20run\x20\x22maka\x20install\x20meteor\x22','Alias','maxOptsLength','function','exit','Server','includes','mustBeInMakaProject','replace','validateMeteorInstall','Generators:','findProjectDirectory','validateParams','15IqUFlg','LIGHT','No\x20resource\x20name\x20specified','invoke','setColorMode','light','requiredEngines','bind','where','Both','call','Generator\x20requires\x20a\x20name','cwd','You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator','fsi','pallet','Generator\x20requires\x20a\x20handler\x20function','141709VGHcmy','dir','1930576lUmEVg','number','server','error','help','2960934QuJOKN','constructor','chdir','14EJBfRg','sep','(((.+)+)+)+$','join','Too\x20few\x20arguments','keys','426555yLRDsc','validateMakaProject','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','Location','Too\x20many\x20arguments','Generator\x20','usage','Client','apply','1722228hwHVxB','options'];a97c=function(){return F;};return a97c();}a97a();import a97e from'path';function a97d(a,b){const c=a97c();return a97d=function(d,e){d=d-0x128;let f=c[d];return f;},a97d(a,b);}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';let _prevGen='';async function inside(a='.',b){const t=a97d,c=process['cwd']();let d=null;try{process[t(0x12f)](a),d=await b();}finally{process[t(0x12f)](c);}return d;}export class Generator extends Tool{['options'];[a97u(0x153)];constructor(a,b){const v=a97u;super();if(!a)throw new Error(v(0x138));if(!a[v(0x146)])throw new Error(v(0x186));if(typeof b!==v(0x171))throw new Error(v(0x18b));this[v(0x153)]=[],this[v(0x140)]=Object[v(0x148)]({},a),this['name']=this[v(0x140)][v(0x146)],this[v(0x151)]=b[v(0x182)](this);}static[a97u(0x169)](a,b,c){const w=a97u;if(!a)throw new Error(w(0x15a));if(typeof b!==w(0x171))throw new Error(w(0x166));const d=new Generator(a,b);return c=c||a97g,Object['assign'](d,{'parent':c?.[w(0x140)]?.[w(0x146)]}),c[w(0x149)](d),d;}[a97u(0x149)](a){const x=a97u;if(!(a instanceof Generator))throw new Error('addGenerator\x20requires\x20a\x20Generator\x20instance');this['_generators'][x(0x16b)](a);}async[a97u(0x14b)](a,b=[],c={}){const y=a97u;let d;try{const f=a?.['split'](':');if(!f||f[y(0x147)]===0x0)throw'Generator\x20format\x20is\x20incorrect';let g=this['_generators'],h;for(const i of f){h=g[y(0x16a)](j=>j['match'](i));if(!h)throw y(0x13b)+i+'\x20not\x20found';await this[y(0x158)](h),g=h[y(0x153)];}if(h)d=await h[y(0x17e)](b,c);else throw'Generator\x20not\x20found';}catch(j){Log[y(0x12b)](j);}return d;}async[a97u(0x17e)](a,b){const z=a97u,c=a[z(0x162)]();b['resourceName']=c[0x0];try{const d=await this['fsi']['getGlobalConfig'](),f=d[z(0x18a)]===z(0x180)?ColorMode[z(0x17c)]:ColorMode[z(0x15c)];Log[z(0x17f)](f),await this[z(0x158)](this);const g=a[0x0]===_prevGen||a['length']===0x0&&this['_generators'][z(0x147)]>=0x0,h=b[z(0x12c)]||b['h'];if(g&&h){if(this['_generators']['length']>0x0)throw new UsageErrorWithSubs();throw new UsageError();}if(!h){if(this[z(0x140)][z(0x175)]){const i=this[z(0x137)]();if(!i)throw new MustBeInProjectError();}if(this['options'][z(0x167)]){const j=this[z(0x177)]();if(!j)throw new NoMeteorFoundError();}if(typeof this[z(0x140)][z(0x160)]===z(0x129)){if(a[z(0x147)]<this['options'][z(0x160)]){Log['error'](z(0x134));throw new UsageError();}}if(typeof this[z(0x140)][z(0x144)]===z(0x129)){if(a[z(0x147)]>this[z(0x140)][z(0x144)]){Log[z(0x12b)](z(0x13a));throw new UsageError();}}if(typeof this[z(0x140)]['minOptsLength']===z(0x129)){if(Object[z(0x135)](b)[z(0x147)]<this[z(0x140)][z(0x14e)]){Log['error'](z(0x159));throw new UsageError();}}if(typeof this[z(0x140)][z(0x170)]===z(0x129)){if(Object[z(0x135)](b)['length']>=this[z(0x140)][z(0x170)]){Log['error'](z(0x156));throw new UsageError();}}}this[z(0x140)]['requiredEngines']&&this[z(0x143)](this[z(0x140)][z(0x181)]);await this[z(0x17a)](a,b,this[z(0x140)]);if(!b[z(0x15d)]&&!this[z(0x140)]['noNeedResource']){Log[z(0x12b)](z(0x17d));throw new UsageError();}_prevGen=a[0x0];}catch(k){this[z(0x154)](k),process[z(0x172)](0x1);}return await inside(b[z(0x187)],async()=>{const A=z;try{if(!b['root']&&!this[A(0x189)][A(0x179)]())throw new MustBeInProjectError();const l=b[A(0x15d)]?.[A(0x176)](/\\/g,'/')['split']('/');!b[A(0x18d)]&&(l?.[A(0x147)]>0x1?(b[A(0x15d)]=l['pop'](),c[0x0]=b[A(0x15d)],b[A(0x18d)]=l['map'](m=>{return paramCase(m);})[A(0x133)](a97e[A(0x131)])):b[A(0x18d)]='');if(this[A(0x140)][A(0x163)]){if(!b['where']){const n={'type':'list','name':'colLocAnswer','message':A(0x139),'choices':[{'name':A(0x13d),'value':A(0x15f)},{'name':A(0x173),'value':A(0x12a)},{'name':A(0x184),'value':A(0x142)}]},{colLocAnswer:o}=await Actions['options'](n);o?b['where']=o:b[A(0x183)]=A(0x142);}const m=['both',A(0x15f),A(0x12a)];if(!m[A(0x174)](b[A(0x183)])){Log['error'](A(0x164));throw new UsageError();}switch(b[A(0x183)]){case A(0x142):b[A(0x161)]='lib';break;case'server':b['appPathPrefix']='server';break;case A(0x15f):b[A(0x161)]='client';break;default:b[A(0x161)]='';}}return await this[A(0x151)][A(0x185)](this,c,b);}catch(p){this[A(0x154)](p);}});}[a97u(0x14a)](){const B=a97u;this[B(0x155)](this[B(0x153)]);}[a97u(0x154)](a){const C=a97u,{usage:usage='',description:description='',examples:examples=[],shortDesc:b,requiredOpts:requiredOpts=[],validOpts:c}=this[C(0x140)];Log[C(0x13c)](description,examples,usage,b,requiredOpts,c);if(a instanceof UsageErrorWithSubs)Log[C(0x15e)](C(0x178)),this[C(0x155)](this[C(0x153)]);else{if(a instanceof MustBeInProjectError)Log['error'](C(0x188));else{if(a instanceof NoMeteorFoundError)Log['error'](C(0x14d)),Log['notice'](C(0x16e));else a instanceof NoMeteorAppFoundError&&Log['error']('There\x20is\x20no\x20Meteor\x20application\x20here');}}}[a97u(0x155)](a){const D=a97u,b=new a97f({});b[D(0x16b)]([D(0x14f),D(0x16f),D(0x16c)]),a[D(0x150)]()[D(0x165)](c=>{const E=D;b[E(0x16b)]([c[E(0x146)],c[E(0x15b)](),c[E(0x157)]()]);}),Log[D(0x14c)](b[D(0x141)]());}}
1
+ const a97u=a97d;(function(a,b){const q=a97d,c=a();while(!![]){try{const d=-parseInt(q(0x1a2))/0x1*(-parseInt(q(0x170))/0x2)+parseInt(q(0x18a))/0x3*(-parseInt(q(0x19b))/0x4)+parseInt(q(0x16b))/0x5*(parseInt(q(0x1ba))/0x6)+-parseInt(q(0x1ad))/0x7+-parseInt(q(0x179))/0x8*(parseInt(q(0x181))/0x9)+-parseInt(q(0x1c1))/0xa+parseInt(q(0x1c9))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a97c,0xc8560));function a97c(){const E=['number','assign','join','noNeedResource','chdir','toString','16143970xhAUTO','validateEngines','keys','error','Both','Please\x20run\x20\x22maka\x20install\x20meteor\x22','mustHaveMeteorInstalled','validateParams','29903302ooitZO','Location','(((.+)+)+)+$','replace','Generator.create\x20requires\x20a\x20handler\x20function!','pallet','where','sort','minArgLength','25QtyBIP','requiredEngines','handleGenerateError','aliases','maxArgLength','685510wctsTI','There\x20is\x20no\x20Meteor\x20application\x20here','Too\x20many\x20arguments','--where\x20must\x20be\x20\x27both\x27,\x20\x27client\x27\x20or\x20\x27server\x27','resourceName','cwd','addGenerator','push','Generator\x20not\x20found','686200bGmCtN','maxOptsLength','invoke','colLocAnswer','Generators:','apply','validateMakaProject','slice','9uVOOLZ','checkWhere','bind','Too\x20many\x20options','includes','Generator\x20requires\x20a\x20name','length','match','Too\x20few\x20arguments','9DWqDDt','Client','Too\x20few\x20options','notice','usage','Meteor\x20could\x20not\x20be\x20found\x20or\x20it\x20is\x20not\x20installed\x20correctly','validateMakaSubscription','constructor','server','root','options','Description','pop','Alias','find','search','processAndRunGenerator','1642240BLQNHk','split','sep','No\x20resource\x20name\x20specified','help','client','getGlobalConfig','1tDHpMt','lib','forEach','mustBeInMakaProject','Generator\x20requires\x20first\x20param\x20to\x20be\x20an\x20object','Name','light','fsi','map','appPathPrefix','name','616238gxflHJ','list','minOptsLength','addGenerator\x20requires\x20a\x20Generator\x20instance','setColorMode','Generator\x20format\x20is\x20incorrect','\x20not\x20found','_generators','shortDesc','listGenerators','_handler','LIGHT','DARK','935070NtRvTl'];a97c=function(){return E;};return a97c();}const a97b=(function(){let a=!![];return function(b,c){const d=a?function(){const r=a97d;if(c){const e=c[r(0x17e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a97a=a97b(this,function(){const s=a97d;return a97a[s(0x1c0)]()['search']('(((.+)+)+)+$')[s(0x1c0)]()[s(0x191)](a97a)[s(0x199)](s(0x1cb));});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-0x16b;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[t(0x175)]();let d=null;try{process[t(0x1bf)](a),d=await b();}finally{process[t(0x1bf)](c);}return d;}export class Generator extends Tool{[a97u(0x194)];[a97u(0x1b4)];constructor(a,b){const v=a97u;super();if(!a)throw new Error(v(0x1a6));if(!a[v(0x1ac)])throw new Error(v(0x186));if(typeof b!=='function')throw new Error('Generator\x20requires\x20a\x20handler\x20function');this[v(0x1b4)]=[],this['options']=Object[v(0x1bc)]({},a),this[v(0x1ac)]=this[v(0x194)][v(0x1ac)],this['_handler']=b[v(0x183)](this);}static['create'](a,b,c){const w=a97u;if(!a)throw new Error('Generator.create\x20requires\x20some\x20options!');if(typeof b!=='function')throw new Error(w(0x1cd));const d=new Generator(a,b);return c=c||a97g,Object[w(0x1bc)](d,{'parent':c?.[w(0x194)]?.[w(0x1ac)]}),c[w(0x176)](d),d;}['addGenerator'](a){const x=a97u;if(!(a instanceof Generator))throw new Error(x(0x1b0));this[x(0x1b4)][x(0x177)](a);}async[a97u(0x19a)](a,b=[],c={}){const y=a97u;let d;try{const f=a?.[y(0x19c)](':');if(!f||f[y(0x187)]===0x0)throw y(0x1b2);let g=this[y(0x1b4)],h;for(const i of f){h=g[y(0x198)](j=>j[y(0x188)](i));if(!h)throw'Generator\x20'+i+y(0x1b3);await this[y(0x190)](h),g=h['_generators'];}if(h)d=await h[y(0x17b)](b,c);else throw y(0x178);}catch(j){Log[y(0x1c4)](j);}return d;}async[a97u(0x17b)](a,b){const z=a97u,c=a[z(0x180)]();b[z(0x174)]=c[0x0];try{const d=await this[z(0x1a9)][z(0x1a1)](),f=d[z(0x1ce)]===z(0x1a8)?ColorMode[z(0x1b8)]:ColorMode[z(0x1b9)];Log[z(0x1b1)](f),await this[z(0x190)](this);const g=a[0x0]===_prevGen||a[z(0x187)]===0x0&&this[z(0x1b4)]['length']>=0x0,h=b[z(0x19f)]||b['h'];if(g&&h){if(this[z(0x1b4)][z(0x187)]>0x0)throw new UsageErrorWithSubs();throw new UsageError();}if(!h){if(this[z(0x194)][z(0x1a5)]){const i=this[z(0x17f)]();if(!i)throw new MustBeInProjectError();}if(this[z(0x194)][z(0x1c7)]){const j=this['validateMeteorInstall']();if(!j)throw new NoMeteorFoundError();}if(typeof this[z(0x194)][z(0x1d1)]===z(0x1bb)){if(a[z(0x187)]<this[z(0x194)][z(0x1d1)]){Log[z(0x1c4)](z(0x189));throw new UsageError();}}if(typeof this[z(0x194)][z(0x16f)]===z(0x1bb)){if(a[z(0x187)]>this['options'][z(0x16f)]){Log['error'](z(0x172));throw new UsageError();}}if(typeof this[z(0x194)][z(0x1af)]===z(0x1bb)){if(Object[z(0x1c3)](b)[z(0x187)]<this[z(0x194)][z(0x1af)]){Log[z(0x1c4)](z(0x18c));throw new UsageError();}}if(typeof this[z(0x194)][z(0x17a)]==='number'){if(Object['keys'](b)['length']>=this[z(0x194)][z(0x17a)]){Log[z(0x1c4)](z(0x184));throw new UsageError();}}}this['options']['requiredEngines']&&this[z(0x1c2)](this['options'][z(0x16c)]);await this[z(0x1c8)](a,b,this['options']);if(!b[z(0x174)]&&!this[z(0x194)][z(0x1be)]){Log[z(0x1c4)](z(0x19e));throw new UsageError();}_prevGen=a[0x0];}catch(k){this[z(0x16d)](k),process['exit'](0x1);}return await inside(b['cwd'],async()=>{const A=z;try{if(!b[A(0x193)]&&!this[A(0x1a9)]['findProjectDirectory']())throw new MustBeInProjectError();const l=b[A(0x174)]?.[A(0x1cc)](/\\/g,'/')[A(0x19c)]('/');!b['dir']&&(l?.['length']>0x1?(b['resourceName']=l[A(0x196)](),c[0x0]=b[A(0x174)],b['dir']=l[A(0x1aa)](m=>{return paramCase(m);})[A(0x1bd)](a97e[A(0x19d)])):b['dir']='');if(this[A(0x194)][A(0x182)]){if(!b[A(0x1cf)]){const n={'type':A(0x1ae),'name':A(0x17c),'message':A(0x1ca),'choices':[{'name':A(0x18b),'value':A(0x1a0)},{'name':'Server','value':A(0x192)},{'name':A(0x1c5),'value':'both'}]},{colLocAnswer:o}=await Actions[A(0x194)](n);o?b[A(0x1cf)]=o:b[A(0x1cf)]='both';}const m=['both',A(0x1a0),A(0x192)];if(!m[A(0x185)](b[A(0x1cf)])){Log[A(0x1c4)](A(0x173));throw new UsageError();}switch(b[A(0x1cf)]){case'both':b[A(0x1ab)]=A(0x1a3);break;case'server':b[A(0x1ab)]=A(0x192);break;case A(0x1a0):b[A(0x1ab)]=A(0x1a0);break;default:b[A(0x1ab)]='';}}return await this[A(0x1b7)]['call'](this,c,b);}catch(p){this[A(0x16d)](p);}});}[a97u(0x1b6)](){this['tableList'](this['_generators']);}['handleGenerateError'](a){const B=a97u,{usage:usage='',description:description='',examples:examples=[],shortDesc:b,requiredOpts:requiredOpts=[],validOpts:c}=this[B(0x194)];Log[B(0x18e)](description,examples,usage,b,requiredOpts,c);if(a instanceof UsageErrorWithSubs)Log[B(0x18d)](B(0x17d)),this['tableList'](this[B(0x1b4)]);else{if(a instanceof MustBeInProjectError)Log[B(0x1c4)]('You\x20must\x20be\x20in\x20an\x20maka\x20project\x20to\x20run\x20this\x20generator');else{if(a instanceof NoMeteorFoundError)Log[B(0x1c4)](B(0x18f)),Log['notice'](B(0x1c6));else a instanceof NoMeteorAppFoundError&&Log[B(0x1c4)](B(0x171));}}}['tableList'](a){const C=a97u,b=new a97f({});b['push']([C(0x1a7),C(0x197),C(0x195)]),a[C(0x1d0)]()[C(0x1a4)](c=>{const D=C;b[D(0x177)]([c[D(0x1ac)],c[D(0x16e)](),c[D(0x1b5)]()]);}),Log['bright'](b[C(0x1c0)]());}}
@@ -1 +1 @@
1
- (function(a,b){var f=a98d,c=a();while(!![]){try{var d=parseInt(f(0x156))/0x1+parseInt(f(0x14a))/0x2*(-parseInt(f(0x153))/0x3)+-parseInt(f(0x157))/0x4*(-parseInt(f(0x14d))/0x5)+-parseInt(f(0x14e))/0x6+parseInt(f(0x154))/0x7*(-parseInt(f(0x152))/0x8)+-parseInt(f(0x14b))/0x9*(parseInt(f(0x14f))/0xa)+-parseInt(f(0x151))/0xb*(-parseInt(f(0x159))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a98c,0x4eb6c));var a98b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a98d;if(c){var e=c[g(0x150)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a98a=a98b(this,function(){var h=a98d;return a98a['toString']()[h(0x155)]('(((.+)+)+)+$')[h(0x158)]()[h(0x14c)](a98a)[h(0x155)]('(((.+)+)+)+$');});a98a();import'./services/_index.js';import'./api.js';import'./collection.js';import'./component.js';import'./config.js';import'./dbc.js';import'./hook.js';function a98c(){var i=['545123ulBmbS','560ANyRng','toString','1860usAnVz','2006vJcqdF','190656krLWfI','constructor','17180AQDksj','2004300ZQdLwz','140mErBOE','apply','30239LGozLx','1216XNWuFr','588tsthVZ','13937fXMJBh','search'];a98c=function(){return i;};return a98c();}import'./kits/_index.js';import'./layout.js';import'./methods.js';import'./package.js';import'./publish.js';import'./route.js';import'./service.js';function a98d(a,b){var c=a98c();return a98d=function(d,e){d=d-0x14a;var f=c[d];return f;},a98d(a,b);}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(0x1cf))/0x1+parseInt(f(0x1cb))/0x2+-parseInt(f(0x1c9))/0x3*(parseInt(f(0x1c1))/0x4)+parseInt(f(0x1c3))/0x5*(-parseInt(f(0x1ca))/0x6)+-parseInt(f(0x1cc))/0x7*(parseInt(f(0x1c5))/0x8)+parseInt(f(0x1d0))/0x9*(-parseInt(f(0x1c8))/0xa)+parseInt(f(0x1c4))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a98c,0xdaf96));var a98b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a98d;if(c){var e=c[g(0x1c6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a98a=a98b(this,function(){var h=a98d;return a98a[h(0x1cd)]()[h(0x1c2)](h(0x1c7))['toString']()[h(0x1ce)](a98a)[h(0x1c2)]('(((.+)+)+)+$');});a98a();import'./services/_index.js';import'./api.js';import'./collection.js';import'./component.js';import'./config.js';import'./dbc.js';function a98c(){var i=['1847706xJvgAz','518wSmDca','toString','constructor','252590MAbLGp','9WwTQre','52juRJrN','search','483110yRgAgj','28840999jJlwWP','40232WurEav','apply','(((.+)+)+)+$','2852510XbanjB','245193hKNhFA','42enVsbH'];a98c=function(){return i;};return a98c();}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';function a98d(a,b){var c=a98c();return a98d=function(d,e){d=d-0x1c1;var f=c[d];return f;},a98d(a,b);}import'./maka.gen.js';