async-tasks.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. var async = require("./async");
  2. module.exports = [
  3. {
  4. step: "Finding an empty port",
  5. fn: async.getEmptyPort
  6. },
  7. {
  8. step: "Getting an extra port for Proxy",
  9. fn: async.getExtraPortForProxy
  10. },
  11. {
  12. step: "Checking online status",
  13. fn: async.getOnlineStatus
  14. },
  15. {
  16. step: "Resolve user plugins from options",
  17. fn: async.resolveInlineUserPlugins
  18. },
  19. {
  20. step: "Set Urls and other options that rely on port/online status",
  21. fn: async.setOptions
  22. },
  23. {
  24. step: "Setting Internal Events",
  25. fn: async.setInternalEvents
  26. },
  27. {
  28. step: "Setting file watchers",
  29. fn: async.setFileWatchers
  30. },
  31. {
  32. step: "Merging middlewares from core + plugins",
  33. fn: async.mergeMiddlewares
  34. },
  35. {
  36. step: "Starting the Server",
  37. fn: async.startServer
  38. },
  39. {
  40. step: "Starting the HTTPS Tunnel",
  41. fn: async.startTunnel
  42. },
  43. {
  44. step: "Starting the web-socket server",
  45. fn: async.startSockets
  46. },
  47. {
  48. step: "Starting the UI",
  49. fn: async.startUi
  50. },
  51. {
  52. step: "Merge UI settings",
  53. fn: async.mergeUiSettings
  54. },
  55. {
  56. step: "Init user plugins",
  57. fn: async.initUserPlugins
  58. }
  59. ];
  60. //# sourceMappingURL=async-tasks.js.map