@maka/maka-cli 4.9.10 → 4.9.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/bundle/obf/package.json +1 -2
  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/patreon.js +1 -1
  84. package/bundle/obf/src/commands/proxy.js +1 -1
  85. package/bundle/obf/src/commands/reconfig.js +1 -1
  86. package/bundle/obf/src/commands/register.js +1 -1
  87. package/bundle/obf/src/commands/run/_index.js +1 -1
  88. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  89. package/bundle/obf/src/commands/run/run.command.js +1 -1
  90. package/bundle/obf/src/commands/set/_index.js +1 -1
  91. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  92. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  93. package/bundle/obf/src/commands/set/set.command.js +1 -1
  94. package/bundle/obf/src/commands/ssh.js +1 -1
  95. package/bundle/obf/src/commands/ssl.js +1 -1
  96. package/bundle/obf/src/commands/test.js +1 -1
  97. package/bundle/obf/src/commands/undo.js +1 -1
  98. package/bundle/obf/src/commands/version.js +1 -1
  99. package/bundle/obf/src/error.js +1 -1
  100. package/bundle/obf/src/exec.js +1 -1
  101. package/bundle/obf/src/generator.js +1 -1
  102. package/bundle/obf/src/generators/_index.js +1 -1
  103. package/bundle/obf/src/generators/api.js +1 -1
  104. package/bundle/obf/src/generators/collection.js +1 -1
  105. package/bundle/obf/src/generators/component.js +1 -1
  106. package/bundle/obf/src/generators/config.js +1 -1
  107. package/bundle/obf/src/generators/dbc.js +1 -1
  108. package/bundle/obf/src/generators/dockerfile.js +1 -1
  109. package/bundle/obf/src/generators/hook.js +1 -1
  110. package/bundle/obf/src/generators/kits/_index.js +1 -1
  111. package/bundle/obf/src/generators/kits/esri/_index.js +1 -1
  112. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  113. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  114. package/bundle/obf/src/generators/kits/kit.js +1 -1
  115. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  116. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  117. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  118. package/bundle/obf/src/generators/layout.js +1 -1
  119. package/bundle/obf/src/generators/maka.gen.js +1 -1
  120. package/bundle/obf/src/generators/methods.js +1 -1
  121. package/bundle/obf/src/generators/package.js +1 -1
  122. package/bundle/obf/src/generators/page.js +1 -1
  123. package/bundle/obf/src/generators/publish.js +1 -1
  124. package/bundle/obf/src/generators/route.js +1 -1
  125. package/bundle/obf/src/generators/service.js +1 -1
  126. package/bundle/obf/src/generators/services/_index.js +1 -1
  127. package/bundle/obf/src/generators/services/openssl.js +1 -1
  128. package/bundle/obf/src/generators/services/translation.js +1 -1
  129. package/bundle/obf/src/maka.js +1 -1
  130. package/bundle/obf/src/templates/meteor/project/package.json +1 -1
  131. package/bundle/obf/src/tool.js +1 -1
  132. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  133. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  134. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  136. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  137. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  138. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  139. package/bundle/obf/src/tools/https/https.class.js +1 -1
  140. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  141. package/bundle/obf/src/tools/log/log.class.js +1 -1
  142. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  143. package/bundle/obf/src/tools/options/options.class.js +1 -1
  144. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  145. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  146. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  147. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  148. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  149. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  150. package/package.json +1 -2
@@ -1 +1 @@
1
- const a141i=a141d;(function(a,b){const f=a141d,c=a();while(!![]){try{const d=-parseInt(f(0x12c))/0x1+-parseInt(f(0x139))/0x2+parseInt(f(0x142))/0x3+-parseInt(f(0x143))/0x4+parseInt(f(0x12f))/0x5*(-parseInt(f(0x13b))/0x6)+-parseInt(f(0x138))/0x7*(-parseInt(f(0x13d))/0x8)+parseInt(f(0x12a))/0x9*(parseInt(f(0x144))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a141c,0x24ba7));const a141b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a141d;if(c){const e=c[g(0x131)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a141a=a141b(this,function(){const h=a141d;return a141a[h(0x133)]()[h(0x13a)](h(0x136))['toString']()[h(0x129)](a141a)[h(0x13a)]('(((.+)+)+)+$');});function a141c(){const n=['toString','Please\x20provide\x20a\x20valid\x20value\x20for\x20','requiredOpts','(((.+)+)+)+$','list','7uYLbIc','110814QKhjJo','search','24GhODul','handleValidOptions','371528xFrvuC','handleRequiredOptions','includes','length','ask','188679xgsFVN','811468DDuxel','5515360RfarHe','validOpts','handleOptions','constructor','9oBIvqs','options','85889XXLcIV','string','inputOpts','207835aXoeJl','opts','apply','Invalid\x20value\x20for\x20'];a141c=function(){return n;};return a141c();}function a141d(a,b){const c=a141c();return a141d=function(d,e){d=d-0x129;let f=c[d];return f;},a141d(a,b);}a141a();import{Actions}from'../actions/actions.class.js';export class OptionHandler{['inputOpts'];[a141i(0x130)];[a141i(0x135)];['validOpts'];constructor(){const j=a141i;this[j(0x12e)]=[],this[j(0x130)]={},this[j(0x135)]=[],this[j(0x145)]=[];}async[a141i(0x146)](a,b,c){const k=a141i;this[k(0x12e)]=a,this[k(0x135)]=b,this[k(0x145)]=c,await this[k(0x13e)](),await this[k(0x13c)]();}async[a141i(0x13e)](){const l=a141i;if(this[l(0x135)]?.[l(0x140)]>0x0)for(const a of this[l(0x135)]){let b=!![];const {name:c,values:d}=typeof a===l(0x12d)?{'name':a,'values':undefined}:a;if(!this[l(0x12e)][l(0x13f)](c)){const e=d?await Actions['options']({'type':l(0x137),'name':c,'message':'Please\x20choose\x20a\x20value\x20for\x20'+c,'choices':d}):await Actions[l(0x141)]('Please\x20provide\x20a\x20value\x20for\x20'+c);this[l(0x130)][c]=d?e[c]:e,b=d?d[l(0x13f)](this[l(0x130)][c]):!![];}else b=d?d[l(0x13f)](this['opts'][c]):!![];if(!b)throw new Error(l(0x132)+c+':\x20'+this['opts'][c]);}}async['handleValidOptions'](){const m=a141i;if(this[m(0x145)]?.[m(0x140)]>0x0)for(const a of this['validOpts']){const {name:b,values:c}=typeof a===m(0x12d)?{'name':a,'values':undefined}:a,d=this[m(0x130)][b];if(d!==undefined&&(!c||!c[m(0x13f)](d))){const e=c?await Actions[m(0x12b)]({'type':m(0x137),'name':b,'message':'Please\x20choose\x20a\x20valid\x20value\x20for\x20'+b,'choices':c}):await Actions['ask'](m(0x134)+b);this[m(0x130)][b]=c?e[b]:e;}}}}
1
+ const a141i=a141d;(function(a,b){const f=a141d,c=a();while(!![]){try{const d=-parseInt(f(0xe4))/0x1+-parseInt(f(0xf1))/0x2+parseInt(f(0xf2))/0x3+parseInt(f(0xed))/0x4+parseInt(f(0xec))/0x5*(-parseInt(f(0xdf))/0x6)+parseInt(f(0xf5))/0x7+-parseInt(f(0xf7))/0x8*(-parseInt(f(0xf3))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a141c,0x5a2fb));function a141c(){const n=['length','apply','inputOpts','684837zLRKKi','Please\x20choose\x20a\x20valid\x20value\x20for\x20','string','list','Please\x20provide\x20a\x20valid\x20value\x20for\x20','includes','toString','Invalid\x20value\x20for\x20','166310dqKkVj','2720792UYWnsp','(((.+)+)+)+$','options','ask','1372574CLVjrL','1494189fvWEwV','127359WThsqR','opts','2484727RVJibm','handleValidOptions','136NacRFl','requiredOpts','search','Please\x20provide\x20a\x20value\x20for\x20','validOpts','6mKFyzd','handleRequiredOptions'];a141c=function(){return n;};return a141c();}const a141b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a141d;if(c){const e=c[g(0xe2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a141a=a141b(this,function(){const h=a141d;return a141a[h(0xea)]()[h(0xf9)](h(0xee))[h(0xea)]()['constructor'](a141a)['search'](h(0xee));});function a141d(a,b){const c=a141c();return a141d=function(d,e){d=d-0xdd;let f=c[d];return f;},a141d(a,b);}a141a();import{Actions}from'../actions/actions.class.js';export class OptionHandler{['inputOpts'];['opts'];[a141i(0xf8)];['validOpts'];constructor(){const j=a141i;this[j(0xe3)]=[],this[j(0xf4)]={},this['requiredOpts']=[],this[j(0xde)]=[];}async['handleOptions'](a,b,c){const k=a141i;this['inputOpts']=a,this[k(0xf8)]=b,this[k(0xde)]=c,await this[k(0xe0)](),await this[k(0xf6)]();}async[a141i(0xe0)](){const l=a141i;if(this[l(0xf8)]?.[l(0xe1)]>0x0)for(const a of this[l(0xf8)]){let b=!![];const {name:c,values:d}=typeof a===l(0xe6)?{'name':a,'values':undefined}:a;if(!this[l(0xe3)][l(0xe9)](c)){const e=d?await Actions[l(0xef)]({'type':l(0xe7),'name':c,'message':'Please\x20choose\x20a\x20value\x20for\x20'+c,'choices':d}):await Actions['ask'](l(0xdd)+c);this[l(0xf4)][c]=d?e[c]:e,b=d?d[l(0xe9)](this[l(0xf4)][c]):!![];}else b=d?d[l(0xe9)](this[l(0xf4)][c]):!![];if(!b)throw new Error(l(0xeb)+c+':\x20'+this['opts'][c]);}}async[a141i(0xf6)](){const m=a141i;if(this[m(0xde)]?.[m(0xe1)]>0x0)for(const a of this['validOpts']){const {name:b,values:c}=typeof a===m(0xe6)?{'name':a,'values':undefined}:a,d=this[m(0xf4)][b];if(d!==undefined&&(!c||!c[m(0xe9)](d))){const e=c?await Actions[m(0xef)]({'type':m(0xe7),'name':b,'message':m(0xe5)+b,'choices':c}):await Actions[m(0xf0)](m(0xe8)+b);this[m(0xf4)][b]=c?e[b]:e;}}}}
@@ -1 +1 @@
1
- const a142i=a142d;(function(a,b){const f=a142d,c=a();while(!![]){try{const d=-parseInt(f(0x18d))/0x1+-parseInt(f(0x191))/0x2+parseInt(f(0x182))/0x3+-parseInt(f(0x198))/0x4*(parseInt(f(0x199))/0x5)+parseInt(f(0x196))/0x6*(parseInt(f(0x192))/0x7)+parseInt(f(0x17f))/0x8*(-parseInt(f(0x18e))/0x9)+parseInt(f(0x195))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a142c,0x2f576));const a142b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a142d;if(c){const e=c[g(0x18b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a142a=a142b(this,function(){const h=a142d;return a142a[h(0x19c)]()[h(0x193)](h(0x18c))['toString']()[h(0x181)](a142a)[h(0x193)](h(0x18c));});a142a();function a142d(a,b){const c=a142c();return a142d=function(d,e){d=d-0x17c;let f=c[d];return f;},a142d(a,b);}import{Log}from'../log/log.class.js';const isWin=process[a142i(0x183)]===a142i(0x187),downArrow=isWin?'<':'↓';export class Progress{[a142i(0x184)];['current'];[a142i(0x188)];[a142i(0x180)];[a142i(0x19a)];[a142i(0x17d)];constructor(a,b=a142i(0x18f),c=downArrow){const j=a142i;this['total']=a,this[j(0x186)]=0x0,this[j(0x188)]=0x28,this[j(0x180)]=0x0,this[j(0x19a)]=b,this['graphic']=Log[j(0x19b)]['majestic'](c);}[a142i(0x189)](a){const k=a142i;this['current']+=a,this[k(0x194)]();}[a142i(0x185)](){const l=a142i;this['current']=this['total'],this['draw'](),Log[l(0x190)]('');}['draw'](){const m=a142i,a=Math['min'](0x64,Math['round'](this[m(0x186)]/this[m(0x184)]*0x64));if(a!==this[m(0x180)]){this['lastLoggedProgress']=a;const b=Math[m(0x197)](a/0x64*this['width']),c=this[m(0x188)]-b,d=''+Log[m(0x19b)][m(0x18a)]('█')[m(0x17c)](b)+'░'['repeat'](c),e=this[m(0x17d)]+'\x20'+this['dlMessage']+':\x20['+d+']\x20'+a+'%';Log[m(0x17e)](e);}}}function a142c(){const n=['total','complete','current','win32','width','update','success','apply','(((.+)+)+)+$','358651XFgpFE','50283DpFaGw','Downloading','singleLineSuccess','503462wxQziR','1078vIkgDZ','search','draw','9016350pMnBMj','5088jKkzlx','round','13652iSgLGz','85TcZPDg','dlMessage','colors','toString','repeat','graphic','singleLine','280tjlagQ','lastLoggedProgress','constructor','76893OSzuBG','platform'];a142c=function(){return n;};return a142c();}
1
+ function a142d(a,b){const c=a142c();return a142d=function(d,e){d=d-0x132;let f=c[d];return f;},a142d(a,b);}const a142i=a142d;(function(a,b){const f=a142d,c=a();while(!![]){try{const d=-parseInt(f(0x13e))/0x1+-parseInt(f(0x13c))/0x2+parseInt(f(0x144))/0x3*(parseInt(f(0x14c))/0x4)+-parseInt(f(0x13b))/0x5*(parseInt(f(0x132))/0x6)+-parseInt(f(0x14d))/0x7+-parseInt(f(0x146))/0x8+parseInt(f(0x139))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a142c,0x1a1ed));const a142b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a142d;if(c){const e=c[g(0x141)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a142a=a142b(this,function(){const h=a142d;return a142a['toString']()[h(0x13d)](h(0x14b))[h(0x137)]()[h(0x147)](a142a)[h(0x13d)](h(0x14b));});a142a();import{Log}from'../log/log.class.js';const isWin=process[a142i(0x14e)]==='win32',downArrow=isWin?'<':'↓';export class Progress{['total'];['current'];['width'];[a142i(0x14a)];[a142i(0x13a)];[a142i(0x140)];constructor(a,b='Downloading',c=downArrow){const j=a142i;this[j(0x133)]=a,this[j(0x135)]=0x0,this[j(0x149)]=0x28,this[j(0x14a)]=0x0,this[j(0x13a)]=b,this[j(0x140)]=Log['colors'][j(0x138)](c);}[a142i(0x13f)](a){const k=a142i;this[k(0x135)]+=a,this[k(0x148)]();}[a142i(0x145)](){const l=a142i;this[l(0x135)]=this[l(0x133)],this['draw'](),Log[l(0x142)]('');}['draw'](){const m=a142i,a=Math[m(0x136)](0x64,Math['round'](this[m(0x135)]/this['total']*0x64));if(a!==this[m(0x14a)]){this[m(0x14a)]=a;const b=Math[m(0x134)](a/0x64*this[m(0x149)]),c=this[m(0x149)]-b,d=''+Log[m(0x14f)]['success']('█')[m(0x143)](b)+'░'['repeat'](c),e=this[m(0x140)]+'\x20'+this['dlMessage']+':\x20['+d+']\x20'+a+'%';Log['singleLine'](e);}}}function a142c(){const n=['385555JrpsqZ','226874RFOHHd','search','63117BbQTeh','update','graphic','apply','singleLineSuccess','repeat','3MuSqqI','complete','730416TMtmXW','constructor','draw','width','lastLoggedProgress','(((.+)+)+)+$','301916kMUKuV','1242213Ivtkmu','platform','colors','6EhBGHQ','total','round','current','min','toString','majestic','4985424FyCHmO','dlMessage'];a142c=function(){return n;};return a142c();}
@@ -1 +1 @@
1
- const a143m=a143d;(function(a,b){const j=a143d,c=a();while(!![]){try{const d=parseInt(j(0x12d))/0x1*(-parseInt(j(0x116))/0x2)+parseInt(j(0x12a))/0x3+parseInt(j(0x11c))/0x4*(-parseInt(j(0x12b))/0x5)+-parseInt(j(0x11b))/0x6*(-parseInt(j(0x113))/0x7)+parseInt(j(0x125))/0x8*(parseInt(j(0x121))/0x9)+-parseInt(j(0x11d))/0xa+parseInt(j(0x124))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a143c,0x97ca5));const a143b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a143d;if(c){const e=c[k(0x119)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a143a=a143b(this,function(){const l=a143d;return a143a['toString']()[l(0x120)](l(0x12c))[l(0x128)]()[l(0x111)](a143a)[l(0x120)](l(0x12c));});a143a();import{spawn}from'child_process';import{Log}from'../log/log.class.js';function a143d(a,b){const c=a143c();return a143d=function(d,e){d=d-0x111;let f=c[d];return f;},a143d(a,b);}export class SpawnAsync{static[a143m(0x112)](a,b,c){return new Promise((d,e)=>{const n=a143d,f=Log[n(0x112)](),g=c?.[n(0x129)]||'.';c?.['message']&&f['start'](c?.['message']);const h=spawn(a,b,{'cwd':g,'stdio':c?.[n(0x118)]?'inherit':n(0x122)});process['on'](n(0x126),()=>{const o=n,i=h[o(0x115)];i&&process[o(0x11f)](i);}),h['on']('data',i=>{const p=n;console[p(0x117)](i);}),h['on'](n(0x114),()=>{const q=n;c?.[q(0x123)]&&f[q(0x11a)](),d();}),h['on'](n(0x11e),()=>{const r=n;c?.[r(0x123)]&&f[r(0x11a)](),d();}),h['on']('error',()=>{const s=n;c?.[s(0x123)]&&f[s(0x127)](),e();});});}}function a143c(){const t=['apply','success','31254qdOUnK','4shwLxT','12353650rBxUcl','close','kill','search','9fNVfWn','ignore','message','24649339itfDAG','3405448cwWkQj','SIGINT','failure','toString','cwd','1697391DsTcwR','5325560gcXrRt','(((.+)+)+)+$','4KRleqa','constructor','withSpinner','1113nGykCj','disconnect','pid','569174hbiNGc','log','verbose'];a143c=function(){return t;};return a143c();}
1
+ const a143m=a143d;(function(a,b){const j=a143d,c=a();while(!![]){try{const d=-parseInt(j(0xa1))/0x1+-parseInt(j(0x96))/0x2+parseInt(j(0xa6))/0x3+parseInt(j(0xad))/0x4*(-parseInt(j(0x98))/0x5)+parseInt(j(0xa3))/0x6+-parseInt(j(0xa2))/0x7*(parseInt(j(0xab))/0x8)+parseInt(j(0x9b))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a143c,0x414b9));const a143b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a143d;if(c){const e=c[k(0xa9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a143a=a143b(this,function(){const l=a143d;return a143a[l(0xa5)]()['search']('(((.+)+)+)+$')['toString']()[l(0x9d)](a143a)[l(0x95)](l(0x9c));});a143a();import{spawn}from'child_process';import{Log}from'../log/log.class.js';export class SpawnAsync{static[a143m(0x9f)](a,b,c){return new Promise((d,e)=>{const n=a143d,f=Log['withSpinner'](),g=c?.['cwd']||'.';c?.[n(0xaa)]&&f['start'](c?.[n(0xaa)]);const h=spawn(a,b,{'cwd':g,'stdio':c?.[n(0x99)]?n(0xa7):n(0x9e)});process['on'](n(0xa8),()=>{const o=n,i=h[o(0xa0)];i&&process['kill'](i);}),h['on']('data',i=>{const p=n;console[p(0xac)](i);}),h['on']('disconnect',()=>{const q=n;c?.['message']&&f[q(0x97)](),d();}),h['on']('close',()=>{const r=n;c?.[r(0xaa)]&&f['success'](),d();}),h['on'](n(0xa4),()=>{const s=n;c?.['message']&&f[s(0x9a)](),e();});});}}function a143d(a,b){const c=a143c();return a143d=function(d,e){d=d-0x95;let f=c[d];return f;},a143d(a,b);}function a143c(){const t=['176365YiqHoW','9051feokKE','1179372gvRFBy','error','toString','690096nNeutn','inherit','SIGINT','apply','message','2328rGmqTU','log','4KImSkb','search','430796XYAnjV','success','1117540ZNMeiZ','verbose','failure','7491501tFqJhA','(((.+)+)+)+$','constructor','ignore','withSpinner','pid'];a143c=function(){return t;};return a143c();}
@@ -1 +1 @@
1
- function a144d(a,b){var c=a144c();return a144d=function(d,e){d=d-0x99;var f=c[d];return f;},a144d(a,b);}(function(a,b){var f=a144d,c=a();while(!![]){try{var d=-parseInt(f(0x9f))/0x1*(parseInt(f(0xaa))/0x2)+-parseInt(f(0xa2))/0x3*(parseInt(f(0xa0))/0x4)+-parseInt(f(0xa5))/0x5*(-parseInt(f(0x99))/0x6)+-parseInt(f(0xa8))/0x7+-parseInt(f(0xa3))/0x8*(-parseInt(f(0xa6))/0x9)+-parseInt(f(0x9d))/0xa*(-parseInt(f(0x9a))/0xb)+-parseInt(f(0xa1))/0xc*(-parseInt(f(0xa7))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a144c,0x4ddc7));var a144b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a144d;if(c){var e=c[g(0x9c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a144a=a144b(this,function(){var h=a144d;return a144a[h(0x9e)]()[h(0xa4)](h(0x9b))[h(0x9e)]()[h(0xa9)](a144a)['search'](h(0x9b));});a144a();function a144c(){var i=['apply','10bLQEuk','toString','271127YnwILV','124576wGgQgS','12516MqDvgz','3Ydhfta','128AQioEx','search','65YMVNPL','120258ENUxlt','7735sjOCMF','3652712ZrlkRV','constructor','4SElIZf','131310aLMTHN','3247761mCaokT','(((.+)+)+)+$'];a144c=function(){return i;};return a144c();}export{};
1
+ function a144d(a,b){var c=a144c();return a144d=function(d,e){d=d-0x10c;var f=c[d];return f;},a144d(a,b);}(function(a,b){var f=a144d,c=a();while(!![]){try{var d=-parseInt(f(0x115))/0x1*(-parseInt(f(0x119))/0x2)+-parseInt(f(0x10c))/0x3+parseInt(f(0x118))/0x4+parseInt(f(0x112))/0x5+-parseInt(f(0x11a))/0x6*(-parseInt(f(0x111))/0x7)+-parseInt(f(0x10d))/0x8+-parseInt(f(0x10f))/0x9*(parseInt(f(0x113))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a144c,0x339d3));var a144b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a144d;if(c){var e=c[g(0x10e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a144a=a144b(this,function(){var h=a144d;return a144a[h(0x114)]()['search'](h(0x117))['toString']()[h(0x110)](a144a)[h(0x116)](h(0x117));});a144a();export{};function a144c(){var i=['73113mxtADa','2406040CaYduQ','apply','1867716OuSzdR','constructor','7DAnSWM','368435xdUkKa','10xHfhXr','toString','264001HHfakc','search','(((.+)+)+)+$','980988GKTURq','2bqvQEA','966756Nanmtf'];a144c=function(){return i;};return a144c();}
@@ -1 +1 @@
1
- function a145d(a,b){const c=a145c();return a145d=function(d,e){d=d-0xac;let f=c[d];return f;},a145d(a,b);}const a145p=a145d;(function(a,b){const m=a145d,c=a();while(!![]){try{const d=parseInt(m(0xce))/0x1*(-parseInt(m(0xcf))/0x2)+parseInt(m(0xcb))/0x3+-parseInt(m(0xaf))/0x4+-parseInt(m(0xd5))/0x5*(-parseInt(m(0xc6))/0x6)+parseInt(m(0xb5))/0x7*(-parseInt(m(0xbb))/0x8)+-parseInt(m(0xad))/0x9*(parseInt(m(0xb1))/0xa)+parseInt(m(0xbc))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a145c,0x1a444));const a145b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a145d;if(c){const e=c[n(0xb3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a145a=a145b(this,function(){const o=a145d;return a145a[o(0xbf)]()[o(0xc7)]('(((.+)+)+)+$')['toString']()[o(0xc3)](a145a)[o(0xc7)](o(0xc9));});function a145c(){const x=['2>&1','constructor','tty','pem','126NRtQkg','search','ConnectTimeout=2','(((.+)+)+)+$','message','247158MjqpyC','port','push','2099hzqSld','128htzxFe','user','withSpinner','failure','dest','verbose','4515YwRpKB','ssh','success','ignore','env','1205649oOQhLD','source','496528KPfVZb','scp','10lLmGQw','disconnect','apply','sshVerbose','7kCWCzA','sshSync','concat','start','host','error','160456pGgDki','4605975xFjFVM','join','inherit','toString','close','ssh\x20'];a145c=function(){return x;};return a145c();}a145a();import a145e from'path';import{execSync,spawnSync,spawn}from'child_process';import{Log}from'../log/log.class.js';export class SSH{static [a145p(0xd6)]=(a,b,c)=>{return new Promise((d,e)=>{const q=a145d,f=b[q(0xd0)]+'@'+b[q(0xb9)],g=a145e[q(0xbd)](b[q(0xac)],b[q(0xc5)]),h=c?.[q(0xc4)]||![],i=c?.[q(0xb4)]||![];let j=[];h&&j['push']('-t');i&&j[q(0xcd)]('-v');j=j[q(0xb7)](['-o',q(0xc8),'-i',g,'-p',b[q(0xcc)],f,a]);const k=Log[q(0xd1)]();c?.[q(0xca)]&&k[q(0xb8)](c?.['message']);const l=spawn(q(0xd6),j,{'stdio':c?.[q(0xd4)]?q(0xbe):q(0xd8)});l['on'](q(0xb2),()=>{const r=q;c?.['message']&&k[r(0xd7)](),d();}),l['on'](q(0xc0),()=>{const s=q;c?.[s(0xca)]&&k[s(0xd7)](),d();}),l['on'](q(0xba),()=>{const t=q;c?.['message']&&k[t(0xd2)](),e();});});};static [a145p(0xb6)]=(a,b,c)=>{const u=a145p,d=b['user']+'@'+b['host'],e=a145e[u(0xbd)](b[u(0xac)],b[u(0xc5)]),f=c?.[u(0xc4)]||![],g=c?.[u(0xb4)]||![];let h=[];f&&h[u(0xcd)]('-t'),g&&h['push']('-v'),h=h['concat'](['-o','ConnectTimeout=2','-i',e,'-p',b[u(0xcc)],d,a]),spawnSync(u(0xd6),h,{'stdio':c?.[u(0xd4)]?u(0xbe):u(0xd8)});};static['ping'](a,b,c){const v=a145p,d=b['user']+'@'+b[v(0xb9)],e=a145e[v(0xbd)](b[v(0xac)],b[v(0xc5)]),f=c?.[v(0xc4)]||![];let g=[];f&&g['push']('-t');g=g[v(0xb7)](['-o',v(0xc8),'-i',e,'-p',b[v(0xcc)],d,a,v(0xc2)]);const h=v(0xc1)+g[v(0xbd)]('\x20');return execSync(h)[v(0xbf)]();}static[a145p(0xb0)](a,b){const w=a145p,c=b[w(0xd0)]+'@'+b[w(0xb9)]+':'+a[w(0xd3)],d=a145e['join'](b[w(0xac)],b[w(0xc5)]),e=['-i',d,'-P',b[w(0xcc)],a[w(0xae)],c];spawnSync(w(0xb0),e,{'stdio':a[w(0xd4)]?w(0xbe):w(0xd8)});}}
1
+ function a145d(a,b){const c=a145c();return a145d=function(d,e){d=d-0x1ad;let f=c[d];return f;},a145d(a,b);}const a145p=a145d;(function(a,b){const m=a145d,c=a();while(!![]){try{const d=-parseInt(m(0x1d3))/0x1+-parseInt(m(0x1c5))/0x2*(-parseInt(m(0x1bb))/0x3)+parseInt(m(0x1b5))/0x4+parseInt(m(0x1c0))/0x5*(parseInt(m(0x1ce))/0x6)+-parseInt(m(0x1cb))/0x7*(-parseInt(m(0x1c2))/0x8)+-parseInt(m(0x1d4))/0x9*(parseInt(m(0x1b4))/0xa)+-parseInt(m(0x1cf))/0xb*(parseInt(m(0x1bd))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a145c,0x81ebf));const a145b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a145d;if(c){const e=c[n(0x1b1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a145a=a145b(this,function(){const o=a145d;return a145a[o(0x1d8)]()[o(0x1b8)](o(0x1b9))['toString']()[o(0x1af)](a145a)[o(0x1b8)](o(0x1b9));});a145a();import a145e from'path';function a145c(){const x=['close','854EfgKsF','verbose','start','12mLNiHy','202697nnEJiD','scp','tty','ping','139599KTfUqT','4437gdHAMF','ssh','inherit','disconnect','toString','port','push','constructor','ssh\x20','apply','user','sshVerbose','5710wbsUlj','468652SpnoXb','env','ConnectTimeout=2','search','(((.+)+)+)+$','2>&1','462lsGdYt','success','24DKxExA','error','dest','109835onWKds','message','17624rWmhbD','source','ignore','7276aDAaEW','join','pem','concat','host'];a145c=function(){return x;};return a145c();}import{execSync,spawnSync,spawn}from'child_process';import{Log}from'../log/log.class.js';export class SSH{static [a145p(0x1d5)]=(a,b,c)=>{return new Promise((d,e)=>{const q=a145d,f=b[q(0x1b2)]+'@'+b[q(0x1c9)],g=a145e[q(0x1c6)](b[q(0x1b6)],b['pem']),h=c?.['tty']||![],i=c?.[q(0x1b3)]||![];let j=[];h&&j[q(0x1ae)]('-t');i&&j['push']('-v');j=j[q(0x1c8)](['-o',q(0x1b7),'-i',g,'-p',b[q(0x1ad)],f,a]);const k=Log['withSpinner']();c?.[q(0x1c1)]&&k[q(0x1cd)](c?.[q(0x1c1)]);const l=spawn(q(0x1d5),j,{'stdio':c?.[q(0x1cc)]?q(0x1d6):'ignore'});l['on'](q(0x1d7),()=>{const r=q;c?.[r(0x1c1)]&&k['success'](),d();}),l['on'](q(0x1ca),()=>{const s=q;c?.['message']&&k[s(0x1bc)](),d();}),l['on'](q(0x1be),()=>{const t=q;c?.[t(0x1c1)]&&k['failure'](),e();});});};static ['sshSync']=(a,b,c)=>{const u=a145p,d=b[u(0x1b2)]+'@'+b['host'],e=a145e['join'](b[u(0x1b6)],b[u(0x1c7)]),f=c?.[u(0x1d1)]||![],g=c?.[u(0x1b3)]||![];let h=[];f&&h[u(0x1ae)]('-t'),g&&h[u(0x1ae)]('-v'),h=h[u(0x1c8)](['-o',u(0x1b7),'-i',e,'-p',b['port'],d,a]),spawnSync(u(0x1d5),h,{'stdio':c?.[u(0x1cc)]?'inherit':u(0x1c4)});};static[a145p(0x1d2)](a,b,c){const v=a145p,d=b['user']+'@'+b[v(0x1c9)],e=a145e[v(0x1c6)](b[v(0x1b6)],b['pem']),f=c?.[v(0x1d1)]||![];let g=[];f&&g[v(0x1ae)]('-t');g=g[v(0x1c8)](['-o',v(0x1b7),'-i',e,'-p',b['port'],d,a,v(0x1ba)]);const h=v(0x1b0)+g[v(0x1c6)]('\x20');return execSync(h)[v(0x1d8)]();}static[a145p(0x1d0)](a,b){const w=a145p,c=b[w(0x1b2)]+'@'+b[w(0x1c9)]+':'+a[w(0x1bf)],d=a145e[w(0x1c6)](b['env'],b[w(0x1c7)]),e=['-i',d,'-P',b[w(0x1ad)],a[w(0x1c3)],c];spawnSync(w(0x1d0),e,{'stdio':a[w(0x1cc)]?w(0x1d6):w(0x1c4)});}}
@@ -1 +1 @@
1
- (function(a,b){var f=a146d,c=a();while(!![]){try{var d=-parseInt(f(0x12b))/0x1+-parseInt(f(0x125))/0x2+-parseInt(f(0x12c))/0x3+parseInt(f(0x126))/0x4+-parseInt(f(0x124))/0x5+-parseInt(f(0x129))/0x6*(parseInt(f(0x127))/0x7)+parseInt(f(0x123))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a146c,0xe0be0));var a146b=(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;};}()),a146a=a146b(this,function(){var g=a146d;return a146a[g(0x122)]()[g(0x12a)](g(0x128))[g(0x122)]()['constructor'](a146a)[g(0x12a)](g(0x128));});a146a();function a146d(a,b){var c=a146c();return a146d=function(d,e){d=d-0x122;var f=c[d];return f;},a146d(a,b);}export{};function a146c(){var h=['1318658xNptzK','2588204sUttNz','550340JNiTHF','(((.+)+)+)+$','6jlZpqz','search','492892syHLhD','60546vjhfVm','toString','23137792agRemL','6838540jmtzZW'];a146c=function(){return h;};return a146c();}
1
+ function a146d(a,b){var c=a146c();return a146d=function(d,e){d=d-0x127;var f=c[d];return f;},a146d(a,b);}(function(a,b){var f=a146d,c=a();while(!![]){try{var d=parseInt(f(0x131))/0x1*(parseInt(f(0x12f))/0x2)+-parseInt(f(0x12e))/0x3*(-parseInt(f(0x135))/0x4)+parseInt(f(0x12d))/0x5*(parseInt(f(0x136))/0x6)+-parseInt(f(0x128))/0x7+-parseInt(f(0x134))/0x8*(-parseInt(f(0x127))/0x9)+parseInt(f(0x132))/0xa*(-parseInt(f(0x130))/0xb)+-parseInt(f(0x12b))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a146c,0x4d348));function a146c(){var i=['apply','toString','5947176VSgTqJ','search','973225UJSwmW','651819JRCfzN','2UdhKRZ','11tQpbCj','379257vezVTu','4359520JXPIuc','(((.+)+)+)+$','104ULyKYe','8yLjJYf','18cDQqPS','280674IPmqEq','3887618FHLqrE'];a146c=function(){return i;};return a146c();}var a146b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a146d;if(c){var e=c[g(0x129)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a146a=a146b(this,function(){var h=a146d;return a146a[h(0x12a)]()[h(0x12c)](h(0x133))[h(0x12a)]()['constructor'](a146a)[h(0x12c)](h(0x133));});a146a();export{};
@@ -1 +1 @@
1
- const a147h=a147d;function a147c(){const k=['useConfig','genSSC','openssl.conf','211455OwvBYx','push','-key','67XgtHBr','-keyout','-nodes','inherit','genCSR','149212BnABzW','(((.+)+)+)+$','openssl','-out','rsa:2048','keyName','1246029mUKmQM','-newkey','-new','cwd','5511143zCPUBe','1165073tVvPgT','-config','80xguQrX','constructor','308034CoxTLV','20yYBihD','15292XzHmnk','search','req','24uKruUK','crtName','toString'];a147c=function(){return k;};return a147c();}(function(a,b){const f=a147d,c=a();while(!![]){try{const d=-parseInt(f(0x8e))/0x1*(-parseInt(f(0xa4))/0x2)+parseInt(f(0x99))/0x3+parseInt(f(0x93))/0x4*(parseInt(f(0xa0))/0x5)+parseInt(f(0xa2))/0x6+-parseInt(f(0x9e))/0x7+parseInt(f(0xa7))/0x8*(-parseInt(f(0x8b))/0x9)+parseInt(f(0xa3))/0xa*(-parseInt(f(0x9d))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a147c,0x523de));function a147d(a,b){const c=a147c();return a147d=function(d,e){d=d-0x8b;let f=c[d];return f;},a147d(a,b);}const a147b=(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;};}()),a147a=a147b(this,function(){const g=a147d;return a147a[g(0xa9)]()[g(0xa5)](g(0x94))[g(0xa9)]()[g(0xa1)](a147a)[g(0xa5)]('(((.+)+)+)+$');});a147a();import{spawnSync}from'child_process';export class SSL{static[a147h(0x92)](a){const i=a147h,b=a[i(0x9c)]?a[i(0x9c)]:process['cwd'](),c=[i(0xa6),i(0x9b),i(0x9a),i(0x97),i(0x90),i(0x8f),a[i(0x98)],i(0x96),a['csrName']];a[i(0xaa)]&&(c['push']('-config'),c[i(0x8c)](i(0xac))),a['useConfig']?spawnSync(i(0x95),c,{'cwd':b}):spawnSync(i(0x95),c,{'stdio':i(0x91),'cwd':b});}static[a147h(0xab)](a){const j=a147h,b=a[j(0x9c)]?a[j(0x9c)]:process[j(0x9c)](),c=[j(0xa6),'-x509',j(0x9b),j(0x8d),a[j(0x98)],j(0x96),a[j(0xa8)]];a[j(0xaa)]&&(c[j(0x8c)](j(0x9f)),c[j(0x8c)](j(0xac))),a[j(0xaa)]?spawnSync(j(0x95),c,{'cwd':b}):spawnSync(j(0x95),c,{'stdio':j(0x91),'cwd':b});}}
1
+ function a147c(){const l=['-out','110160BoMhbj','3640180XKYfkl','push','-x509','458TVXLEm','272LulYAL','apply','useConfig','keyName','588595VPEQyL','rsa:2048','1559031kXvzOM','(((.+)+)+)+$','193RREAjc','14774196VZuHnI','-keyout','580805jSppSA','inherit','req','12VLkcLW','-newkey','genSSC','csrName','cwd','6MCEWth','crtName','search','openssl.conf','-config','toString','openssl','11YEmTkF'];a147c=function(){return l;};return a147c();}const a147j=a147d;function a147d(a,b){const c=a147c();return a147d=function(d,e){d=d-0x1c3;let f=c[d];return f;},a147d(a,b);}(function(a,b){const f=a147d,c=a();while(!![]){try{const d=-parseInt(f(0x1dd))/0x1*(-parseInt(f(0x1d4))/0x2)+-parseInt(f(0x1db))/0x3+parseInt(f(0x1e3))/0x4*(-parseInt(f(0x1e0))/0x5)+-parseInt(f(0x1c7))/0x6*(parseInt(f(0x1d9))/0x7)+-parseInt(f(0x1d5))/0x8*(parseInt(f(0x1d0))/0x9)+-parseInt(f(0x1d1))/0xa*(-parseInt(f(0x1ce))/0xb)+parseInt(f(0x1de))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a147c,0x42291));const a147b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a147d;if(c){const e=c[g(0x1d6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a147a=a147b(this,function(){const h=a147d;return a147a['toString']()[h(0x1c9)](h(0x1dc))[h(0x1cc)]()['constructor'](a147a)[h(0x1c9)](h(0x1dc));});a147a();import{spawnSync}from'child_process';export class SSL{static['genCSR'](a){const i=a147d,b=a[i(0x1c6)]?a[i(0x1c6)]:process['cwd'](),c=['req','-new',i(0x1c3),i(0x1da),'-nodes',i(0x1df),a['keyName'],'-out',a[i(0x1c5)]];a[i(0x1d7)]&&(c[i(0x1d2)](i(0x1cb)),c['push'](i(0x1ca))),a[i(0x1d7)]?spawnSync(i(0x1cd),c,{'cwd':b}):spawnSync(i(0x1cd),c,{'stdio':'inherit','cwd':b});}static[a147j(0x1c4)](a){const k=a147j,b=a['cwd']?a[k(0x1c6)]:process[k(0x1c6)](),c=[k(0x1e2),k(0x1d3),'-new','-key',a[k(0x1d8)],k(0x1cf),a[k(0x1c8)]];a[k(0x1d7)]&&(c[k(0x1d2)](k(0x1cb)),c[k(0x1d2)](k(0x1ca))),a[k(0x1d7)]?spawnSync(k(0x1cd),c,{'cwd':b}):spawnSync('openssl',c,{'stdio':k(0x1e1),'cwd':b});}}
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@maka/maka-cli",
3
- "//": "NOTE: don't forget to update version.ts, template package.json, and fsi.class.ts",
4
- "version": "4.9.10",
3
+ "version": "4.9.11",
5
4
  "type": "module",
6
5
  "summary": "A command line tool for scaffolding Meteor 2.x applications using either React.",
7
6
  "description": "A command line tool for scaffolding Meteor 2.x applications using React.",