@maka/maka-cli 4.7.15 → 4.7.17

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 (323) hide show
  1. package/.eslintrc.json +29 -29
  2. package/.mocharc.json +3 -3
  3. package/README.md +21 -21
  4. package/bundle/obf/package.json +126 -127
  5. package/bundle/obf/src/README.md +21 -21
  6. package/bundle/obf/src/command.js +1 -1
  7. package/bundle/obf/src/commands/_index.js +1 -1
  8. package/bundle/obf/src/commands/ai.js +1 -1
  9. package/bundle/obf/src/commands/aws/_index.js +1 -1
  10. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  11. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  20. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  21. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  22. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  23. package/bundle/obf/src/commands/build/_index.js +1 -1
  24. package/bundle/obf/src/commands/build/build.js +1 -1
  25. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  26. package/bundle/obf/src/commands/create.js +1 -1
  27. package/bundle/obf/src/commands/debug.js +1 -1
  28. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  29. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  30. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  31. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/_index.js +1 -1
  33. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  34. package/bundle/obf/src/commands/game/play.command.js +1 -1
  35. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  66. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  67. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  68. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  69. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  70. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  71. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/generate.js +1 -1
  73. package/bundle/obf/src/commands/get/_index.js +1 -1
  74. package/bundle/obf/src/commands/get/get.command.js +1 -1
  75. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  76. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  77. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  78. package/bundle/obf/src/commands/help.js +1 -1
  79. package/bundle/obf/src/commands/install.js +1 -1
  80. package/bundle/obf/src/commands/jsdoc.js +1 -1
  81. package/bundle/obf/src/commands/lint.js +1 -1
  82. package/bundle/obf/src/commands/login.js +1 -1
  83. package/bundle/obf/src/commands/logout.js +1 -1
  84. package/bundle/obf/src/commands/logs.js +1 -1
  85. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  86. package/bundle/obf/src/commands/murder.js +1 -1
  87. package/bundle/obf/src/commands/proxy.js +1 -1
  88. package/bundle/obf/src/commands/reconfig.js +1 -1
  89. package/bundle/obf/src/commands/run/_index.js +1 -1
  90. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  91. package/bundle/obf/src/commands/run/run.command.js +1 -1
  92. package/bundle/obf/src/commands/set/_index.js +1 -1
  93. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  94. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  95. package/bundle/obf/src/commands/set/set.command.js +1 -1
  96. package/bundle/obf/src/commands/ssh.js +1 -1
  97. package/bundle/obf/src/commands/ssl.js +1 -1
  98. package/bundle/obf/src/commands/test.js +1 -1
  99. package/bundle/obf/src/commands/version.js +1 -1
  100. package/bundle/obf/src/error.js +1 -1
  101. package/bundle/obf/src/exec.js +1 -1
  102. package/bundle/obf/src/generator.js +1 -1
  103. package/bundle/obf/src/generators/_index.js +1 -1
  104. package/bundle/obf/src/generators/api.js +1 -1
  105. package/bundle/obf/src/generators/collection.js +1 -1
  106. package/bundle/obf/src/generators/component.js +1 -1
  107. package/bundle/obf/src/generators/config.js +1 -1
  108. package/bundle/obf/src/generators/dbc.js +1 -1
  109. package/bundle/obf/src/generators/dockerfile.js +1 -1
  110. package/bundle/obf/src/generators/hook.js +1 -1
  111. package/bundle/obf/src/generators/kits/_index.js +1 -1
  112. package/bundle/obf/src/generators/kits/esri/_index.js +1 -1
  113. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  114. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  115. package/bundle/obf/src/generators/kits/kit.js +1 -1
  116. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  117. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  118. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  119. package/bundle/obf/src/generators/layout.js +1 -1
  120. package/bundle/obf/src/generators/maka.gen.js +1 -1
  121. package/bundle/obf/src/generators/methods.js +1 -1
  122. package/bundle/obf/src/generators/package.js +1 -1
  123. package/bundle/obf/src/generators/page.js +1 -1
  124. package/bundle/obf/src/generators/publish.js +1 -1
  125. package/bundle/obf/src/generators/route.js +1 -1
  126. package/bundle/obf/src/generators/service.js +1 -1
  127. package/bundle/obf/src/generators/services/_index.js +1 -1
  128. package/bundle/obf/src/generators/services/openssl.js +1 -1
  129. package/bundle/obf/src/generators/services/translation.js +1 -1
  130. package/bundle/obf/src/maka.js +1 -1
  131. package/bundle/obf/src/templates/meteor/api/api.js +11 -11
  132. package/bundle/obf/src/templates/meteor/api/api.js.ts +11 -11
  133. package/bundle/obf/src/templates/meteor/api/collection.js +86 -86
  134. package/bundle/obf/src/templates/meteor/api/collection.js.ts +94 -94
  135. package/bundle/obf/src/templates/meteor/api/fixtures.js +23 -23
  136. package/bundle/obf/src/templates/meteor/api/fixtures.js.ts +23 -23
  137. package/bundle/obf/src/templates/meteor/api/methods.js +136 -136
  138. package/bundle/obf/src/templates/meteor/api/methods.js.ts +137 -137
  139. package/bundle/obf/src/templates/meteor/api/publications.js +31 -31
  140. package/bundle/obf/src/templates/meteor/api/publications.js.ts +31 -31
  141. package/bundle/obf/src/templates/meteor/api/register-api.js +15 -15
  142. package/bundle/obf/src/templates/meteor/api/register-api.js.ts +15 -15
  143. package/bundle/obf/src/templates/meteor/api/resolvers.js +9 -9
  144. package/bundle/obf/src/templates/meteor/api/resolvers.js.ts +9 -9
  145. package/bundle/obf/src/templates/meteor/api/tests.js +1 -1
  146. package/bundle/obf/src/templates/meteor/api/tests.js.ts +1 -1
  147. package/bundle/obf/src/templates/meteor/api/typeDefs.js +5 -5
  148. package/bundle/obf/src/templates/meteor/api/typeDefs.js.ts +5 -5
  149. package/bundle/obf/src/templates/meteor/app/client/body.html +3 -3
  150. package/bundle/obf/src/templates/meteor/app/client/head.html +15 -15
  151. package/bundle/obf/src/templates/meteor/app/client/main.app-tests.js +9 -9
  152. package/bundle/obf/src/templates/meteor/app/client/main.app-tests.js.jsx +9 -9
  153. package/bundle/obf/src/templates/meteor/app/client/main.app-tests.js.ts +9 -9
  154. package/bundle/obf/src/templates/meteor/app/client/main.app-tests.js.tsx +9 -9
  155. package/bundle/obf/src/templates/meteor/app/client/main.js +13 -13
  156. package/bundle/obf/src/templates/meteor/app/client/main.js.jsx +13 -13
  157. package/bundle/obf/src/templates/meteor/app/client/main.js.ts +13 -13
  158. package/bundle/obf/src/templates/meteor/app/client/main.js.tsx +13 -13
  159. package/bundle/obf/src/templates/meteor/app/imports/startup/client/index.js +20 -20
  160. package/bundle/obf/src/templates/meteor/app/imports/startup/client/index.js.jsx +117 -117
  161. package/bundle/obf/src/templates/meteor/app/imports/startup/client/index.js.ts +20 -20
  162. package/bundle/obf/src/templates/meteor/app/imports/startup/client/index.js.tsx +118 -118
  163. package/bundle/obf/src/templates/meteor/app/imports/startup/client/routes.js +39 -39
  164. package/bundle/obf/src/templates/meteor/app/imports/startup/client/routes.js.jsx +48 -48
  165. package/bundle/obf/src/templates/meteor/app/imports/startup/client/routes.js.ts +24 -24
  166. package/bundle/obf/src/templates/meteor/app/imports/startup/client/routes.js.tsx +48 -48
  167. package/bundle/obf/src/templates/meteor/app/imports/startup/client/templates.js +9 -9
  168. package/bundle/obf/src/templates/meteor/app/imports/startup/client/templates.js.jsx +9 -9
  169. package/bundle/obf/src/templates/meteor/app/imports/startup/client/templates.js.ts +9 -9
  170. package/bundle/obf/src/templates/meteor/app/imports/startup/client/templates.js.tsx +9 -9
  171. package/bundle/obf/src/templates/meteor/app/imports/startup/lib/index.js +1 -1
  172. package/bundle/obf/src/templates/meteor/app/imports/startup/lib/index.js.jsx +21 -21
  173. package/bundle/obf/src/templates/meteor/app/imports/startup/lib/index.js.ts +1 -1
  174. package/bundle/obf/src/templates/meteor/app/imports/startup/lib/index.js.tsx +21 -21
  175. package/bundle/obf/src/templates/meteor/app/imports/startup/lib/routes.js.jsx +48 -48
  176. package/bundle/obf/src/templates/meteor/app/imports/startup/lib/routes.js.tsx +48 -48
  177. package/bundle/obf/src/templates/meteor/app/imports/startup/server/index.js +1 -1
  178. package/bundle/obf/src/templates/meteor/app/imports/startup/server/index.js.jsx +152 -152
  179. package/bundle/obf/src/templates/meteor/app/imports/startup/server/index.js.tsx +152 -152
  180. package/bundle/obf/src/templates/meteor/app/imports/ui/test-helpers.js +24 -24
  181. package/bundle/obf/src/templates/meteor/app/imports/ui/test-helpers.js.ts +24 -24
  182. package/bundle/obf/src/templates/meteor/app/lib/main.js +1 -1
  183. package/bundle/obf/src/templates/meteor/app/lib/main.js.jsx +1 -1
  184. package/bundle/obf/src/templates/meteor/app/lib/main.js.ts +1 -1
  185. package/bundle/obf/src/templates/meteor/app/lib/main.js.tsx +1 -1
  186. package/bundle/obf/src/templates/meteor/app/maka.d.ts +160 -160
  187. package/bundle/obf/src/templates/meteor/app/meteor.d.ts +955 -955
  188. package/bundle/obf/src/templates/meteor/app/public/manifest.json +27 -27
  189. package/bundle/obf/src/templates/meteor/app/public/sw.js +30 -30
  190. package/bundle/obf/src/templates/meteor/app/public/sw.js.jsx +30 -30
  191. package/bundle/obf/src/templates/meteor/app/public/sw.js.ts +30 -30
  192. package/bundle/obf/src/templates/meteor/app/public/sw.js.tsx +30 -30
  193. package/bundle/obf/src/templates/meteor/app/server/helmet-csp.js +179 -179
  194. package/bundle/obf/src/templates/meteor/app/server/helmet-csp.js.jsx +179 -179
  195. package/bundle/obf/src/templates/meteor/app/server/helmet-csp.js.ts +179 -179
  196. package/bundle/obf/src/templates/meteor/app/server/helmet-csp.js.tsx +179 -179
  197. package/bundle/obf/src/templates/meteor/app/server/main.app-tests.js +9 -9
  198. package/bundle/obf/src/templates/meteor/app/server/main.app-tests.js.jsx +9 -9
  199. package/bundle/obf/src/templates/meteor/app/server/main.app-tests.js.ts +9 -9
  200. package/bundle/obf/src/templates/meteor/app/server/main.app-tests.js.tsx +9 -9
  201. package/bundle/obf/src/templates/meteor/app/server/main.js +11 -11
  202. package/bundle/obf/src/templates/meteor/app/server/main.js.jsx +11 -11
  203. package/bundle/obf/src/templates/meteor/app/server/main.js.ts +11 -11
  204. package/bundle/obf/src/templates/meteor/app/server/main.js.tsx +11 -11
  205. package/bundle/obf/src/templates/meteor/app/tsconfig.json +40 -40
  206. package/bundle/obf/src/templates/meteor/collection/collection.js +85 -85
  207. package/bundle/obf/src/templates/meteor/collection/collection.js.ts +97 -97
  208. package/bundle/obf/src/templates/meteor/collection/tests.js +27 -27
  209. package/bundle/obf/src/templates/meteor/collection/tests.js.ts +27 -27
  210. package/bundle/obf/src/templates/meteor/config/docker-compose.yaml +17 -17
  211. package/bundle/obf/src/templates/meteor/config/pm2.config.js +25 -25
  212. package/bundle/obf/src/templates/meteor/config/process.env +5 -5
  213. package/bundle/obf/src/templates/meteor/config/settings.json +11 -11
  214. package/bundle/obf/src/templates/meteor/config/ssh.json +6 -6
  215. package/bundle/obf/src/templates/meteor/dbc/config.js +70 -70
  216. package/bundle/obf/src/templates/meteor/dbc/config.js.ts +70 -70
  217. package/bundle/obf/src/templates/meteor/dbc/conn.js +37 -37
  218. package/bundle/obf/src/templates/meteor/dbc/conn.js.ts +37 -37
  219. package/bundle/obf/src/templates/meteor/dbc/register-dbc.js +3 -3
  220. package/bundle/obf/src/templates/meteor/dbc/register-dbc.js.ts +3 -3
  221. package/bundle/obf/src/templates/meteor/method/method.js +48 -48
  222. package/bundle/obf/src/templates/meteor/method/method.js.ts +48 -48
  223. package/bundle/obf/src/templates/meteor/package/package.js +37 -37
  224. package/bundle/obf/src/templates/meteor/package/package.js.jsx +37 -37
  225. package/bundle/obf/src/templates/meteor/package/package.js.ts +36 -36
  226. package/bundle/obf/src/templates/meteor/package/package.js.tsx +37 -37
  227. package/bundle/obf/src/templates/meteor/package/tests/client/package.js +5 -5
  228. package/bundle/obf/src/templates/meteor/package/tests/client/package.js.jsx +5 -5
  229. package/bundle/obf/src/templates/meteor/package/tests/client/package.js.ts +5 -5
  230. package/bundle/obf/src/templates/meteor/package/tests/client/package.js.tsx +5 -5
  231. package/bundle/obf/src/templates/meteor/package/tests/server/package.js +5 -5
  232. package/bundle/obf/src/templates/meteor/package/tests/server/package.js.jsx +5 -5
  233. package/bundle/obf/src/templates/meteor/package/tests/server/package.js.ts +5 -5
  234. package/bundle/obf/src/templates/meteor/package/tests/server/package.js.tsx +5 -5
  235. package/bundle/obf/src/templates/meteor/project/.maka/config.json +29 -29
  236. package/bundle/obf/src/templates/meteor/project/README.md +1 -1
  237. package/bundle/obf/src/templates/meteor/project/build/README +4 -4
  238. package/bundle/obf/src/templates/meteor/project/gitignore +7 -7
  239. package/bundle/obf/src/templates/meteor/project/package.json +20 -20
  240. package/bundle/obf/src/templates/meteor/publish/publish.js +3 -3
  241. package/bundle/obf/src/templates/meteor/publish/publish.js.jsx +3 -3
  242. package/bundle/obf/src/templates/meteor/publish/publish.js.tsx +3 -3
  243. package/bundle/obf/src/templates/meteor/publish/publish.ts +3 -3
  244. package/bundle/obf/src/templates/meteor/service/logger/logger.js +27 -27
  245. package/bundle/obf/src/templates/meteor/service/logger/logger.js.ts +27 -27
  246. package/bundle/obf/src/templates/meteor/stylesheet/stylesheet.css +5 -5
  247. package/bundle/obf/src/templates/meteor/stylesheet/stylesheet.css.less +5 -5
  248. package/bundle/obf/src/templates/meteor/template/template-tests.js +1 -1
  249. package/bundle/obf/src/templates/meteor/template/template-tests.js.jsx +55 -55
  250. package/bundle/obf/src/templates/meteor/template/template-tests.js.ts +1 -1
  251. package/bundle/obf/src/templates/meteor/template/template-tests.js.tsx +55 -55
  252. package/bundle/obf/src/templates/meteor/template/template.css +3 -3
  253. package/bundle/obf/src/templates/meteor/template/template.css.less +3 -3
  254. package/bundle/obf/src/templates/meteor/template/template.css.scss +3 -3
  255. package/bundle/obf/src/templates/meteor/template/template.html +5 -5
  256. package/bundle/obf/src/templates/meteor/template/template.js +20 -20
  257. package/bundle/obf/src/templates/meteor/template/template.js.jsx +77 -77
  258. package/bundle/obf/src/templates/meteor/template/template.js.ts +1 -1
  259. package/bundle/obf/src/templates/meteor/template/template.js.tsx +89 -89
  260. package/bundle/obf/src/templates/react/component/component.css +6 -6
  261. package/bundle/obf/src/templates/react/component/component.css.less +6 -6
  262. package/bundle/obf/src/templates/react/component/component.css.scss +3 -3
  263. package/bundle/obf/src/templates/react/component/component.js.jsx +63 -63
  264. package/bundle/obf/src/templates/react/component/component.js.tsx +68 -68
  265. package/bundle/obf/src/templates/react/hook/hook.css +3 -3
  266. package/bundle/obf/src/templates/react/hook/hook.css.scss +3 -3
  267. package/bundle/obf/src/templates/react/hook/hook.js +1 -1
  268. package/bundle/obf/src/templates/react/hook/hook.js.jsx +24 -24
  269. package/bundle/obf/src/templates/react/hook/hook.js.tsx +23 -23
  270. package/bundle/obf/src/templates/react/kit/esri/map/basic-map.js.jsx +27 -27
  271. package/bundle/obf/src/templates/react/kit/esri/map/basic-map.js.tsx +29 -29
  272. package/bundle/obf/src/templates/react/kit/mui/frame/app-bars/basic-app-bar.js.jsx +41 -41
  273. package/bundle/obf/src/templates/react/kit/mui/frame/app-bars/basic-app-bar.js.tsx +40 -40
  274. package/bundle/obf/src/templates/react/kit/mui/frame/drawers/basic-drawer.js.jsx +118 -118
  275. package/bundle/obf/src/templates/react/kit/mui/frame/drawers/basic-drawer.js.tsx +116 -116
  276. package/bundle/obf/src/templates/react/route/route.js +8 -8
  277. package/bundle/obf/src/templates/react/route/route.js.jsx +8 -8
  278. package/bundle/obf/src/templates/react/route/route.js.ts +8 -8
  279. package/bundle/obf/src/templates/react/route/route.js.tsx +8 -8
  280. package/bundle/obf/src/templates/react/test/test.js +1 -1
  281. package/bundle/obf/src/templates/react/test/test.js.jsx +41 -41
  282. package/bundle/obf/src/templates/react/test/test.js.ts +1 -1
  283. package/bundle/obf/src/templates/react/test/test.js.tsx +41 -41
  284. package/bundle/obf/src/templates/service/docker/Dockerfile +54 -54
  285. package/bundle/obf/src/templates/service/eslint/eslintrc.json +33 -33
  286. package/bundle/obf/src/templates/service/i18n/i18n.js +33 -33
  287. package/bundle/obf/src/templates/service/i18n/i18n.js.ts +33 -33
  288. package/bundle/obf/src/templates/service/i18n/locales.js +3 -3
  289. package/bundle/obf/src/templates/service/i18n/locales.js.ts +3 -3
  290. package/bundle/obf/src/templates/service/openssl/openssl.conf +22 -22
  291. package/bundle/obf/src/tool.js +1 -1
  292. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  293. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  294. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  295. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  296. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  297. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  298. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  299. package/bundle/obf/src/tools/https/https.class.js +1 -1
  300. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  301. package/bundle/obf/src/tools/log/log.class.js +1 -1
  302. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  303. package/bundle/obf/src/tools/options/options.class.js +1 -1
  304. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  305. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  306. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  307. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  308. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  309. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  310. package/jest.config.js +11 -11
  311. package/obfuscator.json +29 -29
  312. package/package.json +126 -127
  313. package/tsconfig.json +23 -23
  314. package/.vs/VSWorkspaceState.json +0 -15
  315. package/.vs/maka-cli-src/FileContentIndex/18ca123b-cf4e-4263-8cf0-ed1624e8e918.vsidx +0 -0
  316. package/.vs/maka-cli-src/FileContentIndex/93947812-c77d-4667-aaed-3f9a0df8b484.vsidx +0 -0
  317. package/.vs/maka-cli-src/FileContentIndex/c4cbf57e-b360-4b2a-8b3d-fc8f800c195a.vsidx +0 -0
  318. package/.vs/maka-cli-src/FileContentIndex/c9d2ef23-4e6c-46eb-a405-3584022229ed.vsidx +0 -0
  319. package/.vs/maka-cli-src/FileContentIndex/f530d0eb-18c4-4b49-9f77-9bef59b119f3.vsidx +0 -0
  320. package/.vs/maka-cli-src/config/applicationhost.config +0 -1016
  321. package/.vs/maka-cli-src/v17/.wsuo +0 -0
  322. package/.vs/maka-cli-src/v17/workspaceFileList.bin +0 -0
  323. package/.vs/slnx.sqlite +0 -0
@@ -1 +1 @@
1
- const a60H=a60d;(function(a,b){const y=a60d,c=a();while(!![]){try{const d=parseInt(y(0xaa))/0x1+parseInt(y(0xa1))/0x2*(-parseInt(y(0xc3))/0x3)+-parseInt(y(0x74))/0x4+parseInt(y(0x77))/0x5+parseInt(y(0xc5))/0x6+-parseInt(y(0x8b))/0x7+parseInt(y(0xb5))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xc7dc7));import a60e from'blessed';function a60c(){const I=['81FDLTkT','append','8501664MziEhI','write','equip','yellow','render','inventory','player','handleInput','4751648KOiiTD','90%','head','2737655AVKssq','argv','torso','apply','getInstance','logBox','focus','\x20Equipment\x20','getWelcomeMessage','feet','\x20Game\x20Log\x20','70%','None','box','Gloves:\x20','Left\x20Hand:\x20','lock','Available\x20exits\x20will\x20be\x20shown\x20here...','currentLocation','forEach','5749919InyrtV','----->>>>>>\x20Initializing\x20Game','line','<<<<<<<<---------\x20Terminating\x20game','exit','(((.+)+)+)+$','leftHand','45%','Side\x20Quest\x20Adventure\x20Game','20%','exits','\x20(Locked)','arms','rightHand','25%','size','unequip','setContent','mousemove','legs','Legs:\x20','unlock','49650izJzJs','toString','scroll','split','search','name','join','75%','Head:\x20','956460EcRcDm','parse','Feet:\x20','checkIfLockable','-----\x20Exits\x20------\x0a','Right\x20Hand:\x20','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','getValue','equipment','Your\x20items\x20will\x20be\x20listed\x20here...','100%','4618400RFXfBZ','\x0aThere\x20are\x20no\x20exits\x20here.','Thanks\x20for\x20playing!','log','key','take','10%','escape','clearValue','\x20Map\x20','gloves','getOtherSide','enter','removeAllListeners'];a60c=function(){return I;};return a60c();}import{capitalCase}from'change-case';import a60f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a60d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a60d;if(j){const l=j[z(0x7a)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a60d;return g[A(0xa2)]()[A(0xa5)](A(0x90))['toString']()['constructor'](g)[A(0xa5)](A(0x90));});g();try{const h=a60e['screen']({'smartCSR':!![],'title':B(0x93)}),i=a60e[B(0x84)]({'top':'0%','left':'75%','width':'25%','height':B(0x92),'border':{'type':'line'},'label':'\x20Inventory\x20','content':B(0xb3),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t['getAllItems']()['map'](v=>v[C(0xa6)]);i[C(0x9c)](u[C(0xa7)]('\x0a')),h[C(0x70)]();};h[B(0xc4)](i);const k=a60e['box']({'top':B(0x92),'left':B(0xa8),'width':B(0x99),'height':B(0x99),'border':{'type':'line'},'label':B(0x7e),'content':B(0xb0),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0xc4)](k);const l=t=>{const D=B;k[D(0x9c)](D(0xa9)+(t[D(0x76)]?t[D(0x76)]['name']:D(0x83))+'\x0a'+('Torso:\x20'+(t[D(0x79)]?t[D(0x79)][D(0xa6)]:D(0x83))+'\x0a')+(D(0x9f)+(t[D(0x9e)]?t['legs'][D(0xa6)]:D(0x83))+'\x0a')+(D(0xac)+(t[D(0x80)]?t[D(0x80)][D(0xa6)]:D(0x83))+'\x0a')+('Arms:\x20'+(t['arms']?t[D(0x97)][D(0xa6)]:D(0x83))+'\x0a')+(D(0x85)+(t['gloves']?t[D(0xbf)][D(0xa6)]:D(0x83))+'\x0a')+(D(0x86)+(t['leftHand']?t[D(0x91)][D(0xa6)]:'None')+'\x0a')+(D(0xaf)+(t['rightHand']?t[D(0x98)][D(0xa6)]:D(0x83))+'\x0a')),h[D(0x70)]();},m=a60e[B(0x84)]({'top':B(0x82),'left':B(0xa8),'width':B(0x99),'height':B(0x94),'border':{'type':B(0x8d)},'label':B(0xbe),'content':B(0x88),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t['name']+'\x0a\x0a';u+=E(0xae),t[E(0x95)][E(0x9a)]>0x0?t[E(0x95)][E(0x8a)]((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0xc0)](t);x['roomType']===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x['name']:u+=capitalCase(w)+':\x20'+v[F(0xa6)];if(v['checkIfLocked']())u+=F(0x96);else v[F(0xad)]()&&(u+='\x20(Unlocked)');u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0xb6),m[E(0x9c)](u),h[E(0x70)]();},o=a60e[B(0x84)]({'id':B(0x7c),'top':'0%','left':'0%','width':B(0xa8),'height':B(0x75),'border':{'type':B(0x8d)},'label':B(0x81),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0xc2)](B(0x9d)),h[B(0xc4)](o);const p=a60e['textbox']({'bottom':0x0,'left':0x0,'width':B(0xb4),'height':B(0xbb),'tags':!![],'border':{'type':B(0x8d)},'style':{'fg':'white','border':{'fg':'cyan'}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[B(0xb9)]([B(0xbc),'C-c'],()=>process[B(0x8f)](0x0)),p[B(0x7d)](),h[B(0x70)]();const q=Logger[B(0x7b)](e['logFilePath'],h),r=new Player({'playerName':c});q[B(0xc6)](B(0x8c));const s=a60f[B(0x7b)](r,d);o[B(0x9c)](s[B(0x7f)]()),l(s[B(0x72)][B(0xb2)]),j(s['player'][B(0x71)]),n(s[B(0x72)][B(0x89)]),p[B(0xb9)]([B(0xc1)],async()=>{const G=B,t=p[G(0xb1)](),u=s[G(0x73)](t);(t[G(0xa4)]('\x20')[0x0]===G(0xba)||G(0x6e)||G(0x9b))&&(j(s[G(0x72)][G(0x71)]),l(s[G(0x72)][G(0xb2)])),(t[G(0xa4)]('\x20')[0x0]==='go'||G(0x87)||G(0xa0))&&n(s[G(0x72)][G(0x89)]),t[G(0xa4)]('\x20')[0x0]==='clear'&&o[G(0x9c)](''),u===null&&(console[G(0xb8)](G(0xb7)),h[G(0x70)](),q['write'](G(0x8e)),process[G(0x8f)](0x0)),o['pushLine'](u),o[G(0xa3)](0x1),p[G(0xbd)](),p[G(0x7d)](),h[G(0x70)]();});}catch(t){console[B(0xb8)](t),process['exit'](0x1);}}const args=process[a60H(0x78)]['slice'](0x2);function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0x6e;let f=c[d];return f;},a60d(a,b);}main(args[0x0],JSON[a60H(0xab)](args[0x1]),JSON[a60H(0xab)](args[0x2]));
1
+ const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=-parseInt(y(0x17d))/0x1*(parseInt(y(0x1aa))/0x2)+parseInt(y(0x18c))/0x3+parseInt(y(0x184))/0x4+parseInt(y(0x1a3))/0x5+-parseInt(y(0x19d))/0x6+-parseInt(y(0x170))/0x7*(parseInt(y(0x1c9))/0x8)+parseInt(y(0x186))/0x9*(parseInt(y(0x1ba))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xb4866));import a62e from'blessed';import{capitalCase}from'change-case';import a62f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';function a62c(){const I=['cyan','inventory','Legs:\x20','\x20Equipment\x20','342344RaWZuE','Gloves:\x20','18549gKlRTO','split','\x20Inventory\x20','\x20(Unlocked)','getOtherSide','write','1706550mrqMQb','take','torso','-----\x20Exits\x20------\x0a','apply','45%','(((.+)+)+)+$','toString','checkIfLockable','clearValue','exits','\x20(Locked)','10%','\x20Game\x20Log\x20','player','Arms:\x20','C-c','4023390aHqYFd','box','handleInput','yellow','gloves','join','3085470zePHPW','key','20%','feet','head','logBox','Available\x20exits\x20will\x20be\x20shown\x20here...','305084AmJGyj','constructor','focus','rightHand','setContent','legs','90%','slice','\x0aThere\x20are\x20no\x20exits\x20here.','arms','size','25%','unlock','render','<<<<<<<<---------\x20Terminating\x20game','textbox','12010skzgAZ','getWelcomeMessage','Head:\x20','75%','None','checkIfLocked','Your\x20items\x20will\x20be\x20listed\x20here...','100%','mousemove','Left\x20Hand:\x20','clear','getValue','parse','equip','lock','48ukLDIh','equipment','leftHand','append','name','1658468OktdFV','removeAllListeners','getInstance','\x20Map\x20','search','unequip','log','currentLocation','logFilePath','exit','screen','Side\x20Quest\x20Adventure\x20Game','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','6lWzJkk','line','Thanks\x20for\x20playing!'];a62c=function(){return I;};return a62c();}import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a62d;if(j){const l=j[z(0x190)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g['toString']()[A(0x174)](A(0x192))[A(0x193)]()[A(0x1ab)](g)[A(0x174)](A(0x192));});g();try{const h=a62e[B(0x17a)]({'smartCSR':!![],'title':B(0x17b)}),i=a62e['box']({'top':'0%','left':B(0x1bd),'width':B(0x1b5),'height':'45%','border':{'type':'line'},'label':B(0x188),'content':B(0x1c0),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t['getAllItems']()['map'](v=>v[C(0x16f)]);i[C(0x1ae)](u[C(0x1a2)]('\x0a')),h[C(0x1b7)]();};h[B(0x16e)](i);const k=a62e[B(0x19e)]({'top':B(0x191),'left':B(0x1bd),'width':B(0x1b5),'height':'25%','border':{'type':B(0x17e)},'label':B(0x183),'content':B(0x17c),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1a0)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x16e)](k);const l=t=>{const D=B;k[D(0x1ae)](D(0x1bc)+(t[D(0x1a7)]?t['head'][D(0x16f)]:D(0x1be))+'\x0a'+('Torso:\x20'+(t[D(0x18e)]?t[D(0x18e)][D(0x16f)]:D(0x1be))+'\x0a')+(D(0x182)+(t[D(0x1af)]?t[D(0x1af)]['name']:'None')+'\x0a')+('Feet:\x20'+(t[D(0x1a6)]?t['feet'][D(0x16f)]:D(0x1be))+'\x0a')+(D(0x19b)+(t[D(0x1b3)]?t['arms']['name']:D(0x1be))+'\x0a')+(D(0x185)+(t[D(0x1a1)]?t[D(0x1a1)][D(0x16f)]:D(0x1be))+'\x0a')+(D(0x1c3)+(t[D(0x16d)]?t[D(0x16d)][D(0x16f)]:D(0x1be))+'\x0a')+('Right\x20Hand:\x20'+(t['rightHand']?t[D(0x1ad)][D(0x16f)]:'None')+'\x0a')),h[D(0x1b7)]();},m=a62e[B(0x19e)]({'top':'70%','left':B(0x1bd),'width':B(0x1b5),'height':B(0x1a5),'border':{'type':'line'},'label':B(0x173),'content':B(0x1a9),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1a0)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x16e)](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t[E(0x16f)]+'\x0a\x0a';u+=E(0x18f),t[E(0x196)][E(0x1b4)]>0x0?t[E(0x196)]['forEach']((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0x18a)](t);x['roomType']===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x[F(0x16f)]:u+=capitalCase(w)+':\x20'+v[F(0x16f)];if(v[F(0x1bf)]())u+=F(0x197);else v[F(0x194)]()&&(u+=F(0x189));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x1b2),m[E(0x1ae)](u),h[E(0x1b7)]();},o=a62e[B(0x19e)]({'id':B(0x1a8),'top':'0%','left':'0%','width':'75%','height':B(0x1b0),'border':{'type':B(0x17e)},'label':B(0x199),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1a0)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x171)](B(0x1c2)),h['append'](o);const p=a62e[B(0x1b9)]({'bottom':0x0,'left':0x0,'width':B(0x1c1),'height':B(0x198),'tags':!![],'border':{'type':B(0x17e)},'style':{'fg':'white','border':{'fg':B(0x180)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[B(0x16e)](p),h[B(0x1a4)](['escape',B(0x19c)],()=>process[B(0x179)](0x0)),p[B(0x1ac)](),h[B(0x1b7)]();const q=Logger[B(0x172)](e[B(0x178)],h),r=new Player({'playerName':c});q['write']('----->>>>>>\x20Initializing\x20Game');const s=a62f[B(0x172)](r,d);o['setContent'](s[B(0x1bb)]()),l(s['player'][B(0x16c)]),j(s[B(0x19a)][B(0x181)]),n(s[B(0x19a)]['currentLocation']),p['key'](['enter'],async()=>{const G=B,t=p[G(0x1c5)](),u=s[G(0x19f)](t);(t['split']('\x20')[0x0]===G(0x18d)||G(0x1c7)||G(0x175))&&(j(s['player'][G(0x181)]),l(s[G(0x19a)][G(0x16c)])),(t[G(0x187)]('\x20')[0x0]==='go'||G(0x1c8)||G(0x1b6))&&n(s[G(0x19a)][G(0x177)]),t[G(0x187)]('\x20')[0x0]===G(0x1c4)&&o[G(0x1ae)](''),u===null&&(console[G(0x176)](G(0x17f)),h[G(0x1b7)](),q[G(0x18b)](G(0x1b8)),process[G(0x179)](0x0)),o['pushLine'](u),o['scroll'](0x1),p[G(0x195)](),p[G(0x1ac)](),h[G(0x1b7)]();});}catch(t){console['log'](t),process[B(0x179)](0x1);}}function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x16c;let f=c[d];return f;},a62d(a,b);}const args=process['argv'][a62H(0x1b1)](0x2);main(args[0x0],JSON[a62H(0x1c6)](args[0x1]),JSON[a62H(0x1c6)](args[0x2]));
@@ -1 +1 @@
1
- const a61k=a61d;(function(a,b){const h=a61d,c=a();while(!![]){try{const d=-parseInt(h(0x157))/0x1*(parseInt(h(0x15b))/0x2)+parseInt(h(0x14a))/0x3*(parseInt(h(0x153))/0x4)+parseInt(h(0x147))/0x5*(parseInt(h(0x15a))/0x6)+-parseInt(h(0x14f))/0x7*(parseInt(h(0x164))/0x8)+parseInt(h(0x15f))/0x9*(parseInt(h(0x14e))/0xa)+parseInt(h(0x165))/0xb*(-parseInt(h(0x162))/0xc)+-parseInt(h(0x163))/0xd*(-parseInt(h(0x166))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x3a256));function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0x13a;let f=c[d];return f;},a61d(a,b);}const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a61d;if(c){const e=c[i(0x14b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const j=a61d;return a61a[j(0x151)]()['search'](j(0x155))[j(0x151)]()[j(0x146)](a61a)[j(0x158)]('(((.+)+)+)+$');});a61a();function a61c(){const s=['The\x20logbox\x20','filePath','setContent','13878JZSMct','side-quest.log','appendFileSync','132zOkxrD','914901QDRMRr','8tHyTaJ','105127dTRZWC','56vFCvnO','options','scrollTo','toISOString','ensureLogFileExists','type','box','find','error','existsSync','instance','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','children','writeFileSync','hasScreen','join','mkdirSync','constructor','5BTJTtJ','getInstance','[INFO]\x20[','990LemMZq','apply','content','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','2930ZpbmqX','229677gWjsqF','write','toString','screen','148NSxTEY','[ERROR]\x20[','(((.+)+)+)+$','dirname','1mzWdKN','search','log','100086LUZxdI','772202wBdncf'];a61c=function(){return s;};return a61c();}import a61e from'fs';import a61f from'os';import a61g from'path';const homeDir=a61f['homedir']();export class Logger{static [a61k(0x13f)];[a61k(0x15d)];[a61k(0x152)];constructor(a,b){const l=a61k;this['filePath']=a,this[l(0x152)]=b,this[l(0x16a)]();}static[a61k(0x148)](a=a61g[a61k(0x144)](homeDir,'.maka',a61k(0x160)),b){const m=a61k;if(!Logger[m(0x13f)]){if(!b)throw new Error(m(0x140));Logger['instance']=new Logger(a,b);}return Logger[m(0x13f)];}[a61k(0x16a)](){const n=a61k,a=a61g[n(0x156)](this[n(0x15d)]);!a61e[n(0x13e)](a)&&a61e[n(0x145)](a,{'recursive':!![]}),!a61e[n(0x13e)](this[n(0x15d)])&&a61e[n(0x142)](this['filePath'],'');}[a61k(0x150)](a){const o=a61k,b=new Date()[o(0x169)](),c=o(0x149)+b+']\x20'+a+'\x0a';a61e[o(0x161)](this['filePath'],c);}[a61k(0x13d)](a){const p=a61k,b=new Date()[p(0x169)](),c=p(0x154)+b+']\x20'+a+'\x0a';a61e[p(0x161)](this['filePath'],c);}[a61k(0x159)](a){const q=a61k,b=this['screen']?.[q(0x141)][q(0x13c)](c=>c[q(0x13a)]===q(0x13b)&&c[q(0x167)]['id']==='logBox');b?(b[q(0x15e)](b[q(0x14c)]+'\x0a'+a),b[q(0x168)](b['getScrollHeight']()),this[q(0x152)]?.['render']()):this['error'](q(0x15c)+b+q(0x14d)+this['screen']),this[q(0x150)](a);}[a61k(0x143)](){const r=a61k;return!!this[r(0x152)];}}
1
+ const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=-parseInt(h(0xd5))/0x1*(parseInt(h(0xf8))/0x2)+parseInt(h(0xeb))/0x3+parseInt(h(0xea))/0x4+parseInt(h(0xe1))/0x5*(parseInt(h(0xf4))/0x6)+-parseInt(h(0xf6))/0x7+parseInt(h(0xe5))/0x8+-parseInt(h(0xd9))/0x9*(parseInt(h(0xda))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x9c514));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0xe8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0xd8)]()[j(0xe7)](j(0xd6))[j(0xd8)]()[j(0xef)](a63a)[j(0xe7)](j(0xd6));});a63a();import a63e from'fs';import a63f from'os';function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0xd1;let f=c[d];return f;},a63d(a,b);}import a63g from'path';const homeDir=a63f[a63k(0xd3)]();export class Logger{static [a63k(0xe9)];['filePath'];[a63k(0xe0)];constructor(a,b){const l=a63k;this[l(0xed)]=a,this[l(0xe0)]=b,this[l(0xe2)]();}static[a63k(0xdd)](a=a63g['join'](homeDir,'.maka',a63k(0xdf)),b){const m=a63k;if(!Logger[m(0xe9)]){if(!b)throw new Error('Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.');Logger[m(0xe9)]=new Logger(a,b);}return Logger[m(0xe9)];}[a63k(0xe2)](){const n=a63k,a=a63g['dirname'](this[n(0xed)]);!a63e[n(0xe3)](a)&&a63e[n(0xd7)](a,{'recursive':!![]}),!a63e['existsSync'](this['filePath'])&&a63e['writeFileSync'](this[n(0xed)],'');}['write'](a){const o=a63k,b=new Date()[o(0xd1)](),c=o(0xdc)+b+']\x20'+a+'\x0a';a63e['appendFileSync'](this[o(0xed)],c);}['error'](a){const p=a63k,b=new Date()[p(0xd1)](),c=p(0xf3)+b+']\x20'+a+'\x0a';a63e[p(0xf0)](this[p(0xed)],c);}[a63k(0xee)](a){const q=a63k,b=this[q(0xe0)]?.[q(0xe6)][q(0xf1)](c=>c[q(0xec)]===q(0xf2)&&c[q(0xf7)]['id']==='logBox');b?(b[q(0xd4)](b['content']+'\x0a'+a),b['scrollTo'](b[q(0xdb)]()),this[q(0xe0)]?.['render']()):this['error'](q(0xde)+b+q(0xe4)+this['screen']),this[q(0xd2)](a);}[a63k(0xf5)](){const r=a63k;return!!this[r(0xe0)];}}function a63c(){const s=['726xcxXFv','hasScreen','354424iRANXO','options','2MjCira','toISOString','write','homedir','setContent','462739CNGuMr','(((.+)+)+)+$','mkdirSync','toString','603MRVtrg','219020TFaXeJ','getScrollHeight','[INFO]\x20[','getInstance','The\x20logbox\x20','side-quest.log','screen','21935AaWEKX','ensureLogFileExists','existsSync','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','766288KYLivY','children','search','apply','instance','4123804jyMidr','2890551DKkrco','type','filePath','log','constructor','appendFileSync','find','box','[ERROR]\x20['];a63c=function(){return s;};return a63c();}
@@ -1 +1 @@
1
- const a62n=a62d;(function(a,b){const k=a62d,c=a();while(!![]){try{const d=-parseInt(k(0x208))/0x1*(parseInt(k(0x1f8))/0x2)+parseInt(k(0x20c))/0x3*(-parseInt(k(0x1f5))/0x4)+parseInt(k(0x206))/0x5*(-parseInt(k(0x1fa))/0x6)+-parseInt(k(0x1ef))/0x7*(parseInt(k(0x204))/0x8)+parseInt(k(0x1f0))/0x9*(parseInt(k(0x201))/0xa)+-parseInt(k(0x209))/0xb+-parseInt(k(0x1f2))/0xc*(-parseInt(k(0x1f6))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xb9cb0));const a62b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a62d;if(c){const e=c[l(0x1fc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){const m=a62d;return a62a['toString']()['search']('(((.+)+)+)+$')[m(0x20e)]()['constructor'](a62a)[m(0x1fd)](m(0x1f1));});a62a();import a62e from'path';import{spawn}from'child_process';import a62f from'./play.command.js';import{Command}from'../../command.js';function a62c(){const p=['search','maka\x20play:side-quest','join','dungeon','220FtqvqX','list','url','4535976ZLHukp','stringify','29645DHhDNl','What\x20is\x20your\x20name?','85247qbvCUa','1414897Ribyru','create','getGlobalMakaDir','12zWkSjS','ask','toString','player','side-quest','Commoner','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','options','exit','14aZsTEV','453996BGcHLL','(((.+)+)+)+$','658752rgRycT','node','fsi','1328260jjUVNN','806KaLqWT','sideQuestAnswer','10OfigBs','Play\x20a\x20little\x20side-quest','744sADPzL','log','apply'];a62c=function(){return p;};return a62c();}import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1eb;let f=c[d];return f;},a62d(a,b);}const __filename=fileURLToPath(import.meta[a62n(0x203)]),__dirname=dirname(__filename);Command[a62n(0x20a)]({'name':a62n(0x210),'usage':a62n(0x1fe),'shortDesc':a62n(0x1f9),'aliases':['sq'],'description':a62n(0x1ec),'validOpts':[a62n(0x20f)]},async function(a,b){const o=a62n;try{const c=this[o(0x1f4)][o(0x20b)](),d=a62e[o(0x1ff)](c,'side-quest.log'),e=b[o(0x20f)]?b[o(0x20f)]:await Actions[o(0x20d)](o(0x207))||o(0x1eb),f={...b,'logFilePath':d},g={'type':o(0x202),'name':o(0x1f7),'message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':o(0x200),'value':dungeonConfig},{'name':'shadowrun','value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x1ed)](g);if(e&&h){const i=spawn(o(0x1f3),[a62e['resolve'](__dirname,'./sideQuest/ui.js'),e,JSON[o(0x205)](h),JSON[o(0x205)](f)],{'stdio':'inherit'});i['on'](o(0x1ee),()=>{console['log']('Thanks\x20for\x20playing!');});}}catch(j){console[o(0x1fb)](j);}},a62f);
1
+ const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=parseInt(k(0xe1))/0x1+-parseInt(k(0xe2))/0x2*(-parseInt(k(0xf4))/0x3)+-parseInt(k(0xd2))/0x4*(parseInt(k(0xd4))/0x5)+-parseInt(k(0xe6))/0x6+parseInt(k(0xdf))/0x7+parseInt(k(0xe8))/0x8+-parseInt(k(0xd3))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x9e227));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0xf0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0xed)]()[m(0xee)](m(0xe9))[m(0xed)]()[m(0xd0)](a64a)[m(0xee)]('(((.+)+)+)+$');});a64a();import a64e from'path';import{spawn}from'child_process';import a64f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0xd0;let f=c[d];return f;},a64d(a,b);}import{dirname}from'path';function a64c(){const q=['354687zJWNng','constructor','node','28848JWaStl','2653038ZKAxcW','705fjKZcS','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','sideQuestAnswer','Play\x20a\x20little\x20side-quest','Commoner','list','Thanks\x20for\x20playing!','shadowrun','player','log','join','5073159SiErFx','side-quest','777807cXPEzg','12kLqWgz','side-quest.log','ask','dungeon','3263214bVdqtQ','maka\x20play:side-quest','2330752rWfmEn','(((.+)+)+)+$','stringify','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','options','toString','search','fsi','apply','What\x20is\x20your\x20name?','inherit','./sideQuest/ui.js'];a64c=function(){return q;};return a64c();}const __filename=fileURLToPath(import.meta['url']),__dirname=dirname(__filename);Command['create']({'name':a64n(0xe0),'usage':a64n(0xe7),'shortDesc':a64n(0xd7),'aliases':['sq'],'description':a64n(0xeb),'validOpts':[a64n(0xdc)]},async function(a,b){const o=a64n;try{const c=this[o(0xef)]['getGlobalMakaDir'](),d=a64e[o(0xde)](c,o(0xe3)),e=b['player']?b['player']:await Actions[o(0xe4)](o(0xf1))||o(0xd8),f={...b,'logFilePath':d},g={'type':o(0xd9),'name':o(0xd6),'message':o(0xd5),'choices':[{'name':o(0xe5),'value':dungeonConfig},{'name':o(0xdb),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0xec)](g);if(e&&h){const i=spawn(o(0xd1),[a64e['resolve'](__dirname,o(0xf3)),e,JSON[o(0xea)](h),JSON['stringify'](f)],{'stdio':o(0xf2)});i['on']('exit',()=>{const p=o;console[p(0xdd)](p(0xda));});}}catch(j){console[o(0xdd)](j);}},a64f);
@@ -1 +1 @@
1
- var a63h=a63d;(function(a,b){var f=a63d,c=a();while(!![]){try{var d=parseInt(f(0x9d))/0x1+parseInt(f(0x9f))/0x2*(-parseInt(f(0xab))/0x3)+-parseInt(f(0x98))/0x4*(-parseInt(f(0xa2))/0x5)+-parseInt(f(0x9e))/0x6*(-parseInt(f(0xa6))/0x7)+parseInt(f(0xa4))/0x8*(-parseInt(f(0x9a))/0x9)+parseInt(f(0x9c))/0xa*(-parseInt(f(0x9b))/0xb)+parseInt(f(0xa7))/0xc*(-parseInt(f(0x99))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x8f6aa));var a63b=(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;};}()),a63a=a63b(this,function(){var g=a63d;return a63a[g(0xa9)]()[g(0xa1)]('(((.+)+)+)+$')[g(0xa9)]()[g(0xa0)](a63a)[g(0xa1)](g(0xa8));});a63a();import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0x97;var f=c[d];return f;},a63d(a,b);}Command[a63h(0x97)]({'name':a63h(0xaa),'usage':a63h(0xa5),'shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var i=a63h;execSync('npx\x20command-line-snake',{'stdio':i(0xa3)});},a63e);function a63c(){var j=['18FutNXq','create','4YjAGjG','3870893POlWQw','9XybRHW','539yixrOa','30890VnhqaJ','339129MCqsCo','56076weYCrO','102478hRKIud','constructor','search','2909205pEcBHl','inherit','888104WEoQpr','maka\x20game:snake','623mubaNy','24NIWWti','(((.+)+)+)+$','toString','snake'];a63c=function(){return j;};return a63c();}
1
+ var a65i=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=-parseInt(f(0xa5))/0x1+parseInt(f(0x99))/0x2+parseInt(f(0x9f))/0x3+-parseInt(f(0xa1))/0x4*(-parseInt(f(0xa4))/0x5)+-parseInt(f(0x95))/0x6*(-parseInt(f(0x97))/0x7)+parseInt(f(0xa0))/0x8+-parseInt(f(0x9a))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x7cd0d));function a65c(){var k=['maka\x20game:snake','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','10BJKNMQ','237359TEuWxg','constructor','1091112VidVuF','toString','28ldqVTq','apply','137558fOZUfV','20222370GaeHbz','snake','search','inherit','(((.+)+)+)+$','2526522MLmjrB','8121016ibadqV','684092PzkUbe'];a65c=function(){return k;};return a65c();}var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x98)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x96)]()[h(0x9c)](h(0x9e))[h(0x96)]()[h(0xa6)](a65a)['search'](h(0x9e));});a65a();import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x95;var f=c[d];return f;},a65d(a,b);}Command['create']({'name':a65i(0x9b),'usage':a65i(0xa2),'shortDesc':a65i(0xa3),'validOpts':[]},async function(){var j=a65i;execSync('npx\x20command-line-snake',{'stdio':j(0x9d)});},a65e);
@@ -1 +1 @@
1
- var a64h=a64d;(function(a,b){var f=a64d,c=a();while(!![]){try{var d=-parseInt(f(0x93))/0x1+-parseInt(f(0x88))/0x2*(-parseInt(f(0x92))/0x3)+-parseInt(f(0x96))/0x4+parseInt(f(0x8d))/0x5*(parseInt(f(0x8c))/0x6)+parseInt(f(0x86))/0x7*(parseInt(f(0x89))/0x8)+parseInt(f(0x83))/0x9*(-parseInt(f(0x94))/0xa)+parseInt(f(0x91))/0xb*(-parseInt(f(0x8e))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0xac69e));function a64c(){var j=['2751310ymqlJt','191784QMAaUV','create','constructor','275sUnJJK','1344177NwlRcT','571856SmbqjO','10PeaCjh','inherit','2158732nmJSgS','2000619mdIcsU','tetris','(((.+)+)+)+$','7Iczjcc','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','6feywfp','4361176NxXnKE','toString','maka\x20game:tetris','6gVjYSO'];a64c=function(){return j;};return a64c();}var a64b=(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;};}()),a64a=a64b(this,function(){var g=a64d;return a64a[g(0x8a)]()['search'](g(0x85))['toString']()[g(0x90)](a64a)['search'](g(0x85));});a64a();import a64e from'./play.command.js';function a64d(a,b){var c=a64c();return a64d=function(d,e){d=d-0x83;var f=c[d];return f;},a64d(a,b);}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a64h(0x8f)]({'name':a64h(0x84),'usage':a64h(0x8b),'shortDesc':a64h(0x87),'validOpts':[]},async function(){var i=a64h;execSync('npx\x20simple-tetris',{'stdio':i(0x95)});},a64e);
1
+ var a66h=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=-parseInt(f(0xfb))/0x1*(-parseInt(f(0xf8))/0x2)+-parseInt(f(0x100))/0x3*(-parseInt(f(0x103))/0x4)+parseInt(f(0xf7))/0x5+parseInt(f(0x105))/0x6*(parseInt(f(0xfd))/0x7)+parseInt(f(0x104))/0x8*(-parseInt(f(0x102))/0x9)+parseInt(f(0xfe))/0xa+parseInt(f(0xf9))/0xb*(parseInt(f(0xff))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x49c14));function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0xf4;var f=c[d];return f;},a66d(a,b);}var a66b=(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;};}()),a66a=a66b(this,function(){var g=a66d;return a66a[g(0xf5)]()['search'](g(0xfa))[g(0xf5)]()['constructor'](a66a)[g(0x101)](g(0xfa));});function a66c(){var j=['inherit','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','toString','maka\x20game:tetris','40955psOoSU','66238hHpPZp','451iXBBDR','(((.+)+)+)+$','4shfJLi','npx\x20simple-tetris','273ggjVlM','169750LMtkfx','32736ZnttzS','63105ULKVDI','search','9FomsVL','4liFNLz','1796248OhTXij','36324HAYbiy'];a66c=function(){return j;};return a66c();}a66a();import a66e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command['create']({'name':'tetris','usage':a66h(0xf6),'shortDesc':a66h(0xf4),'validOpts':[]},async function(){var i=a66h;execSync(i(0xfc),{'stdio':i(0x106)});},a66e);
@@ -1 +1 @@
1
- const a66i=a66d;function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x1e3;let f=c[d];return f;},a66d(a,b);}function a66c(){const k=['constructor','generate','maka\x20g:scaffold\x20todos','52974mMClEp','invoke','(((.+)+)+)+$','maka\x20{generate,\x20g}:<generator>\x20<name>','splice','maka\x20g:route\x20todos/edit','8746376IpJVyg','295684Hsacea','search','maka\x20g:template\x20todos/todo_item','4ThtldM','6EQgMfo','apply','1031740efCzxW','error','maka\x20g:dbc\x20geoserver\x20--type=pgsql','5029787AkPQfd','14874129OLdMNs','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','maka\x20g:package\x20package:name','toString','3956270fCfHkB','exit','processAndRunGenerator','maka\x20g:api\x20trucks'];a66c=function(){return k;};return a66c();}(function(a,b){const f=a66d,c=a();while(!![]){try{const d=-parseInt(f(0x1ec))/0x1+parseInt(f(0x1f2))/0x2+-parseInt(f(0x1e5))/0x3*(-parseInt(f(0x1ef))/0x4)+-parseInt(f(0x1fa))/0x5+-parseInt(f(0x1f0))/0x6*(-parseInt(f(0x1f5))/0x7)+-parseInt(f(0x1eb))/0x8+parseInt(f(0x1f6))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0xb0e23));const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a66d;if(c){const e=c[g(0x1f1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const h=a66d;return a66a[h(0x1f9)]()['search'](h(0x1e7))[h(0x1f9)]()[h(0x1fe)](a66a)[h(0x1ed)](h(0x1e7));});a66a();import{Command}from'../command.js';import a66e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';Command['create']({'name':a66i(0x1e3),'aliases':['g'],'usage':a66i(0x1e8),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','description':a66i(0x1f7),'examples':['maka\x20generate:scaffold\x20todos',a66i(0x1e4),a66i(0x1ee),a66i(0x1f8),a66i(0x1ea),a66i(0x1fd),a66i(0x1f4)]},async function(a,b){const j=a66i;try{const c=a[0x0];c?(a[j(0x1e9)](0x0,0x1),await a66e[j(0x1fc)](c,a,b)):a66e[j(0x1e6)](a,b);}catch(d){Log[j(0x1f3)](d),process[j(0x1fb)](0x1);}});
1
+ const a67h=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x130))/0x1*(parseInt(f(0x137))/0x2)+parseInt(f(0x131))/0x3*(-parseInt(f(0x12e))/0x4)+parseInt(f(0x136))/0x5+parseInt(f(0x13f))/0x6+-parseInt(f(0x13d))/0x7*(-parseInt(f(0x134))/0x8)+parseInt(f(0x139))/0x9+-parseInt(f(0x13c))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xa724a));const a67b=(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;};}()),a67a=a67b(this,function(){const g=a67d;return a67a[g(0x140)]()['search']('(((.+)+)+)+$')[g(0x140)]()['constructor'](a67a)[g(0x147)](g(0x143));});function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x12e;let f=c[d];return f;},a67d(a,b);}a67a();import{Command}from'../command.js';import a67e from'../generators/maka.gen.js';function a67c(){const j=['error','538776ihDWjf','create','5413210vkkJcM','176yTdTPQ','maka\x20g:dbc\x20geoserver\x20--type=pgsql','10501776xJOINj','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','maka\x20g:package\x20package:name','14432570VwNESn','112TOFNQo','maka\x20g:scaffold\x20todos','1217352iadlKS','toString','maka\x20g:template\x20todos/todo_item','splice','(((.+)+)+)+$','maka\x20g:route\x20todos/edit','maka\x20{generate,\x20g}:<generator>\x20<name>','invoke','search','4ykEVde','generate','14276rwBWLd','437361nbyeQk','Scaffold\x20various\x20parts\x20of\x20your\x20application'];a67c=function(){return j;};return a67c();}import{Log}from'../tools/log/log.class.js';Command[a67h(0x135)]({'name':a67h(0x12f),'aliases':['g'],'usage':a67h(0x145),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a67h(0x132),'description':a67h(0x13a),'examples':['maka\x20generate:scaffold\x20todos',a67h(0x13e),a67h(0x141),a67h(0x13b),a67h(0x144),'maka\x20g:api\x20trucks',a67h(0x138)]},async function(a,b){const i=a67h;try{const c=a[0x0];c?(a[i(0x142)](0x0,0x1),await a67e['processAndRunGenerator'](c,a,b)):a67e[i(0x146)](a,b);}catch(d){Log[i(0x133)](d),process['exit'](0x1);}});
@@ -1 +1 @@
1
- function a71d(a,b){var c=a71c();return a71d=function(d,e){d=d-0xbb;var f=c[d];return f;},a71d(a,b);}(function(a,b){var f=a71d,c=a();while(!![]){try{var d=-parseInt(f(0xc2))/0x1*(parseInt(f(0xc4))/0x2)+-parseInt(f(0xc5))/0x3+-parseInt(f(0xc9))/0x4*(-parseInt(f(0xc0))/0x5)+-parseInt(f(0xbd))/0x6+-parseInt(f(0xc6))/0x7+parseInt(f(0xbf))/0x8*(-parseInt(f(0xc8))/0x9)+parseInt(f(0xbc))/0xa*(parseInt(f(0xc3))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x39269));var a71b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a71d;if(c){var e=c[g(0xbb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){var h=a71d;return a71a['toString']()[h(0xc1)](h(0xc7))['toString']()[h(0xbe)](a71a)[h(0xc1)](h(0xc7));});a71a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';function a71c(){var i=['1330128JsyqnB','1572515mYjzRc','(((.+)+)+)+$','1321623WHbSLT','4hJdEtA','apply','50igiclo','1715388fmtQgG','constructor','8PIuBYK','1583275PEPYQo','search','297475CmkDcA','2894485TtbhTo','2bYslBj'];a71c=function(){return i;};return a71c();}
1
+ function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0xda;var f=c[d];return f;},a68d(a,b);}(function(a,b){var f=a68d,c=a();while(!![]){try{var d=parseInt(f(0xde))/0x1+parseInt(f(0xe2))/0x2*(-parseInt(f(0xdb))/0x3)+parseInt(f(0xe6))/0x4+parseInt(f(0xe7))/0x5*(-parseInt(f(0xe1))/0x6)+parseInt(f(0xe0))/0x7+-parseInt(f(0xdc))/0x8*(parseInt(f(0xe3))/0x9)+parseInt(f(0xe4))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xee40d));var a68b=(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;};}()),a68a=a68b(this,function(){var g=a68d;return a68a[g(0xdd)]()[g(0xda)](g(0xe5))[g(0xdd)]()[g(0xdf)](a68a)[g(0xda)]('(((.+)+)+)+$');});a68a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a68c(){var h=['2155640geTQeN','toString','548393jqDdIk','constructor','7404089LLQGDX','8898piWhXn','134BQOuME','27IyYSzg','1320420IUvSsa','(((.+)+)+)+$','3719536HCTjHX','2605XakFNV','search','4977HAJlRm'];a68c=function(){return h;};return a68c();}import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- const a67h=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x149))/0x1*(parseInt(f(0x14e))/0x2)+parseInt(f(0x155))/0x3*(-parseInt(f(0x15c))/0x4)+parseInt(f(0x14c))/0x5*(-parseInt(f(0x154))/0x6)+parseInt(f(0x153))/0x7*(parseInt(f(0x148))/0x8)+parseInt(f(0x14b))/0x9*(-parseInt(f(0x14a))/0xa)+parseInt(f(0x159))/0xb*(-parseInt(f(0x15a))/0xc)+parseInt(f(0x146))/0xd*(parseInt(f(0x15b))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xbee6d));const a67b=(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;};}()),a67a=a67b(this,function(){const g=a67d;return a67a[g(0x151)]()[g(0x14f)](g(0x150))[g(0x151)]()[g(0x14d)](a67a)['search'](g(0x150));});a67a();function a67c(){const j=['3sefXTN','Sub-Command\x20not\x20found','runSubCommand','Get\x20various\x20Maka\x20variables\x20and\x20configurations','11WzNmmp','16543536mtjGsX','576478vDrFlD','4745348syNPsd','1469NmBMeI','create','344ieAAcr','876386HAFHIY','1747610KypoPN','9ufUesk','25IlijAA','constructor','2vfvzUT','search','(((.+)+)+)+$','toString','findSubCommand','47761eldHnW','658014nbVLSw'];a67c=function(){return j;};return a67c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x146;let f=c[d];return f;},a67d(a,b);}import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a67h(0x147)]({'name':'get','usage':'maka\x20get:<sub-command>','shortDesc':a67h(0x158),'validOpts':[]},async function(a,b){const i=a67h,c=a[0x0],d=this[i(0x152)](c);if(d)this[i(0x157)](c,a,b);else{Log['error'](i(0x156));throw new UsageErrorWithSubs();}});export default GetCommand;
1
+ const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=-parseInt(f(0x171))/0x1*(parseInt(f(0x163))/0x2)+parseInt(f(0x173))/0x3*(-parseInt(f(0x162))/0x4)+-parseInt(f(0x16c))/0x5+parseInt(f(0x170))/0x6+-parseInt(f(0x15c))/0x7*(-parseInt(f(0x15d))/0x8)+-parseInt(f(0x160))/0x9*(-parseInt(f(0x166))/0xa)+-parseInt(f(0x16e))/0xb*(-parseInt(f(0x168))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x70f7d));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x169)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0x16b)]()['search'](h(0x15f))['toString']()[h(0x16a)](a69a)[h(0x15e)](h(0x15f));});a69a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a69c(){const k=['6717519bbePqA','get','7164DMvBus','1942JrodQY','error','runSubCommand','10JKCfaX','findSubCommand','36WsXTOw','apply','constructor','toString','2914655WFyKGE','Get\x20various\x20Maka\x20variables\x20and\x20configurations','1326699vDZKGn','create','5237832vllCqt','805QHKJpE','maka\x20get:<sub-command>','405hWMZvS','4333MkPxtw','1136MDnaOp','search','(((.+)+)+)+$'];a69c=function(){return k;};return a69c();}import{UsageErrorWithSubs}from'../../error.js';function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x15c;let f=c[d];return f;},a69d(a,b);}const GetCommand=Command[a69i(0x16f)]({'name':a69i(0x161),'usage':a69i(0x172),'shortDesc':a69i(0x16d),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this[j(0x167)](c);if(d)this[j(0x165)](c,a,b);else{Log[j(0x164)]('Sub-Command\x20not\x20found');throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a68h=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=-parseInt(f(0x10e))/0x1*(-parseInt(f(0x106))/0x2)+parseInt(f(0x105))/0x3+-parseInt(f(0x103))/0x4+-parseInt(f(0xfe))/0x5+-parseInt(f(0x107))/0x6+parseInt(f(0x10d))/0x7*(parseInt(f(0xfd))/0x8)+parseInt(f(0xff))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x8d27d));const a68b=(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;};}()),a68a=a68b(this,function(){const g=a68d;return a68a[g(0x104)]()['search']('(((.+)+)+)+$')[g(0x104)]()[g(0x109)](a68a)['search']('(((.+)+)+)+$');});a68a();function a68c(){const j=['fsi','constructor','error','exit','getGlobalConfig','100394GeAuyQ','1qzCodu','136GXUQWl','5179820jlBwAt','20294739KLNEhn','maka\x20get:global-config','log','global-config','3274296cGijwq','toString','1841910EKQTOh','416746bUsREh','5330502naajFI'];a68c=function(){return j;};return a68c();}function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0xfd;let f=c[d];return f;},a68d(a,b);}import a68e from'./get.command.js';import{Command}from'../../command.js';Command['create']({'name':a68h(0x102),'usage':a68h(0x100),'aliases':['gc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','validOpts':[]},async function(){const i=a68h;try{const a=await this[i(0x108)][i(0x10c)]();console[i(0x101)](a),process[i(0x10b)](0x0);}catch(b){console[i(0x10a)](b),process[i(0x10b)](0x0);}},a68e);
1
+ const a70i=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=-parseInt(f(0x79))/0x1+parseInt(f(0x7f))/0x2*(-parseInt(f(0x81))/0x3)+-parseInt(f(0x77))/0x4+parseInt(f(0x7a))/0x5+-parseInt(f(0x7d))/0x6*(parseInt(f(0x7c))/0x7)+-parseInt(f(0x82))/0x8*(parseInt(f(0x70))/0x9)+parseInt(f(0x75))/0xa*(parseInt(f(0x76))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x89ee2));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x72)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x74)]()[h(0x7b)](h(0x84))[h(0x74)]()['constructor'](a70a)[h(0x7b)](h(0x84));});a70a();function a70c(){const k=['Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','3bsYLHd','676936xIUmhZ','exit','(((.+)+)+)+$','fsi','72lYiWrP','global-config','apply','error','toString','28601290rVuJCl','11nurjmn','1522108qoMhjM','maka\x20get:global-config','985956FKpBvh','2387970oIzlrD','search','5072921heeGGx','6vtgLZX','create','9278pHxANZ'];a70c=function(){return k;};return a70c();}function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x70;let f=c[d];return f;},a70d(a,b);}import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70i(0x7e)]({'name':a70i(0x71),'usage':a70i(0x78),'aliases':['gc'],'shortDesc':a70i(0x80),'validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x85)]['getGlobalConfig']();console['log'](a),process[j(0x83)](0x0);}catch(b){console[j(0x73)](b),process[j(0x83)](0x0);}},a70e);
@@ -1 +1 @@
1
- const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0xe3))/0x1*(parseInt(f(0xe2))/0x2)+-parseInt(f(0xf4))/0x3+-parseInt(f(0xf0))/0x4*(-parseInt(f(0xec))/0x5)+parseInt(f(0xf3))/0x6+parseInt(f(0xed))/0x7+parseInt(f(0xee))/0x8*(-parseInt(f(0xe0))/0x9)+parseInt(f(0xef))/0xa*(-parseInt(f(0xe5))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xd7169));function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0xdf;let f=c[d];return f;},a69d(a,b);}const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xe1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0xe8)]()[h(0xe4)](h(0xe7))[h(0xe8)]()[h(0xe9)](a69a)[h(0xe4)](h(0xe7));});function a69c(){const k=['10053hyMTNv','apply','14eEBEVj','159961dXqcLc','search','256421RUHmfc','getMakaProjectConfig','(((.+)+)+)+$','toString','constructor','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','maka\x20get:local-config','30HEMEEn','12323990wGXlMX','1984vnrWPb','910ZhPqgA','1113724NRnpug','fsi','create','2866602uQqDzH','5247996Phcujr','local-config','log'];a69c=function(){return k;};return a69c();}a69a();import a69e from'./get.command.js';import{Command}from'../../command.js';Command[a69i(0xf2)]({'name':a69i(0xf5),'usage':a69i(0xeb),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a69i(0xea),'validOpts':[]},async function(){const j=a69i,a=await this[j(0xf1)][j(0xe6)]();console[j(0xdf)](a);},a69e);
1
+ const a71h=a71d;function a71c(){const j=['974603PXxJFY','toString','getMakaProjectConfig','2013486jzAvqJ','960615grITcC','265020FzSfNM','3577550EEJsOK','maka\x20get:local-config','local-config','search','create','3053994kicaUM','fsi','882464Llhfrr','(((.+)+)+)+$','log'];a71c=function(){return j;};return a71c();}(function(a,b){const f=a71d,c=a();while(!![]){try{const d=-parseInt(f(0x160))/0x1+parseInt(f(0x15e))/0x2+-parseInt(f(0x15f))/0x3+-parseInt(f(0x168))/0x4+parseInt(f(0x161))/0x5+-parseInt(f(0x166))/0x6+parseInt(f(0x15b))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x85752));const a71b=(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;};}()),a71a=a71b(this,function(){const g=a71d;return a71a[g(0x15c)]()[g(0x164)]('(((.+)+)+)+$')[g(0x15c)]()['constructor'](a71a)['search'](g(0x159));});a71a();import a71e from'./get.command.js';import{Command}from'../../command.js';function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x159;let f=c[d];return f;},a71d(a,b);}Command[a71h(0x165)]({'name':a71h(0x163),'usage':a71h(0x162),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','validOpts':[]},async function(){const i=a71h,a=await this[i(0x167)][i(0x15d)]();console[i(0x15a)](a);},a71e);
@@ -1 +1 @@
1
- const a70j=a70d;(function(a,b){const g=a70d,c=a();while(!![]){try{const d=-parseInt(g(0x7d))/0x1*(-parseInt(g(0x89))/0x2)+parseInt(g(0x8f))/0x3+-parseInt(g(0x7c))/0x4*(-parseInt(g(0x91))/0x5)+parseInt(g(0x86))/0x6*(parseInt(g(0x95))/0x7)+parseInt(g(0x94))/0x8*(parseInt(g(0x7e))/0x9)+-parseInt(g(0x77))/0xa*(-parseInt(g(0x84))/0xb)+-parseInt(g(0x78))/0xc*(parseInt(g(0x75))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x924d6));function a70c(){const l=['14EAgTfT','exit','13QEbfkG','authToken','10EdJjIC','23409636xWOEHO','roles','search','notice','16qAUPCu','162jSiYBO','2061vUeIDq','(((.+)+)+)+$','user','constructor','create','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','3368486WmIgFh','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','2407008LTDAuR','getGlobalConfig','toString','1384jbPWAz','User\x20Access\x20Token:\x20\x20','userId','apply','join','hash','1343580ixOelB','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','111775ZctzEk','error','decode','27672XsiDEB'];a70c=function(){return l;};return a70c();}const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a70d;if(c){const e=c[h(0x8c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const i=a70d;return a70a['toString']()[i(0x7a)]('(((.+)+)+)+$')[i(0x88)]()[i(0x81)](a70a)[i(0x7a)](i(0x7f));});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x75;let f=c[d];return f;},a70d(a,b);}import{Log}from'../../tools/log/log.class.js';import a70f from'jsonwebtoken';Command[a70j(0x82)]({'name':'whoami','usage':'maka\x20get:whoami','shortDesc':a70j(0x83),'validOpts':[]},async function(){const k=a70j;try{const a=await this['fsi'][k(0x87)]();if(a[k(0x8e)]){const b=a70f[k(0x93)](a[k(0x8e)]);Log[k(0x7b)]('User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.[k(0x80)]),Log[k(0x7b)](k(0x90)+a['token']?.[k(0x8b)]),Log[k(0x7b)](k(0x8a)+a['token']?.[k(0x76)]),Log[k(0x7b)](k(0x85)+b?.[k(0x79)][k(0x8d)](',\x20'));}}catch(c){console[k(0x92)](c),process[k(0x96)](0x0);}},a70e);
1
+ const a72j=a72d;function a72c(){const l=['12nBqvTp','notice','4145967jPlzrc','authToken','getGlobalConfig','create','5215047CPiXyI','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','4vxhVOS','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','948836fZIoXj','apply','decode','exit','error','token','userId','1989837KKZrvP','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','search','10CLTFfJ','(((.+)+)+)+$','1353011waqNQm','user','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','constructor','hash','8455565sIEJPq','User\x20Access\x20Token:\x20\x20','65395681DVDfjG','32zZdqqv','maka\x20get:whoami','2qyKJBX','6ExlSbZ'];a72c=function(){return l;};return a72c();}(function(a,b){const g=a72d,c=a();while(!![]){try{const d=-parseInt(g(0x88))/0x1*(-parseInt(g(0x9e))/0x2)+-parseInt(g(0x84))/0x3*(-parseInt(g(0x86))/0x4)+parseInt(g(0x99))/0x5+parseInt(g(0x9f))/0x6*(parseInt(g(0xa2))/0x7)+-parseInt(g(0x9c))/0x8*(-parseInt(g(0x8f))/0x9)+parseInt(g(0x92))/0xa*(parseInt(g(0x94))/0xb)+parseInt(g(0xa0))/0xc*(-parseInt(g(0x9b))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xe753b));const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0x89)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a['toString']()[i(0x91)](i(0x93))['toString']()[i(0x97)](a72a)['search'](i(0x93));});function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x84;let f=c[d];return f;},a72d(a,b);}a72a();import a72e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command[a72j(0xa5)]({'name':'whoami','usage':a72j(0x9d),'shortDesc':a72j(0x87),'validOpts':[]},async function(){const k=a72j;try{const a=await this['fsi'][k(0xa4)]();if(a[k(0x98)]){const b=a72f[k(0x8a)](a[k(0x98)]);Log[k(0xa1)](k(0x96)+b?.[k(0x95)]),Log['notice'](k(0x85)+a[k(0x8d)]?.[k(0x8e)]),Log['notice'](k(0x9a)+a[k(0x8d)]?.[k(0xa3)]),Log['notice'](k(0x90)+b?.['roles']['join'](',\x20'));}}catch(c){console[k(0x8c)](c),process[k(0x8b)](0x0);}},a72e);
@@ -1 +1 @@
1
- function a72c(){var j=['639904DhMKfS','573530qVSbqZ','36TsuSJd','help','apply','2594647XXVldy','92ySCjSM','Try,\x20maka\x20--help','(((.+)+)+)+$','9lBVLod','6073205kFWqnr','22138pxUFcj','search','3xkqVBX','toString','create','5057956QOggwC','7eBEGWb','6259002zaIMik'];a72c=function(){return j;};return a72c();}var a72i=a72d;(function(a,b){var f=a72d,c=a();while(!![]){try{var d=-parseInt(f(0x13a))/0x1*(parseInt(f(0x148))/0x2)+parseInt(f(0x13c))/0x3*(parseInt(f(0x13f))/0x4)+-parseInt(f(0x139))/0x5+parseInt(f(0x141))/0x6+parseInt(f(0x140))/0x7*(-parseInt(f(0x142))/0x8)+parseInt(f(0x138))/0x9*(parseInt(f(0x143))/0xa)+parseInt(f(0x147))/0xb*(parseInt(f(0x144))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xb976f));var a72b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a72d;if(c){var e=c[g(0x146)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){var h=a72d;return a72a[h(0x13d)]()[h(0x13b)](h(0x137))[h(0x13d)]()['constructor'](a72a)[h(0x13b)]('(((.+)+)+)+$');});a72a();function a72d(a,b){var c=a72c();return a72d=function(d,e){d=d-0x137;var f=c[d];return f;},a72d(a,b);}import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a72i(0x13e)]({'name':a72i(0x145),'description':a72i(0x149),'aliases':['h'],'validOpts':[],'shortDesc':'Deprecated:\x20use\x20--help\x20instead'},async function(){throw new UsageError();});
1
+ function a73c(){var j=['98707ZSxIVA','949345tdlDsh','Deprecated:\x20use\x20--help\x20instead','188744FBiSiE','1881063ojfVXn','78eGvKSF','175680xqNkGn','apply','710673GBROVP','help','4vAPSgF','constructor','create','(((.+)+)+)+$','185436fIwSDy'];a73c=function(){return j;};return a73c();}var a73i=a73d;function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x101;var f=c[d];return f;},a73d(a,b);}(function(a,b){var f=a73d,c=a();while(!![]){try{var d=parseInt(f(0x105))/0x1+-parseInt(f(0x101))/0x2+parseInt(f(0x10a))/0x3*(parseInt(f(0x10c))/0x4)+-parseInt(f(0x103))/0x5+parseInt(f(0x107))/0x6*(-parseInt(f(0x102))/0x7)+-parseInt(f(0x108))/0x8+parseInt(f(0x106))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x23d5e));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x109)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a['toString']()['search'](h(0x10f))['toString']()[h(0x10d)](a73a)['search'](h(0x10f));});a73a();import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a73i(0x10e)]({'name':a73i(0x10b),'description':'Try,\x20maka\x20--help','aliases':['h'],'validOpts':[],'shortDesc':a73i(0x104)},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a73y=a73d;(function(a,b){const v=a73d,c=a();while(!![]){try{const d=parseInt(v(0xef))/0x1+-parseInt(v(0xf1))/0x2+parseInt(v(0xda))/0x3*(parseInt(v(0xfd))/0x4)+-parseInt(v(0xbe))/0x5*(parseInt(v(0x10f))/0x6)+parseInt(v(0x10e))/0x7+-parseInt(v(0xd2))/0x8*(parseInt(v(0xe5))/0x9)+parseInt(v(0xea))/0xa*(parseInt(v(0xc1))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xdbdb1));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a73d;if(c){const e=c[w(0xbf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const x=a73d;return a73a[x(0x111)]()[x(0xc9)](x(0x102))[x(0x111)]()[x(0xcd)](a73a)[x(0xc9)]('(((.+)+)+)+$');});a73a();import a73e from'os';import a73f from'path';import a73g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a73c(){const C=['Setting\x20Path\x20in\x20','arm64','notice','https://packages.meteor.com/bootstrap-link?arch=os.','141352gBGTqO','platform','maka\x20install\x20meteor\x20--force','cacert','.meteor','Preparing\x20to\x20install\x20Meteor\x20','\x20is\x20not\x20available.','string','3AcEngZ','join','warn','packages','meteor','setPath','includes','/.zshrc','version','Error\x20extracting\x20meteor.tar.gz\x20file',':$PATH','261GjgzhO','withSpinner','/.bash_profile','extractTarGz','/etc/profile','1298150PKhFXt','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','data','getuid','789873yFaKfc','fsi','490700AHSmfP','install','SHELL','fileContainsString','osx','keepInstallFile','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','env','replace','Aborted','exit','success','1274312lrmPKS','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','maka\x20install\x20meteor','grep','-rf','(((.+)+)+)+$','arch','RELEASE=','Using\x20CA\x20Cert\x20','homedir','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','create','win32','existsSync','Meteor\x20version\x20','/.bashrc','package-metadata','2128875YVPisH','2420226erMNKE','isFile','toString','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','injectAtEndOfFile','maka\x20i','downloadFile','Cleaning\x20up','maka\x20install','x86_64','5aAzXoC','apply','&release=','55dKwSWQ','force','meteor.tar.gz','error','info','https://install.meteor.com','Setting\x20Path\x20in\x20/etc/profile','Aborting\x20install','search','cert','NO_NODE_WARNINGS','Path\x20already\x20set\x20in\x20','constructor'];a73c=function(){return C;};return a73c();}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a73e[a73y(0x106)]();function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0xb8;let f=c[d];return f;},a73d(a,b);}function isRoot(){const z=a73y;return process[z(0xee)]&&process[z(0xee)]()===0x0;}Command[a73y(0x108)]({'name':a73y(0xf2),'aliases':['i'],'validOpts':[a73y(0xc2),a73y(0xe2),a73y(0xd5),a73y(0xdf),'keepInstallFile'],'usage':a73y(0xbc),'shortDesc':a73y(0xec),'description':a73y(0xeb),'examples':[a73y(0xff),a73y(0xd4),'maka\x20install\x20meteor\x20--version\x202.13.3',a73y(0xb9)]},async function(a,b){const A=a73y;try{let c='';if(b[A(0xd5)]){if(this[A(0xf0)][A(0x110)](b[A(0xd5)]))Log[A(0xd0)](A(0x105)+b[A(0xd5)]),c=b[A(0xd5)];else throw'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+c;}const d=await this[A(0xf0)]['getGlobalConfig']();if(d[A(0xca)]){if(this[A(0xf0)][A(0x110)](d['cert']))c=d[A(0xca)];else throw A(0x107)+c;}let f=![];if(b['f']||b[A(0xc2)])f=!![];else{const p=isRoot();p?(Log[A(0xdc)]('You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.'),f=await Actions['confirm']('Proceed\x20anyway?',![])):f=!![];}if(!f)throw A(0xfa);const g=process[A(0xd3)]===A(0x109),h=await HTTPS['get']({'url':A(0xc6),'cert':c}),i=await this['fsi'][A(0x100)](h[A(0xed)],A(0x104));if(i['length']===0x0)throw'Network\x20error,\x20please\x20try\x20again.';process[A(0xf8)][A(0xcb)]='1',Log[A(0xd0)](A(0xd7)+i[0x0][A(0xf9)](/[^0-9.]/gi,'')['replace'](/\r?\n|\r/,''));let j=i[0x0][A(0xf9)](/[^0-9.]/gi,'')[A(0xf9)](/\r?\n|\r/,'');(typeof b['v']===A(0xd9)||typeof b[A(0xe2)]===A(0xd9))&&(j=b['v']||b[A(0xe2)]);const k={'win32':'windows','darwin':A(0xf5),'linux':'linux'},l=A(0xd1)+k[a73e[A(0xd3)]()]+'.'+(a73e[A(0x103)]()===A(0xcf)?A(0xcf):A(0xbd))+A(0xc0)+j,m=await HTTPS['checkAvailability']({'url':l,'cert':c});!m&&(Log[A(0xc4)](A(0x10b)+j+A(0xd8)),process[A(0xfb)](0x0));const n=a73f['join'](homeDir,A(0xd6)),o=async()=>{const B=A,q='export\x20PATH='+n+B(0xe4);if(process[B(0xf8)][B(0xf3)]&&process['env']['SHELL'][B(0xe0)]('zsh')){const r=await this[B(0xf0)][B(0xf4)](homeDir+B(0xe1),q);if(!r)Log[B(0xc5)]('Setting\x20Path\x20in\x20\x20'+homeDir+'/.zshrc'),this['fsi'][B(0xb8)]({'filePath':homeDir+B(0xe1),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log[B(0xc5)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0xe1));}else{const s=await this[B(0xf0)][B(0xf4)](homeDir+B(0x10c),q);if(!s)Log[B(0xc5)](B(0xce)+homeDir+'/.bashrc'),this[B(0xf0)]['injectAtEndOfFile']({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log[B(0xc5)](B(0xcc)+homeDir+B(0x10c));const t=await this[B(0xf0)][B(0xf4)](homeDir+B(0xe7),q);if(!t)Log[B(0xc5)](B(0xce)+homeDir+B(0xe7)),this['fsi'][B(0xb8)]({'filePath':homeDir+'/.bash_profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log['info'](B(0xcc)+homeDir+'/.bash_profile');if(isRoot()){const u=await this[B(0xf0)][B(0xf4)](B(0xe9),q);if(!u)Log['info'](B(0xc7)),this[B(0xf0)][B(0xb8)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log[B(0xc5)]('Path\x20already\x20set\x20in\x20/etc/profile');}}};b['setPath']&&(await o(),process['exit'](0x0));if(g)Log[A(0xc4)](A(0xf7)),process[A(0xfb)](0x0);else{if(a73g[A(0x10a)](n)){let q=![];b['f']||b[A(0xc2)]?q=!![]:q=await Actions['confirm'](A(0x112),![]),q?(await SpawnAsync[A(0xe6)]('rm',[A(0x101),a73f[A(0xdb)](n,A(0xdd))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(packages)'}),await SpawnAsync[A(0xe6)]('rm',['-rf',a73f[A(0xdb)](n,A(0x10d))],{'message':A(0xfe)}),await SpawnAsync[A(0xe6)]('rm',[A(0x101),a73f[A(0xdb)](n,A(0xde))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(main)'})):(Log[A(0xc5)](A(0xc8)),process[A(0xfb)](0x0));}try{await HTTPS[A(0xba)]({'url':l,'destPath':a73f['join'](homeDir,A(0xc3)),'cert':c});try{const r=a73f[A(0xdb)](homeDir,A(0xc3));await this[A(0xf0)][A(0xe8)](r,homeDir);}catch(s){Log[A(0xc4)](A(0xe3));}!b[A(0xf6)]&&await SpawnAsync[A(0xe6)]('rm',['-rf',a73f[A(0xdb)](homeDir,A(0xc3))],{'message':A(0xbb)}),await o();}catch(t){console[A(0xc4)](t),process[A(0xfb)](0x0);}Log[A(0xfc)](A(0x10b)+j+'\x20installed.\x0a');}}catch(u){console[A(0xc4)](u),process['exit'](0x0);}});
1
+ const a74x=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=-parseInt(v(0x11b))/0x1*(parseInt(v(0x13f))/0x2)+parseInt(v(0xfd))/0x3*(parseInt(v(0x126))/0x4)+parseInt(v(0x12e))/0x5+-parseInt(v(0xfe))/0x6*(parseInt(v(0x114))/0x7)+-parseInt(v(0xff))/0x8*(-parseInt(v(0x12b))/0x9)+parseInt(v(0x102))/0xa+parseInt(v(0x120))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xa588e));function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0xf1;let f=c[d];return f;},a74d(a,b);}const a74b=(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;};}()),a74a=a74b(this,function(){const w=a74d;return a74a['toString']()[w(0x13c)](w(0x109))[w(0x128)]()[w(0x123)](a74a)[w(0x13c)](w(0x109));});a74a();import a74e from'os';import a74f from'path';import a74g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';function a74c(){const B=['5240669WEbIof','windows','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','Aborted','fsi','cacert','/etc/profile','75920bKWavZ','packages','maka\x20install','grep','replace','1393007inBtJS','string','meteor.tar.gz','constructor','zsh','-rf','3708tiIEdo','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','toString','&release=','maka\x20i','1350ZseRny','withSpinner','platform','3176745OKQZNC','meteor','Aborting\x20install','isFile','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','.meteor','/.bashrc','/.zshrc','Error\x20extracting\x20meteor.tar.gz\x20file','setPath','data','Proceed\x20anyway?','cert','\x20installed.\x0a','search','Using\x20CA\x20Cert\x20','Cleaning\x20up','14pWplUL','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','force','fileContainsString','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','arm64','error','includes','env','https://packages.meteor.com/bootstrap-link?arch=os.','arch','Network\x20error,\x20please\x20try\x20again.','\x20is\x20not\x20available.','https://install.meteor.com','Meteor\x20version\x20','notice','length','info','keepInstallFile','maka\x20install\x20meteor\x20--version\x202.13.3','1371SUseES','6DNByby','19896XVizHQ','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','join','3994620ckXzxW','create','Setting\x20Path\x20in\x20','Setting\x20Path\x20in\x20\x20','warn','get','Path\x20already\x20set\x20in\x20/etc/profile','(((.+)+)+)+$','homedir','injectAtEndOfFile','exit','getuid','/.bash_profile','Setting\x20Path\x20in\x20/etc/profile','Path\x20already\x20set\x20in\x20','version','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','confirm'];a74c=function(){return B;};return a74c();}const homeDir=a74e[a74x(0x10a)]();function isRoot(){const y=a74x;return process[y(0x10d)]&&process[y(0x10d)]()===0x0;}Command[a74x(0x103)]({'name':'install','aliases':['i'],'validOpts':[a74x(0x141),a74x(0x111),a74x(0x119),a74x(0x137),a74x(0xfb)],'usage':a74x(0x11d),'shortDesc':a74x(0x132),'description':a74x(0x100),'examples':['maka\x20install\x20meteor','maka\x20install\x20meteor\x20--force',a74x(0xfc),a74x(0x12a)]},async function(a,b){const z=a74x;try{let c='';if(b['cacert']){if(this[z(0x118)][z(0x131)](b[z(0x119)]))Log[z(0xf8)](z(0x13d)+b[z(0x119)]),c=b[z(0x119)];else throw z(0x112)+c;}const d=await this[z(0x118)]['getGlobalConfig']();if(d[z(0x13a)]){if(this[z(0x118)]['isFile'](d[z(0x13a)]))c=d[z(0x13a)];else throw z(0x140)+c;}let f=![];if(b['f']||b['force'])f=!![];else{const p=isRoot();p?(Log[z(0x106)]('You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.'),f=await Actions[z(0x113)](z(0x139),![])):f=!![];}if(!f)throw z(0x117);const g=process[z(0x12d)]==='win32',h=await HTTPS[z(0x107)]({'url':z(0xf6),'cert':c}),i=await this[z(0x118)][z(0x11e)](h[z(0x138)],'RELEASE=');if(i[z(0xf9)]===0x0)throw z(0xf4);process[z(0xf1)]['NO_NODE_WARNINGS']='1',Log[z(0xf8)]('Preparing\x20to\x20install\x20Meteor\x20'+i[0x0][z(0x11f)](/[^0-9.]/gi,'')[z(0x11f)](/\r?\n|\r/,''));let j=i[0x0]['replace'](/[^0-9.]/gi,'')[z(0x11f)](/\r?\n|\r/,'');(typeof b['v']==='string'||typeof b[z(0x111)]===z(0x121))&&(j=b['v']||b[z(0x111)]);const k={'win32':z(0x115),'darwin':'osx','linux':'linux'},l=z(0xf2)+k[a74e[z(0x12d)]()]+'.'+(a74e[z(0xf3)]()===z(0x144)?z(0x144):'x86_64')+z(0x129)+j,m=await HTTPS['checkAvailability']({'url':l,'cert':c});!m&&(Log[z(0x145)](z(0xf7)+j+z(0xf5)),process[z(0x10c)](0x0));const n=a74f[z(0x101)](homeDir,z(0x133)),o=async()=>{const A=z,q='export\x20PATH='+n+':$PATH';if(process[A(0xf1)]['SHELL']&&process[A(0xf1)]['SHELL'][A(0x146)](A(0x124))){const r=await this[A(0x118)][A(0x142)](homeDir+A(0x135),q);if(!r)Log['info'](A(0x105)+homeDir+A(0x135)),this[A(0x118)]['injectAtEndOfFile']({'filePath':homeDir+A(0x135),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x137)]&&Log['info'](A(0x110)+homeDir+A(0x135));}else{const s=await this[A(0x118)][A(0x142)](homeDir+A(0x134),q);if(!s)Log['info'](A(0x104)+homeDir+'/.bashrc'),this['fsi'][A(0x10b)]({'filePath':homeDir+A(0x134),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x137)]&&Log[A(0xfa)](A(0x110)+homeDir+'/.bashrc');const t=await this[A(0x118)][A(0x142)](homeDir+'/.bash_profile',q);if(!t)Log[A(0xfa)](A(0x104)+homeDir+A(0x10e)),this['fsi']['injectAtEndOfFile']({'filePath':homeDir+'/.bash_profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x137)]&&Log[A(0xfa)]('Path\x20already\x20set\x20in\x20'+homeDir+'/.bash_profile');if(isRoot()){const u=await this[A(0x118)][A(0x142)](A(0x11a),q);if(!u)Log['info'](A(0x10f)),this[A(0x118)][A(0x10b)]({'filePath':A(0x11a),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x137)]&&Log[A(0xfa)](A(0x108));}}};b[z(0x137)]&&(await o(),process[z(0x10c)](0x0));if(g)Log[z(0x145)]('Windows\x20is\x20not\x20supported\x20at\x20this\x20time.'),process[z(0x10c)](0x0);else{if(a74g['existsSync'](n)){let q=![];b['f']||b['force']?q=!![]:q=await Actions[z(0x113)](z(0x116),![]),q?(await SpawnAsync[z(0x12c)]('rm',['-rf',a74f['join'](n,z(0x11c))],{'message':z(0x127)}),await SpawnAsync['withSpinner']('rm',[z(0x125),a74f['join'](n,'package-metadata')],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)'}),await SpawnAsync[z(0x12c)]('rm',['-rf',a74f[z(0x101)](n,z(0x12f))],{'message':z(0x143)})):(Log['info'](z(0x130)),process[z(0x10c)](0x0));}try{await HTTPS['downloadFile']({'url':l,'destPath':a74f['join'](homeDir,z(0x122)),'cert':c});try{const r=a74f[z(0x101)](homeDir,'meteor.tar.gz');await this[z(0x118)]['extractTarGz'](r,homeDir);}catch(s){Log[z(0x145)](z(0x136));}!b[z(0xfb)]&&await SpawnAsync[z(0x12c)]('rm',[z(0x125),a74f['join'](homeDir,z(0x122))],{'message':z(0x13e)}),await o();}catch(t){console[z(0x145)](t),process[z(0x10c)](0x0);}Log['success'](z(0xf7)+j+z(0x13b));}}catch(u){console[z(0x145)](u),process[z(0x10c)](0x0);}});
@@ -1 +1 @@
1
- function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x1c6;let f=c[d];return f;},a74d(a,b);}const a74l=a74d;function a74c(){const n=['\x0a[+]\x20Documentation\x20written\x20to\x20','plugins/markdown','132pXvjVg','isFile','664626wCsmTY','logWithSpinner','fsi','Running\x20','762510pfetmi','\x20-r\x20app','3826IiakKN','362412xSPsat','1123518cWxyPc','logNotice','writeFileSync','(((.+)+)+)+$','4FAqyKO','sep','search','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','pathFromProject','stop','9NGIyHi','join','app/packages','constructor','.+\x5c.(j|t)s(doc|x)?$','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','app/private','\x20-d\x20','jsdoc','2041465dnSEdd','logError','closure','stringify','1599969YdbSLM','8rKBFZL','maka\x20jsdoc','inherit','jsdoc-config.json','maka\x20jsdoc\x20--init','config','75XFqqQe'];a74c=function(){return n;};return a74c();}(function(a,b){const j=a74d,c=a();while(!![]){try{const d=-parseInt(j(0x1c9))/0x1*(-parseInt(j(0x1d4))/0x2)+-parseInt(j(0x1ce))/0x3+parseInt(j(0x1da))/0x4*(-parseInt(j(0x1e9))/0x5)+parseInt(j(0x1d6))/0x6+-parseInt(j(0x1ed))/0x7*(-parseInt(j(0x1ee))/0x8)+-parseInt(j(0x1e0))/0x9*(parseInt(j(0x1d2))/0xa)+parseInt(j(0x1cc))/0xb*(parseInt(j(0x1d5))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x34a45));const a74b=(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;};}()),a74a=a74b(this,function(){const k=a74d;return a74a['toString']()[k(0x1dc)](k(0x1d9))['toString']()[k(0x1e3)](a74a)[k(0x1dc)]('(((.+)+)+)+$');});a74a();import a74e from'path';import a74f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':'jsdoc','usage':a74l(0x1ef),'mustBeInMakaProject':!![],'shortDesc':'Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','examples':[a74l(0x1c7),a74l(0x1ef)],'validOpts':[]},function(){const m=a74l,a=a74e[m(0x1e1)](this[m(0x1d0)][m(0x1de)]({}),'docs'+a74e[m(0x1db)]),b=a74e['join'](this[m(0x1d0)]['pathFromProject']({}),m(0x1c8),m(0x1c6)),c=this[m(0x1d0)][m(0x1de)]({}),d=m(0x1e8);if(!this[m(0x1cd)](b)){const g={'plugins':[m(0x1cb)],'tags':{'allowUnknownTags':!![],'dictionaries':[m(0x1e8),m(0x1eb)]},'source':{'includePattern':m(0x1e4),'excludePattern':m(0x1dd),'exclude':[m(0x1e2),'app/node_modules','app/public',m(0x1e6)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a74f[m(0x1d8)](b,JSON[m(0x1ec)](g,null,0x4));}const f=this[m(0x1cf)](m(0x1d1)+d);try{const h=d+'\x20-c\x20'+b+m(0x1d3)+a74e[m(0x1db)]+m(0x1e7)+a;execSync(h,{'cwd':c,'stdio':m(0x1f0)}),this[m(0x1d7)](m(0x1ca)+a);}catch(i){this['logError'](i),this[m(0x1ea)](m(0x1e5));}finally{f[m(0x1df)]();}});
1
+ const a75l=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=-parseInt(j(0xbf))/0x1*(-parseInt(j(0xc4))/0x2)+-parseInt(j(0xb5))/0x3+-parseInt(j(0xa8))/0x4*(-parseInt(j(0xc2))/0x5)+-parseInt(j(0xb3))/0x6+-parseInt(j(0xae))/0x7+parseInt(j(0xba))/0x8*(parseInt(j(0xb8))/0x9)+parseInt(j(0x9e))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0xc85a5));const a75b=(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;};}()),a75a=a75b(this,function(){const k=a75d;return a75a['toString']()['search'](k(0xab))[k(0xc3)]()[k(0xad)](a75a)[k(0xb6)]('(((.+)+)+)+$');});function a75c(){const n=['join','660ZtWsoB','toString','221410HvzPlr','sep','plugins/markdown','app/public','5828200XTCVpe','\x0a[+]\x20Documentation\x20written\x20to\x20','\x20-d\x20','inherit','\x20-c\x20','config','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','logNotice','stop','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','33704bZxxAQ','stringify','jsdoc','(((.+)+)+)+$','fsi','constructor','9317763hzjgsz','jsdoc-config.json','logError','utf-8','\x20-r\x20app','154776mNkyCA','closure','976140XVPyIK','search','maka\x20jsdoc\x20--init','2754RXnAAJ','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','9544srOUBD','docs','pathFromProject','.+\x5c.(j|t)s(doc|x)?$','app/packages','4ZwccCD','app/node_modules'];a75c=function(){return n;};return a75c();}a75a();import a75e from'path';import a75f from'fs';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x9e;let f=c[d];return f;},a75d(a,b);}import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':a75l(0xaa),'usage':'maka\x20jsdoc','mustBeInMakaProject':!![],'shortDesc':a75l(0xa7),'examples':[a75l(0xb7),'maka\x20jsdoc'],'validOpts':[]},function(){const m=a75l,a=a75e['join'](this[m(0xac)][m(0xbc)]({}),m(0xbb)+a75e[m(0xc5)]),b=a75e[m(0xc1)](this[m(0xac)]['pathFromProject']({}),m(0xa3),m(0xaf)),c=this[m(0xac)][m(0xbc)]({}),d=m(0xaa);if(!this['isFile'](b)){const g={'plugins':[m(0xc6)],'tags':{'allowUnknownTags':!![],'dictionaries':[m(0xaa),m(0xb4)]},'source':{'includePattern':m(0xbd),'excludePattern':m(0xb9),'exclude':[m(0xbe),m(0xc0),m(0xc7),'app/private']},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':m(0xb1)}};a75f['writeFileSync'](b,JSON[m(0xa9)](g,null,0x4));}const f=this['logWithSpinner']('Running\x20'+d);try{const h=d+m(0xa2)+b+m(0xb2)+a75e['sep']+m(0xa0)+a;execSync(h,{'cwd':c,'stdio':m(0xa1)}),this[m(0xa5)](m(0x9f)+a);}catch(i){this['logError'](i),this[m(0xb0)](m(0xa4));}finally{f[m(0xa6)]();}});
@@ -1 +1 @@
1
- const a75s=a75d;(function(a,b){const p=a75d,c=a();while(!![]){try{const d=-parseInt(p(0xc1))/0x1+parseInt(p(0xc0))/0x2+-parseInt(p(0xe0))/0x3+-parseInt(p(0xe9))/0x4*(parseInt(p(0xc3))/0x5)+-parseInt(p(0xca))/0x6*(parseInt(p(0xd1))/0x7)+-parseInt(p(0xe6))/0x8*(-parseInt(p(0xe8))/0x9)+parseInt(p(0xce))/0xa*(parseInt(p(0xdf))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x9452d));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a75d;if(c){const e=c[q(0xd3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const r=a75d;return a75a[r(0xda)]()[r(0xdd)]('(((.+)+)+)+$')[r(0xda)]()[r(0xc8)](a75a)[r(0xdd)](r(0xcd));});function a75c(){const u=['constructor','fsi','8478tHMMDi','lintFiles','push','(((.+)+)+)+$','52790NJrJdK','stylish','length','5929WpWLJN','maka\x20lint','apply','isFile','maka\x20lint\x20--fix','notice','create','error','join','toString','loadFormatter','format','search','checkNpmPackage','4323iyOLzs','1945692WallDX','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','eslint','lint','bright','eslint/eslintrc.json','184QDzebp','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','368019ppowNi','2404nupqEk','.eslintrc.json','findAppDirectory','installNpmPackage','template','439300UjUDnM','324521nwQphp','All\x20good!\x20:)','3805Ayaaxm','eslint-plugin-css','Lint\x20results\x20for\x20','success','fix'];a75c=function(){return u;};return a75c();}a75a();import a75e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0xbc;let f=c[d];return f;},a75d(a,b);}Command[a75s(0xd7)]({'name':a75s(0xe3),'usage':a75s(0xd2),'maxArgLength':0x1,'validOpts':[a75s(0xc7)],'mustBeInMakaProject':!![],'shortDesc':a75s(0xe1),'description':a75s(0xe7),'examples':[a75s(0xd5)]},async function(a,b){const t=a75s;try{const c=this[t(0xc9)][t(0xbd)](),d=this[t(0xc9)][t(0xde)](t(0xe2)),f=this[t(0xc9)][t(0xde)]('eslint-plugin-react'),g=this['fsi'][t(0xde)](t(0xc4)),h=[];!d&&h[t(0xcc)](t(0xe2));!f&&h[t(0xcc)]('eslint-plugin-react');!g&&h['push']('eslint-plugin-css');h[t(0xd0)]>0x0&&await this['fsi'][t(0xbe)](h[t(0xd9)]('\x20'),{'dev':!![]});const i=this[t(0xc9)][t(0xd4)](a75e[t(0xd9)](c,t(0xbc)));if(!i){const n={'noRename':!![]};await this['fsi'][t(0xbf)]({'srcPath':t(0xe5),'destPath':a75e[t(0xd9)](c,'.eslintrc.json'),'framework':'service','context':n});}const j=new ESLint(),k=await j[t(0xcb)]([a75e['join'](c,'imports','**')]),l=await j[t(0xdb)](t(0xcf)),m=await l[t(0xdc)](k);m[t(0xd0)]>0x0?Log[t(0xe4)](m):Log[t(0xc6)](t(0xc2)),Log[t(0xd6)](t(0xc5)+c+'/imports'),b[t(0xc7)]?await ESLint['outputFixes'](k):Log[t(0xd6)]('Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix');}catch(o){console[t(0xd8)](o);}});
1
+ const a76r=a76d;(function(a,b){const p=a76d,c=a();while(!![]){try{const d=parseInt(p(0x161))/0x1+parseInt(p(0x169))/0x2*(-parseInt(p(0x182))/0x3)+-parseInt(p(0x17a))/0x4+parseInt(p(0x18b))/0x5+-parseInt(p(0x15f))/0x6*(parseInt(p(0x17d))/0x7)+-parseInt(p(0x16a))/0x8*(-parseInt(p(0x15e))/0x9)+parseInt(p(0x188))/0xa*(parseInt(p(0x164))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0xeca91));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const q=a76d;return a76a[q(0x185)]()['search'](q(0x186))['toString']()[q(0x184)](a76a)['search'](q(0x186));});a76a();function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x15d;let f=c[d];return f;},a76d(a,b);}function a76c(){const t=['findAppDirectory','4011112SbwzUA','maka\x20lint','length','5982235cvMRXT','eslint/eslintrc.json','template','stylish','push','5388KSKYwk','eslint','constructor','toString','(((.+)+)+)+$','format','653800tOGFsc','eslint-plugin-react','All\x20good!\x20:)','149050AOrCUw','join','755568cZRVab','6qtpbxs','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','801158yBMOTr','success','lint','242JuHfHn','/imports','checkNpmPackage','eslint-plugin-css','create','1436HIYkIU','176nDYxlJ','isFile','fix','fsi','service','loadFormatter','Lint\x20results\x20for\x20','error','outputFixes','imports','notice','.eslintrc.json','maka\x20lint\x20--fix','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','bright'];a76c=function(){return t;};return a76c();}import a76e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';Command[a76r(0x168)]({'name':a76r(0x163),'usage':a76r(0x17b),'maxArgLength':0x1,'validOpts':[a76r(0x16c)],'mustBeInMakaProject':!![],'shortDesc':'Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','description':a76r(0x177),'examples':[a76r(0x176)]},async function(a,b){const s=a76r;try{const c=this[s(0x16d)][s(0x179)](),d=this[s(0x16d)][s(0x166)](s(0x183)),f=this['fsi'][s(0x166)](s(0x189)),g=this[s(0x16d)][s(0x166)](s(0x167)),h=[];!d&&h[s(0x181)](s(0x183));!f&&h[s(0x181)](s(0x189));!g&&h[s(0x181)]('eslint-plugin-css');h['length']>0x0&&await this['fsi']['installNpmPackage'](h[s(0x15d)]('\x20'),{'dev':!![]});const i=this[s(0x16d)][s(0x16b)](a76e['join'](c,s(0x175)));if(!i){const n={'noRename':!![]};await this[s(0x16d)][s(0x17f)]({'srcPath':s(0x17e),'destPath':a76e[s(0x15d)](c,'.eslintrc.json'),'framework':s(0x16e),'context':n});}const j=new ESLint(),k=await j['lintFiles']([a76e[s(0x15d)](c,s(0x173),'**')]),l=await j[s(0x16f)](s(0x180)),m=await l[s(0x187)](k);m[s(0x17c)]>0x0?Log[s(0x178)](m):Log[s(0x162)](s(0x18a)),Log[s(0x174)](s(0x170)+c+s(0x165)),b[s(0x16c)]?await ESLint[s(0x172)](k):Log[s(0x174)](s(0x160));}catch(o){console[s(0x171)](o);}});
@@ -1 +1 @@
1
- function a76c(){const B=['Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','fsi','maka\x20login','Logging\x20in','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','authToken','post','update','True','135905piqqdH','995939akVpIh','failure','error','Logging\x20into\x20https://','setGlobalConfig','notice','1784184CSBSCf','Preflight\x20Check','constructor','cert','create','ask','https://','isFile','apply','cacert','toHex','localhost','start','Using\x20CA\x20Cert\x20','get','(((.+)+)+)+$','798444UqQceP','/api/v1/encodeJwt','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','247922Crccsb','maka\x20login\x20--email\x20<address>\x20--password\x20<password>','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','exit','email','withSpinner','help','debug','login','3rTJTSN','Email:','assign','parse','sha256','search','password','/api/v1/status','Logs\x20in\x20to\x20www.maka-cli.com','header','640630vUgQlE','digest','success','12XNcGDN','49605EQJpCb','36vVPOAz','toString','getGlobalConfig'];a76c=function(){return B;};return a76c();}const a76z=a76d;(function(a,b){const w=a76d,c=a();while(!![]){try{const d=parseInt(w(0x21e))/0x1+parseInt(w(0x1fa))/0x2*(-parseInt(w(0x203))/0x3)+-parseInt(w(0x1f7))/0x4+-parseInt(w(0x211))/0x5*(parseInt(w(0x210))/0x6)+-parseInt(w(0x21f))/0x7+parseInt(w(0x225))/0x8+-parseInt(w(0x212))/0x9*(-parseInt(w(0x20d))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x1f9d1));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a76d;if(c){const e=c[x(0x1ef)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const y=a76d;return a76a[y(0x213)]()[y(0x208)](y(0x1f6))[y(0x213)]()[y(0x227)](a76a)[y(0x208)](y(0x1f6));});a76a();import a76e from'node-forge';function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x1ea;let f=c[d];return f;},a76d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process['env']['MAKA_DEV']===a76z(0x21d)?a76z(0x1f2):'www.maka-cli.com';Command['create']({'name':a76z(0x202),'validOpts':[a76z(0x1fe),a76z(0x209),a76z(0x200),a76z(0x1f0),a76z(0x201)],'usage':a76z(0x217),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a76z(0x20b),'examples':[a76z(0x217),a76z(0x1fb)]},async function(a,b){const A=a76z,c=Log[A(0x1ff)]();try{let d='';b[A(0x1f0)]&&(this['fsi'][A(0x1ee)](b[A(0x1f0)])?(d=b[A(0x1f0)],Log[A(0x224)](A(0x1f4)+d)):Log[A(0x221)](A(0x219)+d));const f=await this[A(0x216)][A(0x214)]();if(f[A(0x1ea)]){if(this['fsi'][A(0x1ee)](f[A(0x1ea)]))d=f['cert'];else{Log[A(0x221)]('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log[A(0x20c)](A(0x222)+hostname);const g={'url':'https://'+hostname+A(0x20a)};b[A(0x1f0)]&&Object[A(0x205)](g,{'cert':d});c[A(0x1f3)](A(0x226));const {statusCode:h}=await HTTPS[A(0x1f5)](g);if(h===0x198){c[A(0x220)]();throw A(0x215);}if(h!==0xc8){c['failure']();throw A(0x1ed)+hostname+A(0x1fc);}c[A(0x20f)]();const i=b[A(0x1fe)]?b[A(0x1fe)]:await Actions[A(0x1ec)](A(0x204)),j=b[A(0x209)]?b[A(0x209)]:await Actions[A(0x1ec)]('Password:\x20',!![]),k=a76e['md'][A(0x207)][A(0x1eb)]();k[A(0x21c)](j);const l=k[A(0x20e)]()[A(0x1f1)](),m={'hostname':hostname,'path':'/api/v1/login','data':{'email':i,'password':l,'hashed':!![]}};b[A(0x1f0)]&&Object[A(0x205)](m,{'cert':d});c[A(0x1f3)](A(0x218));const {data:n,statusCode:o}=await HTTPS['post'](m);if(o===0x198){c[A(0x220)]('\x0a');throw A(0x1f9)+hostname;}const p=JSON[A(0x206)](n);if(p['authToken']){const q={'hostname':hostname,'path':A(0x1f8),'headers':{'x-auth-token':p[A(0x21a)]},'data':{}};b[A(0x1f0)]&&Object[A(0x205)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[A(0x21b)](q),{token:t}=JSON[A(0x206)](r);if(s===0x198)throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://'+hostname;const u={'token':p,'hash':t};this[A(0x216)][A(0x223)](u);}else{c[A(0x220)]();throw p;}c[A(0x20f)]();}catch(v){c['failure'](),console[A(0x221)](v),process[A(0x1fd)](0x0);}});
1
+ const a77y=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=-parseInt(w(0xee))/0x1*(-parseInt(w(0x100))/0x2)+parseInt(w(0xf1))/0x3*(-parseInt(w(0xf3))/0x4)+-parseInt(w(0x104))/0x5+parseInt(w(0xd2))/0x6+-parseInt(w(0xe4))/0x7+-parseInt(w(0xde))/0x8*(parseInt(w(0xec))/0x9)+parseInt(w(0xea))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x36969));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const x=a77d;return a77a[x(0xe2)]()[x(0xfd)](x(0xdd))['toString']()[x(0xd5)](a77a)[x(0xfd)](x(0xdd));});a77a();import a77e from'node-forge';import{Command}from'../command.js';function a77c(){const A=['https://','sha256','toString','exit','1399279sSpXzd','parse','authToken','login','cacert','ask','4033880DROZGy','digest','117qdfSFp','Logs\x20in\x20to\x20www.maka-cli.com','2YijmVP','getGlobalConfig','env','3CbdrRz','maka\x20login\x20--email\x20<address>\x20--password\x20<password>','1101704dlBMlv','Logging\x20into\x20https://','header','cert','Password:\x20','setGlobalConfig','Email:','toHex','email','fsi','search','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','withSpinner','254758oItxsj','notice','get','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','1035725qWRIiw','create','error','maka\x20login','/api/v1/encodeJwt','success','2672622QXJotZ','Preflight\x20Check','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','constructor','assign','MAKA_DEV','failure','help','isFile','password','post','(((.+)+)+)+$','121552hssccF','www.maka-cli.com'];a77c=function(){return A;};return a77c();}import{Log}from'../tools/log/log.class.js';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0xd2;let f=c[d];return f;},a77d(a,b);}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a77y(0xf0)][a77y(0xd7)]==='True'?'localhost':a77y(0xdf);Command[a77y(0x105)]({'name':a77y(0xe7),'validOpts':[a77y(0xfb),a77y(0xdb),a77y(0xd9),'cacert','debug'],'usage':a77y(0x107),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77y(0xed),'examples':[a77y(0x107),a77y(0xf2)]},async function(a,b){const z=a77y,c=Log[z(0xff)]();try{let d='';b[z(0xe8)]&&(this[z(0xfc)][z(0xda)](b['cacert'])?(d=b[z(0xe8)],Log[z(0x101)]('Using\x20CA\x20Cert\x20'+d)):Log[z(0x106)](z(0xfe)+d));const f=await this[z(0xfc)][z(0xef)]();if(f[z(0xf6)]){if(this[z(0xfc)][z(0xda)](f[z(0xf6)]))d=f[z(0xf6)];else{Log['error']('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log[z(0xf5)](z(0xf4)+hostname);const g={'url':z(0xe0)+hostname+'/api/v1/status'};b[z(0xe8)]&&Object[z(0xd6)](g,{'cert':d});c['start'](z(0xd3));const {statusCode:h}=await HTTPS[z(0x102)](g);if(h===0x198){c[z(0xd8)]();throw z(0x103);}if(h!==0xc8){c[z(0xd8)]();throw'https://'+hostname+'\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli';}c['success']();const i=b[z(0xfb)]?b['email']:await Actions[z(0xe9)](z(0xf9)),j=b['password']?b[z(0xdb)]:await Actions[z(0xe9)](z(0xf7),!![]),k=a77e['md'][z(0xe1)]['create']();k['update'](j);const l=k[z(0xeb)]()[z(0xfa)](),m={'hostname':hostname,'path':'/api/v1/login','data':{'email':i,'password':l,'hashed':!![]}};b[z(0xe8)]&&Object[z(0xd6)](m,{'cert':d});c['start']('Logging\x20in');const {data:n,statusCode:o}=await HTTPS[z(0xdc)](m);if(o===0x198){c[z(0xd8)]('\x0a');throw z(0xd4)+hostname;}const p=JSON[z(0xe5)](n);if(p[z(0xe6)]){const q={'hostname':hostname,'path':z(0x108),'headers':{'x-auth-token':p['authToken']},'data':{}};b[z(0xe8)]&&Object[z(0xd6)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[z(0xdc)](q),{token:t}=JSON[z(0xe5)](r);if(s===0x198)throw z(0xd4)+hostname;const u={'token':p,'hash':t};this[z(0xfc)][z(0xf8)](u);}else{c[z(0xd8)]();throw p;}c[z(0x109)]();}catch(v){c[z(0xd8)](),console[z(0x106)](v),process[z(0xe3)](0x0);}});
@@ -1 +1 @@
1
- const a77o=a77d;function a77c(){const q=['apply','setGlobalConfig','3352XIaeIF','success','start','6277230CWBUwR','1392702knvmHb','assign','6839546JyPtCq','cacert','2706276cUQfhk','localhost','8wXFcfZ','failure','maka\x20logout','exit','True','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','token','/api/v1/status','env','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','Logging\x20out','error','/api/v1/logoutAll','Using\x20CA\x20Cert\x20','toString','2635VGGglu','withSpinner','isFile','authToken','Logging\x20out\x20of\x20https://','fsi','MAKA_DEV','header','21792627gMWxUX','search','cert','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','logout','https://','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','(((.+)+)+)+$','get','getGlobalConfig','30479KXjBBj','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).'];a77c=function(){return q;};return a77c();}(function(a,b){const l=a77d,c=a();while(!![]){try{const d=parseInt(l(0x80))/0x1+parseInt(l(0x88))/0x2+-parseInt(l(0x8c))/0x3+parseInt(l(0x84))/0x4*(parseInt(l(0x9d))/0x5)+-parseInt(l(0x87))/0x6+parseInt(l(0x8a))/0x7*(-parseInt(l(0x8e))/0x8)+parseInt(l(0xa5))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0xa23a4));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a77d;if(c){const e=c[m(0x82)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const n=a77d;return a77a['toString']()['search'](n(0x7d))[n(0x9c)]()['constructor'](a77a)[n(0xa6)](n(0x7d));});a77a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x79;let f=c[d];return f;},a77d(a,b);}import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a77o(0x96)][a77o(0xa3)]===a77o(0x92)?a77o(0x8d):'www.maka-cli.com';Command['create']({'name':a77o(0x7a),'validOpts':[a77o(0x8b)],'usage':a77o(0x90),'maxArgLength':0x2,'shortDesc':a77o(0x81),'disableAuthCheck':!![],'examples':[a77o(0x90)]},async function(a,b){const p=a77o,c=Log[p(0x9e)]();try{let d='';b[p(0x8b)]&&(this[p(0xa2)][p(0x9f)](b[p(0x8b)])?(d=b['cacert'],Log['notice'](p(0x9b)+d)):Log['error'](p(0x7c)+d));const f=await this[p(0xa2)][p(0x7f)]();if(f[p(0xa7)]){if(this[p(0xa2)]['isFile'](f[p(0xa7)]))d=f[p(0xa7)];else{c[p(0x8f)]();throw Log['error']('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);}}Log[p(0xa4)](p(0xa1)+hostname);const g={'url':p(0x7b)+hostname+p(0x95)};b['cacert']&&Object[p(0x89)](g,{'cert':d});c[p(0x86)]('Preflight\x20Check');const {statusCode:h}=await HTTPS[p(0x7e)](g);if(h===0x198){c[p(0x8f)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}c[p(0x85)]();if(h!==0xc8){c[p(0x8f)]();throw p(0x79);}if(!f?.['token']?.[p(0xa0)])throw Log[p(0x99)](p(0x93));c[p(0x86)](p(0x98));const i={'hostname':hostname,'path':p(0x9a),'data':{},'headers':{'x-auth-token':f[p(0x94)][p(0xa0)]}};b[p(0x8b)]&&Object[p(0x89)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c['failure']('\x0a');throw p(0x97);}this[p(0xa2)][p(0x83)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c['success']();}catch(k){k&&console['error'](k),process[p(0x91)](0x0);}});
1
+ const a78o=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=-parseInt(l(0xff))/0x1+parseInt(l(0xe1))/0x2+parseInt(l(0xdb))/0x3*(-parseInt(l(0xde))/0x4)+parseInt(l(0xe9))/0x5+parseInt(l(0xeb))/0x6*(-parseInt(l(0xe8))/0x7)+parseInt(l(0xfe))/0x8*(-parseInt(l(0xe5))/0x9)+parseInt(l(0xdc))/0xa*(parseInt(l(0xf3))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0xbc13d));const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a78d;if(c){const e=c[m(0x102)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const n=a78d;return a78a['toString']()['search'](n(0xf0))[n(0xf4)]()['constructor'](a78a)[n(0xe7)](n(0xf0));});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(0xec)]['MAKA_DEV']==='True'?a78o(0xe0):'www.maka-cli.com';Command['create']({'name':'logout','validOpts':[a78o(0xe6)],'usage':'maka\x20logout','maxArgLength':0x2,'shortDesc':a78o(0xf2),'disableAuthCheck':!![],'examples':[a78o(0xfc)]},async function(a,b){const p=a78o,c=Log[p(0xea)]();try{let d='';b[p(0xe6)]&&(this[p(0xef)]['isFile'](b['cacert'])?(d=b[p(0xe6)],Log[p(0xd9)](p(0xfd)+d)):Log['error']('CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+d));const f=await this[p(0xef)][p(0xf9)]();if(f[p(0xf7)]){if(this['fsi'][p(0x103)](f['cert']))d=f[p(0xf7)];else{c[p(0xf5)]();throw Log['error']('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);}}Log[p(0xee)]('Logging\x20out\x20of\x20https://'+hostname);const g={'url':p(0xda)+hostname+p(0xd8)};b[p(0xe6)]&&Object['assign'](g,{'cert':d});c[p(0xf1)](p(0xfb));const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c[p(0xf5)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}c[p(0xe3)]();if(h!==0xc8){c[p(0xf5)]();throw p(0xfa);}if(!f?.[p(0xed)]?.[p(0x101)])throw Log[p(0xf6)](p(0xe4));c[p(0xf1)](p(0x100));const i={'hostname':hostname,'path':'/api/v1/logoutAll','data':{},'headers':{'x-auth-token':f[p(0xed)][p(0x101)]}};b[p(0xe6)]&&Object['assign'](i,{'cert':d});const {statusCode:j}=await HTTPS[p(0xe2)](i);if(j===0x198){c[p(0xf5)]('\x0a');throw p(0xdf);}this[p(0xef)][p(0xdd)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c['success']();}catch(k){k&&console[p(0xf6)](k),process[p(0xf8)](0x0);}});function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0xd8;let f=c[d];return f;},a78d(a,b);}function a78c(){const q=['withSpinner','6Mvkcrv','env','token','header','fsi','(((.+)+)+)+$','start','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','64614Qtjhfg','toString','failure','error','cert','exit','getGlobalConfig','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','Preflight\x20Check','maka\x20logout','Using\x20CA\x20Cert\x20','36048TzxdTO','561586WHOqtf','Logging\x20out','authToken','apply','isFile','/api/v1/status','notice','https://','3cFRdzB','4570EBaiPJ','setGlobalConfig','1529548jrRfWp','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','localhost','1120332luvGis','post','success','Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?','1818MIeIbd','cacert','search','7507703XuqSJG','2262475MrrPyR'];a78c=function(){return q;};return a78c();}
@@ -1 +1 @@
1
- const a78m=a78d;(function(a,b){const j=a78d,c=a();while(!![]){try{const d=-parseInt(j(0x124))/0x1+parseInt(j(0x123))/0x2+-parseInt(j(0x114))/0x3+-parseInt(j(0x10c))/0x4*(-parseInt(j(0x115))/0x5)+parseInt(j(0x125))/0x6*(parseInt(j(0x113))/0x7)+-parseInt(j(0x119))/0x8+parseInt(j(0x118))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0x65f17));const a78b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a78d;if(c){const e=c[k(0x126)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a78a=a78b(this,function(){const l=a78d;return a78a[l(0x127)]()['search'](l(0x10e))[l(0x127)]()[l(0x112)](a78a)[l(0x10f)](l(0x10e));});a78a();import a78e from'fs';import a78f from'path';import{Command}from'../command.js';function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x10c;let f=c[d];return f;},a78d(a,b);}function a78c(){const o=['965016ztaEQP','517800tRifmC','6AudIYP','apply','toString','548mhkDwI','View\x20the\x20PM2\x20logs','(((.+)+)+)+$','search','logs','env','constructor','990479eTtWkc','1489929hAFumt','1775iRUJAX','create','sshSync','7253307fQCvZh','372488JUZyIT','error','parse','getAppConfigPath','maka\x20logs\x20--env\x20staging','pm2\x20logs','readFileSync','maka\x20logs\x20--env\x20dev','join','maka\x20logs'];a78c=function(){return o;};return a78c();}import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a78m(0x116)]({'name':a78m(0x110),'aliases':['l','log'],'usage':a78m(0x122),'requiredOpts':[a78m(0x111)],'mustBeInMakaProject':!![],'validOpts':['verbose'],'shortDesc':a78m(0x10d),'isPro':!![],'examples':[a78m(0x120),a78m(0x11d),'maka\x20l\x20-e\x20p']},function(a,b){const n=a78m;try{const c=n(0x11e),d=this['fsi'][n(0x11c)](b['env']),f=a78f[n(0x121)](d,'ssh.json'),g=a78e[n(0x11f)](f),h=JSON[n(0x11b)](g[n(0x127)]());Object['assign'](h,{'env':d}),SSH[n(0x117)](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log[n(0x11a)](i);}});
1
+ const a79l=a79d;(function(a,b){const j=a79d,c=a();while(!![]){try{const d=parseInt(j(0xc3))/0x1+-parseInt(j(0xe1))/0x2*(parseInt(j(0xc9))/0x3)+parseInt(j(0xcb))/0x4+-parseInt(j(0xda))/0x5*(-parseInt(j(0xe0))/0x6)+parseInt(j(0xc7))/0x7*(parseInt(j(0xd3))/0x8)+-parseInt(j(0xcd))/0x9+parseInt(j(0xde))/0xa*(-parseInt(j(0xd5))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0xa3572));function a79c(){const n=['View\x20the\x20PM2\x20logs','171258lCDIEY','1154884dmfMAw','maka\x20logs','getAppConfigPath','parse','168924YVZHhk','pm2\x20logs','assign','(((.+)+)+)+$','1792266YpHmTJ','error','3tXTOnU','toString','3070144bLFjUM','maka\x20logs\x20--env\x20staging','1491867bTPmYw','join','env','search','create','readFileSync','8oOnnUq','maka\x20l\x20-e\x20p','722491SDuric','sshSync','ssh.json','fsi','verbose','50XDjWxR','logs','maka\x20logs\x20--env\x20dev','constructor','10ssgipf'];a79c=function(){return n;};return a79c();}const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const k=a79d;return a79a[k(0xca)]()[k(0xd0)](k(0xc6))[k(0xca)]()[k(0xdd)](a79a)[k(0xd0)](k(0xc6));});a79a();function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0xc2;let f=c[d];return f;},a79d(a,b);}import a79e from'fs';import a79f from'path';import{Command}from'../command.js';import{SSH}from'../tools/ssh/ssh.class.js';import{Log}from'../tools/log/log.class.js';Command[a79l(0xd1)]({'name':a79l(0xdb),'aliases':['l','log'],'usage':a79l(0xe2),'requiredOpts':[a79l(0xcf)],'mustBeInMakaProject':!![],'validOpts':[a79l(0xd9)],'shortDesc':a79l(0xdf),'isPro':!![],'examples':[a79l(0xdc),a79l(0xcc),a79l(0xd4)]},function(a,b){const m=a79l;try{const c=m(0xc4),d=this[m(0xd8)][m(0xe3)](b[m(0xcf)]),f=a79f[m(0xce)](d,m(0xd7)),g=a79e[m(0xd2)](f),h=JSON[m(0xc2)](g['toString']());Object[m(0xc5)](h,{'env':d}),SSH[m(0xd6)](c,h,{'tty':!![],'verbose':!![]});}catch(i){Log[m(0xc8)](i);}});
@@ -1 +1 @@
1
- const a79i=a79d;(function(a,b){const f=a79d,c=a();while(!![]){try{const d=-parseInt(f(0x104))/0x1+parseInt(f(0x113))/0x2*(-parseInt(f(0x103))/0x3)+-parseInt(f(0xff))/0x4+-parseInt(f(0x107))/0x5*(-parseInt(f(0xfe))/0x6)+parseInt(f(0x111))/0x7*(-parseInt(f(0x10f))/0x8)+parseInt(f(0x114))/0x9+parseInt(f(0x10b))/0xa*(parseInt(f(0x109))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x7d8ab));const a79b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a79d;if(c){const e=c[g(0x101)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a79a=a79b(this,function(){const h=a79d;return a79a[h(0x10a)]()[h(0x10e)](h(0x106))[h(0x10a)]()[h(0x100)](a79a)['search']('(((.+)+)+)+$');});function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0xfe;let f=c[d];return f;},a79d(a,b);}function a79c(){const k=['3948ydSWbj','1004116smqLrb','maka\x20create\x20Todo','(((.+)+)+)+$','524165YEbLCR','splice','27765155pGvmed','toString','10GwQUwp','maka\x20install\x20meteor','exit','search','4348216WoyNOw','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','7dVHwxA','\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','1546lyUpcZ','6476418EyhfMO','maka\x20run','30cMtPLN','2754968FDYUOo','constructor','apply','processAndRunCommand'];a79c=function(){return k;};return a79c();}a79a();import{Command}from'../command.js';const Maka=new Command({'name':'maka','minArgLength':0x1,'shortDesc':a79i(0x110),'validOpts':[],'usage':'maka\x20<command>\x20[<args>]\x20[<opts>]','disableAuthCheck':!![],'examples':['maka\x20--help',a79i(0x10c),a79i(0x105),a79i(0x115)],'description':a79i(0x112)},async function(a,b){const j=a79i;try{const c=a[0x0];a[j(0x108)](0x0,0x1),await this[j(0x102)](c,a,b);}catch(d){process[j(0x10d)](0x1);}});export default Maka;
1
+ const a80i=a80d;(function(a,b){const f=a80d,c=a();while(!![]){try{const d=-parseInt(f(0x13c))/0x1*(-parseInt(f(0x13e))/0x2)+parseInt(f(0x141))/0x3+parseInt(f(0x13f))/0x4+parseInt(f(0x137))/0x5*(-parseInt(f(0x149))/0x6)+parseInt(f(0x13b))/0x7+parseInt(f(0x142))/0x8*(parseInt(f(0x145))/0x9)+-parseInt(f(0x148))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xd98a9));function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x135;let f=c[d];return f;},a80d(a,b);}const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a80d;if(c){const e=c[g(0x135)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const h=a80d;return a80a[h(0x139)]()['search']('(((.+)+)+)+$')['toString']()[h(0x146)](a80a)[h(0x14b)]('(((.+)+)+)+$');});a80a();function a80c(){const k=['processAndRunCommand','4748244hgWZnv','32XSXGdJ','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','maka\x20install\x20meteor','3547035JhNYQR','constructor','maka\x20--help','50975660zCKPen','18TTIdVc','exit','search','apply','maka\x20run','132725eSeIXt','maka\x20create\x20Todo','toString','maka\x20<command>\x20[<args>]\x20[<opts>]','10078516QpzyIn','252017uzlYAh','splice','6pzdXjF','2852812pXwHFR'];a80c=function(){return k;};return a80c();}import{Command}from'../command.js';const Maka=new Command({'name':'maka','minArgLength':0x1,'shortDesc':a80i(0x143),'validOpts':[],'usage':a80i(0x13a),'disableAuthCheck':!![],'examples':[a80i(0x147),a80i(0x144),a80i(0x138),a80i(0x136)],'description':'\x0a\x0a\x20\x20Scaffold\x20Web\x20Applications\x20with\x20Meteor\x20and\x20Maka-CLI\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.-:\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20:-.\x20\x20\x20\x20\x20:--\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::\x20\x20::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::::::\x20.:::::::\x20..\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20..:.....\x20.::..::.\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20.::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::::::\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20\x20::::::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::..-::.\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::....\x20\x20::..---:..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20.\x20.:::::::\x20\x20::..::.\x20..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20\x20:.\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:--\x20\x20\x20\x20\x20\x20\x20\x20\x20.--.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-:\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20:\x0a.:..::...::.\x20\x20\x20....:\x20\x20\x20.:\x20\x20\x20::\x20\x20....:.\x20\x20\x20\x20\x20\x20\x20\x20.::::\x20\x20.:\x20\x20::\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20\x20....:-\x20\x20.-..:.\x20\x20\x20....:-\x20\x20...\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20.:\x20\x20\x20:-\x20\x20.-\x20\x20.:\x20\x20.:\x20\x20\x20:-\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a.:.\x20\x20\x20:.\x20\x20\x20.:\x20\x20....\x20:.\x20.:.\x20\x20..\x20\x20....\x20:.\x20\x20\x20\x20\x20\x20\x20.....\x20\x20.:.\x20.:.\x0a\x0a\x20\x20'},async function(a,b){const j=a80i;try{const c=a[0x0];a[j(0x13d)](0x0,0x1),await this[j(0x140)](c,a,b);}catch(d){process[j(0x14a)](0x1);}});export default Maka;
@@ -1 +1 @@
1
- var a80i=a80d;(function(a,b){var f=a80d,c=a();while(!![]){try{var d=-parseInt(f(0x130))/0x1*(parseInt(f(0x13a))/0x2)+parseInt(f(0x12b))/0x3*(parseInt(f(0x131))/0x4)+-parseInt(f(0x129))/0x5*(parseInt(f(0x127))/0x6)+parseInt(f(0x132))/0x7+-parseInt(f(0x12a))/0x8*(parseInt(f(0x137))/0x9)+parseInt(f(0x12c))/0xa+-parseInt(f(0x13b))/0xb*(-parseInt(f(0x12f))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0x56c9e));function a80c(){var k=['error','maka\x20murder','9DtXxog','search','log','14zjQHvQ','1164141gjgLIB','480YtoozG','create','2425jOfEKE','2545352UYuria','438rSyCYs','2806690yPqZcP','%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','apply','72VmcgEh','47651fkMdCN','3144JMhGUk','109207wwBcXF','(((.+)+)+)+$','font-family:\x20monospace'];a80c=function(){return k;};return a80c();}var a80b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a80d;if(c){var e=c[g(0x12e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){var h=a80d;return a80a['toString']()[h(0x138)](h(0x133))['toString']()['constructor'](a80a)[h(0x138)]('(((.+)+)+)+$');});a80a();function a80d(a,b){var c=a80c();return a80d=function(d,e){d=d-0x127;var f=c[d];return f;},a80d(a,b);}import{Command}from'../command.js';Command[a80i(0x128)]({'name':'murder','usage':a80i(0x136),'maxArgLength':0x1,'shortDesc':'Murrrrderrrrr','validOpts':[]},async function(){var j=a80i;try{console[j(0x139)](j(0x12d),j(0x134));}catch(a){console[j(0x135)](a),process['exit'](0x0);}});
1
+ var a81i=a81d;function a81d(a,b){var c=a81c();return a81d=function(d,e){d=d-0x1ab;var f=c[d];return f;},a81d(a,b);}(function(a,b){var f=a81d,c=a();while(!![]){try{var d=parseInt(f(0x1ae))/0x1*(parseInt(f(0x1b4))/0x2)+parseInt(f(0x1bd))/0x3*(parseInt(f(0x1bc))/0x4)+-parseInt(f(0x1ba))/0x5+-parseInt(f(0x1ad))/0x6+parseInt(f(0x1b8))/0x7*(parseInt(f(0x1ab))/0x8)+-parseInt(f(0x1bf))/0x9*(-parseInt(f(0x1b7))/0xa)+-parseInt(f(0x1bb))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x6b5ae));var a81b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a81d;if(c){var e=c[g(0x1ac)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){var h=a81d;return a81a[h(0x1be)]()['search'](h(0x1b2))[h(0x1be)]()[h(0x1b3)](a81a)[h(0x1b6)](h(0x1b2));});a81a();function a81c(){var k=['3627cOAaOG','1655488ZHlCUs','apply','1179654UTaxgG','98053krPQoJ','log','murder','Murrrrderrrrr','(((.+)+)+)+$','constructor','8bYGung','font-family:\x20monospace','search','11470CZbFCd','28mfUedb','error','4264475lMMAZZ','8855528amdYCF','2448324QdCRKq','3aXgUdj','toString'];a81c=function(){return k;};return a81c();}import{Command}from'../command.js';Command['create']({'name':a81i(0x1b0),'usage':'maka\x20murder','maxArgLength':0x1,'shortDesc':a81i(0x1b1),'validOpts':[]},async function(){var j=a81i;try{console[j(0x1af)]('%c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.___.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20/)\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20,-^\x20\x20\x20\x20\x20^-.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20//\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20/\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x0a.-------|\x20|--------------/\x20\x20__\x20\x20\x20\x20\x20__\x20\x20\x5c-------------------.__\x0a|WMWMWMW|\x20|>>>>>>>>>>>>>\x20|\x20/>>\x5c\x20\x20\x20/>>\x5c\x20|>>>>>>>>>>>>>>>>>>>>>>:>\x0a`-------|\x20|--------------|\x20\x5c__/\x20\x20\x20\x5c__/\x20|-------------------\x27^^\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x5c\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x20/|\x5c\x20\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c)\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x5c_/\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20|\x20\x20\x20\x20\x20\x20\x20|\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20|+H+H+H+|\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5c\x20\x20\x20\x20\x20\x20\x20/\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20^-----^\x0a\x0a',j(0x1b5));}catch(a){console[j(0x1b9)](a),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a81p=a81d;(function(a,b){const m=a81d,c=a();while(!![]){try{const d=parseInt(m(0x10b))/0x1+-parseInt(m(0x10d))/0x2+parseInt(m(0x10e))/0x3+parseInt(m(0xf2))/0x4+parseInt(m(0x102))/0x5*(parseInt(m(0xfa))/0x6)+-parseInt(m(0x101))/0x7+-parseInt(m(0xf7))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a81c,0x44567));const a81b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a81d;if(c){const e=c[n(0x10c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a81a=a81b(this,function(){const o=a81d;return a81a[o(0xf0)]()[o(0xf4)](o(0xee))[o(0xf0)]()[o(0x113)](a81a)[o(0xf4)](o(0xee));});a81a();import a81e from'fs';import a81f from'path';import a81g from'http-proxy';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a81c(){const r=['createProxyServer','listenPort','(((.+)+)+)+$','processAndRunGenerator','toString','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','1879332LaxtKK','proxy','search','.crt','.key','4372928qNiDrn','development','error','12yPnYGX','maka\x20proxy','getAppConfigPath','maka\x20proxy\x20--target-host\x20http://192.168.1.20','bright','=>\x20SSL\x20Proxy\x20forwarding\x20','join','966098UtOLQc','1219420cnAPAu','\x20to\x20','help','readFileSync','genSSC','.csr','appName','localhost','targetPort','8853xINrwt','apply','863182ujzLmi','1289034CYqxgE','fsi','\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','listen','utf8','constructor','targetHost','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.'];a81c=function(){return r;};return a81c();}function a81d(a,b){const c=a81c();return a81d=function(d,e){d=d-0xee;let f=c[d];return f;},a81d(a,b);}import{UsageError}from'../error.js';import{SSL}from'../tools/ssl/ssl.class.js';import a81h from'../generators/maka.gen.js';Command['create']({'name':a81p(0xf3),'usage':'maka\x20proxy','mustBeInMakaProject':!![],'validOpts':[a81p(0x104),a81p(0x10a),a81p(0x117),'targetHost'],'maxArgLength':0x1,'shortDesc':a81p(0xf1),'description':a81p(0x110),'examples':[a81p(0xfb),'maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000',a81p(0xfd)]},async function(a,b){const q=a81p,c=this[q(0x10f)]['getMakaProjectConfig'](),d=q(0xf8),e=this['fsi'][q(0xfc)](d),f=this[q(0x10f)]['mkKeysDir']({'configPath':e}),g=b[q(0x10a)]?Number(b[q(0x10a)]):0xbb8,h=b[q(0x117)]?Number(b[q(0x117)]):0xd73,i=b['targetHost']?b[q(0x114)]:q(0x109),j=a81f['join'](f,c[q(0x108)]+q(0xf6)),k=a81f[q(0x100)](f,c['appName']+q(0xf5));(!this['fsi']['isFile'](j)||!this['fsi']['isFile'](k))&&(await a81h[q(0xef)]('sslconfig',[],{'env':d}),SSL['genCSR']({'keyName':c[q(0x108)]+q(0xf6),'csrName':c['appName']+q(0x107),'cwd':f}),SSL[q(0x106)]({'keyName':c[q(0x108)]+q(0xf6),'crtName':c[q(0x108)]+q(0xf5),'cwd':f}));if(g===h){Log[q(0xf9)](q(0x115));throw new UsageError();}const l={'ssl':{'key':a81e[q(0x105)](j,q(0x112)),'cert':a81e[q(0x105)](k,'utf8')},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a81g[q(0x116)](l)[q(0x111)](Number(h)),Log[q(0xfe)](q(0xff)+h+q(0x103)+g);});
1
+ const a82p=a82d;(function(a,b){const m=a82d,c=a();while(!![]){try{const d=parseInt(m(0x1f0))/0x1*(-parseInt(m(0x1f8))/0x2)+parseInt(m(0x1fe))/0x3*(parseInt(m(0x20b))/0x4)+-parseInt(m(0x20f))/0x5*(parseInt(m(0x20d))/0x6)+-parseInt(m(0x211))/0x7*(parseInt(m(0x1ef))/0x8)+parseInt(m(0x1ee))/0x9*(parseInt(m(0x200))/0xa)+parseInt(m(0x1f5))/0xb*(parseInt(m(0x208))/0xc)+-parseInt(m(0x215))/0xd;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a82c,0x91180));const a82b=(function(){let a=!![];return function(b,c){const d=a?function(){const n=a82d;if(c){const e=c[n(0x1ff)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a82a=a82b(this,function(){const o=a82d;return a82a[o(0x210)]()[o(0x209)](o(0x1eb))[o(0x210)]()['constructor'](a82a)[o(0x209)](o(0x1eb));});a82a();import a82e from'fs';import a82f from'path';function a82c(){const r=['toString','2002EEvRtA','mkKeysDir','readFileSync','.csr','1507779ZKyDVF','utf8','development','(((.+)+)+)+$','sslconfig','processAndRunGenerator','18cqzAFi','6984BfxoKL','35783KLOcVH','fsi','maka\x20proxy\x20--target-port\x203000\x20--listen-port\x204000','\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','appName','164692BGsqto','.key','maka\x20proxy\x20--target-host\x20http://192.168.1.20','4OVhRFS','getAppConfigPath','bright','getMakaProjectConfig','targetHost','error','1185MldlTf','apply','4982570uQbRBs','listenPort','createProxyServer','join','genSSC','isFile','Target\x20and\x20Listen\x20ports\x20cannot\x20be\x20the\x20same.','genCSR','360guTeol','search','Proxy\x20HTTPS\x20requests\x20to\x20another\x20Server','4124ppxnQH','localhost','4928328Udzwva','targetPort','5ZdFmSO'];a82c=function(){return r;};return a82c();}import a82g from'http-proxy';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{UsageError}from'../error.js';import{SSL}from'../tools/ssl/ssl.class.js';import a82h from'../generators/maka.gen.js';function a82d(a,b){const c=a82c();return a82d=function(d,e){d=d-0x1eb;let f=c[d];return f;},a82d(a,b);}Command['create']({'name':'proxy','usage':'maka\x20proxy','mustBeInMakaProject':!![],'validOpts':['help',a82p(0x20e),a82p(0x201),a82p(0x1fc)],'maxArgLength':0x1,'shortDesc':a82p(0x20a),'description':a82p(0x1f3),'examples':['maka\x20proxy',a82p(0x1f2),a82p(0x1f7)]},async function(a,b){const q=a82p,c=this[q(0x1f1)][q(0x1fb)](),d=q(0x217),e=this[q(0x1f1)][q(0x1f9)](d),f=this['fsi'][q(0x212)]({'configPath':e}),g=b[q(0x20e)]?Number(b[q(0x20e)]):0xbb8,h=b[q(0x201)]?Number(b[q(0x201)]):0xd73,i=b[q(0x1fc)]?b['targetHost']:q(0x20c),j=a82f[q(0x203)](f,c[q(0x1f4)]+q(0x1f6)),k=a82f[q(0x203)](f,c[q(0x1f4)]+'.crt');(!this[q(0x1f1)]['isFile'](j)||!this[q(0x1f1)][q(0x205)](k))&&(await a82h[q(0x1ed)](q(0x1ec),[],{'env':d}),SSL[q(0x207)]({'keyName':c['appName']+q(0x1f6),'csrName':c['appName']+q(0x214),'cwd':f}),SSL[q(0x204)]({'keyName':c[q(0x1f4)]+q(0x1f6),'crtName':c[q(0x1f4)]+'.crt','cwd':f}));if(g===h){Log[q(0x1fd)](q(0x206));throw new UsageError();}const l={'ssl':{'key':a82e[q(0x213)](j,q(0x216)),'cert':a82e['readFileSync'](k,q(0x216))},'target':{'host':i,'port':Number(g)},'ws':!![],'xfwd':!![]};a82g[q(0x202)](l)['listen'](Number(h)),Log[q(0x1fa)]('=>\x20SSL\x20Proxy\x20forwarding\x20'+h+'\x20to\x20'+g);});