@8medusa/framework 2.7.0

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 (274) hide show
  1. package/README.md +0 -0
  2. package/dist/build-tools/compiler.d.ts +64 -0
  3. package/dist/build-tools/compiler.d.ts.map +1 -0
  4. package/dist/build-tools/compiler.js +419 -0
  5. package/dist/build-tools/compiler.js.map +1 -0
  6. package/dist/build-tools/index.d.ts +2 -0
  7. package/dist/build-tools/index.d.ts.map +1 -0
  8. package/dist/build-tools/index.js +18 -0
  9. package/dist/build-tools/index.js.map +1 -0
  10. package/dist/config/config.d.ts +34 -0
  11. package/dist/config/config.d.ts.map +1 -0
  12. package/dist/config/config.js +134 -0
  13. package/dist/config/config.js.map +1 -0
  14. package/dist/config/index.d.ts +5 -0
  15. package/dist/config/index.d.ts.map +1 -0
  16. package/dist/config/index.js +21 -0
  17. package/dist/config/index.js.map +1 -0
  18. package/dist/config/loader.d.ts +11 -0
  19. package/dist/config/loader.d.ts.map +1 -0
  20. package/dist/config/loader.js +35 -0
  21. package/dist/config/loader.js.map +1 -0
  22. package/dist/config/types.d.ts +2 -0
  23. package/dist/config/types.d.ts.map +1 -0
  24. package/dist/config/types.js +3 -0
  25. package/dist/config/types.js.map +1 -0
  26. package/dist/container.d.ts +3 -0
  27. package/dist/container.d.ts.map +1 -0
  28. package/dist/container.js +21 -0
  29. package/dist/container.js.map +1 -0
  30. package/dist/database/index.d.ts +3 -0
  31. package/dist/database/index.d.ts.map +1 -0
  32. package/dist/database/index.js +19 -0
  33. package/dist/database/index.js.map +1 -0
  34. package/dist/database/pg-connection-loader.d.ts +6 -0
  35. package/dist/database/pg-connection-loader.d.ts.map +1 -0
  36. package/dist/database/pg-connection-loader.js +43 -0
  37. package/dist/database/pg-connection-loader.js.map +1 -0
  38. package/dist/feature-flags/feature-flag-loader.d.ts +8 -0
  39. package/dist/feature-flags/feature-flag-loader.d.ts.map +1 -0
  40. package/dist/feature-flags/feature-flag-loader.js +81 -0
  41. package/dist/feature-flags/feature-flag-loader.js.map +1 -0
  42. package/dist/feature-flags/flag-router.d.ts +32 -0
  43. package/dist/feature-flags/flag-router.d.ts.map +1 -0
  44. package/dist/feature-flags/flag-router.js +67 -0
  45. package/dist/feature-flags/flag-router.js.map +1 -0
  46. package/dist/feature-flags/index.d.ts +5 -0
  47. package/dist/feature-flags/index.d.ts.map +1 -0
  48. package/dist/feature-flags/index.js +21 -0
  49. package/dist/feature-flags/index.js.map +1 -0
  50. package/dist/feature-flags/types.d.ts +31 -0
  51. package/dist/feature-flags/types.d.ts.map +1 -0
  52. package/dist/feature-flags/types.js +3 -0
  53. package/dist/feature-flags/types.js.map +1 -0
  54. package/dist/http/express-loader.d.ts +8 -0
  55. package/dist/http/express-loader.d.ts.map +1 -0
  56. package/dist/http/express-loader.js +128 -0
  57. package/dist/http/express-loader.js.map +1 -0
  58. package/dist/http/index.d.ts +15 -0
  59. package/dist/http/index.d.ts.map +1 -0
  60. package/dist/http/index.js +31 -0
  61. package/dist/http/index.js.map +1 -0
  62. package/dist/http/middleware-file-loader.d.ts +33 -0
  63. package/dist/http/middleware-file-loader.d.ts.map +1 -0
  64. package/dist/http/middleware-file-loader.js +173 -0
  65. package/dist/http/middleware-file-loader.js.map +1 -0
  66. package/dist/http/middlewares/apply-default-filters.d.ts +3 -0
  67. package/dist/http/middlewares/apply-default-filters.d.ts.map +1 -0
  68. package/dist/http/middlewares/apply-default-filters.js +32 -0
  69. package/dist/http/middlewares/apply-default-filters.js.map +1 -0
  70. package/dist/http/middlewares/apply-params-as-filters.d.ts +5 -0
  71. package/dist/http/middlewares/apply-params-as-filters.d.ts.map +1 -0
  72. package/dist/http/middlewares/apply-params-as-filters.js +14 -0
  73. package/dist/http/middlewares/apply-params-as-filters.js.map +1 -0
  74. package/dist/http/middlewares/authenticate-middleware.d.ts +13 -0
  75. package/dist/http/middlewares/authenticate-middleware.d.ts.map +1 -0
  76. package/dist/http/middlewares/authenticate-middleware.js +136 -0
  77. package/dist/http/middlewares/authenticate-middleware.js.map +1 -0
  78. package/dist/http/middlewares/bodyparser.d.ts +13 -0
  79. package/dist/http/middlewares/bodyparser.d.ts.map +1 -0
  80. package/dist/http/middlewares/bodyparser.js +62 -0
  81. package/dist/http/middlewares/bodyparser.js.map +1 -0
  82. package/dist/http/middlewares/clear-filters-by-key.d.ts +3 -0
  83. package/dist/http/middlewares/clear-filters-by-key.d.ts.map +1 -0
  84. package/dist/http/middlewares/clear-filters-by-key.js +12 -0
  85. package/dist/http/middlewares/clear-filters-by-key.js.map +1 -0
  86. package/dist/http/middlewares/ensure-publishable-api-key.d.ts +3 -0
  87. package/dist/http/middlewares/ensure-publishable-api-key.d.ts.map +1 -0
  88. package/dist/http/middlewares/ensure-publishable-api-key.js +45 -0
  89. package/dist/http/middlewares/ensure-publishable-api-key.js.map +1 -0
  90. package/dist/http/middlewares/error-handler.d.ts +21 -0
  91. package/dist/http/middlewares/error-handler.d.ts.map +1 -0
  92. package/dist/http/middlewares/error-handler.js +85 -0
  93. package/dist/http/middlewares/error-handler.js.map +1 -0
  94. package/dist/http/middlewares/exception-formatter.d.ts +9 -0
  95. package/dist/http/middlewares/exception-formatter.d.ts.map +1 -0
  96. package/dist/http/middlewares/exception-formatter.js +36 -0
  97. package/dist/http/middlewares/exception-formatter.js.map +1 -0
  98. package/dist/http/middlewares/index.d.ts +8 -0
  99. package/dist/http/middlewares/index.d.ts.map +1 -0
  100. package/dist/http/middlewares/index.js +24 -0
  101. package/dist/http/middlewares/index.js.map +1 -0
  102. package/dist/http/middlewares/set-context.d.ts +3 -0
  103. package/dist/http/middlewares/set-context.d.ts.map +1 -0
  104. package/dist/http/middlewares/set-context.js +18 -0
  105. package/dist/http/middlewares/set-context.js.map +1 -0
  106. package/dist/http/router.d.ts +28 -0
  107. package/dist/http/router.d.ts.map +1 -0
  108. package/dist/http/router.js +252 -0
  109. package/dist/http/router.js.map +1 -0
  110. package/dist/http/routes-finder.d.ts +22 -0
  111. package/dist/http/routes-finder.d.ts.map +1 -0
  112. package/dist/http/routes-finder.js +62 -0
  113. package/dist/http/routes-finder.js.map +1 -0
  114. package/dist/http/routes-loader.d.ts +30 -0
  115. package/dist/http/routes-loader.d.ts.map +1 -0
  116. package/dist/http/routes-loader.js +203 -0
  117. package/dist/http/routes-loader.js.map +1 -0
  118. package/dist/http/routes-sorter.d.ts +105 -0
  119. package/dist/http/routes-sorter.d.ts.map +1 -0
  120. package/dist/http/routes-sorter.js +146 -0
  121. package/dist/http/routes-sorter.js.map +1 -0
  122. package/dist/http/types.d.ts +164 -0
  123. package/dist/http/types.d.ts.map +1 -0
  124. package/dist/http/types.js +16 -0
  125. package/dist/http/types.js.map +1 -0
  126. package/dist/http/utils/define-middlewares.d.ts +22 -0
  127. package/dist/http/utils/define-middlewares.d.ts.map +1 -0
  128. package/dist/http/utils/define-middlewares.js +27 -0
  129. package/dist/http/utils/define-middlewares.js.map +1 -0
  130. package/dist/http/utils/get-query-config.d.ts +42 -0
  131. package/dist/http/utils/get-query-config.d.ts.map +1 -0
  132. package/dist/http/utils/get-query-config.js +183 -0
  133. package/dist/http/utils/get-query-config.js.map +1 -0
  134. package/dist/http/utils/http-compression.d.ts +5 -0
  135. package/dist/http/utils/http-compression.d.ts.map +1 -0
  136. package/dist/http/utils/http-compression.js +33 -0
  137. package/dist/http/utils/http-compression.js.map +1 -0
  138. package/dist/http/utils/maybe-apply-link-filter.d.ts +8 -0
  139. package/dist/http/utils/maybe-apply-link-filter.d.ts.map +1 -0
  140. package/dist/http/utils/maybe-apply-link-filter.js +68 -0
  141. package/dist/http/utils/maybe-apply-link-filter.js.map +1 -0
  142. package/dist/http/utils/refetch-entities.d.ts +5 -0
  143. package/dist/http/utils/refetch-entities.d.ts.map +1 -0
  144. package/dist/http/utils/refetch-entities.js +29 -0
  145. package/dist/http/utils/refetch-entities.js.map +1 -0
  146. package/dist/http/utils/restricted-fields.d.ts +6 -0
  147. package/dist/http/utils/restricted-fields.d.ts.map +1 -0
  148. package/dist/http/utils/restricted-fields.js +30 -0
  149. package/dist/http/utils/restricted-fields.js.map +1 -0
  150. package/dist/http/utils/unless-path.d.ts +9 -0
  151. package/dist/http/utils/unless-path.d.ts.map +1 -0
  152. package/dist/http/utils/unless-path.js +19 -0
  153. package/dist/http/utils/unless-path.js.map +1 -0
  154. package/dist/http/utils/validate-body.d.ts +5 -0
  155. package/dist/http/utils/validate-body.d.ts.map +1 -0
  156. package/dist/http/utils/validate-body.js +23 -0
  157. package/dist/http/utils/validate-body.js.map +1 -0
  158. package/dist/http/utils/validate-query.d.ts +6 -0
  159. package/dist/http/utils/validate-query.d.ts.map +1 -0
  160. package/dist/http/utils/validate-query.js +79 -0
  161. package/dist/http/utils/validate-query.js.map +1 -0
  162. package/dist/http/utils/wrap-handler.d.ts +3 -0
  163. package/dist/http/utils/wrap-handler.d.ts.map +1 -0
  164. package/dist/http/utils/wrap-handler.js +26 -0
  165. package/dist/http/utils/wrap-handler.js.map +1 -0
  166. package/dist/index.d.ts +17 -0
  167. package/dist/index.d.ts.map +1 -0
  168. package/dist/index.js +35 -0
  169. package/dist/index.js.map +1 -0
  170. package/dist/jobs/index.d.ts +2 -0
  171. package/dist/jobs/index.d.ts.map +1 -0
  172. package/dist/jobs/index.js +18 -0
  173. package/dist/jobs/index.js.map +1 -0
  174. package/dist/jobs/job-loader.d.ts +42 -0
  175. package/dist/jobs/job-loader.d.ts.map +1 -0
  176. package/dist/jobs/job-loader.js +78 -0
  177. package/dist/jobs/job-loader.js.map +1 -0
  178. package/dist/links/index.d.ts +2 -0
  179. package/dist/links/index.d.ts.map +1 -0
  180. package/dist/links/index.js +18 -0
  181. package/dist/links/index.js.map +1 -0
  182. package/dist/links/link-loader.d.ts +10 -0
  183. package/dist/links/link-loader.d.ts.map +1 -0
  184. package/dist/links/link-loader.js +74 -0
  185. package/dist/links/link-loader.js.map +1 -0
  186. package/dist/logger/index.d.ts +3 -0
  187. package/dist/logger/index.d.ts.map +1 -0
  188. package/dist/logger/index.js +9 -0
  189. package/dist/logger/index.js.map +1 -0
  190. package/dist/medusa-app-loader.d.ts +51 -0
  191. package/dist/medusa-app-loader.d.ts.map +1 -0
  192. package/dist/medusa-app-loader.js +189 -0
  193. package/dist/medusa-app-loader.js.map +1 -0
  194. package/dist/migrations/index.d.ts +3 -0
  195. package/dist/migrations/index.d.ts.map +1 -0
  196. package/dist/migrations/index.js +19 -0
  197. package/dist/migrations/index.js.map +1 -0
  198. package/dist/migrations/migrator.d.ts +38 -0
  199. package/dist/migrations/migrator.d.ts.map +1 -0
  200. package/dist/migrations/migrator.js +129 -0
  201. package/dist/migrations/migrator.js.map +1 -0
  202. package/dist/migrations/run-migration-scripts.d.ts +17 -0
  203. package/dist/migrations/run-migration-scripts.d.ts.map +1 -0
  204. package/dist/migrations/run-migration-scripts.js +94 -0
  205. package/dist/migrations/run-migration-scripts.js.map +1 -0
  206. package/dist/mikro-orm-cli/bin.d.ts +14 -0
  207. package/dist/mikro-orm-cli/bin.d.ts.map +1 -0
  208. package/dist/mikro-orm-cli/bin.js +54 -0
  209. package/dist/mikro-orm-cli/bin.js.map +1 -0
  210. package/dist/modules-sdk/index.d.ts +2 -0
  211. package/dist/modules-sdk/index.d.ts.map +1 -0
  212. package/dist/modules-sdk/index.js +18 -0
  213. package/dist/modules-sdk/index.js.map +1 -0
  214. package/dist/orchestration/index.d.ts +2 -0
  215. package/dist/orchestration/index.d.ts.map +1 -0
  216. package/dist/orchestration/index.js +18 -0
  217. package/dist/orchestration/index.js.map +1 -0
  218. package/dist/subscribers/index.d.ts +3 -0
  219. package/dist/subscribers/index.d.ts.map +1 -0
  220. package/dist/subscribers/index.js +19 -0
  221. package/dist/subscribers/index.js.map +1 -0
  222. package/dist/subscribers/subscriber-loader.d.ts +12 -0
  223. package/dist/subscribers/subscriber-loader.d.ts.map +1 -0
  224. package/dist/subscribers/subscriber-loader.js +147 -0
  225. package/dist/subscribers/subscriber-loader.js.map +1 -0
  226. package/dist/subscribers/types.d.ts +15 -0
  227. package/dist/subscribers/types.d.ts.map +1 -0
  228. package/dist/subscribers/types.js +3 -0
  229. package/dist/subscribers/types.js.map +1 -0
  230. package/dist/telemetry/index.d.ts +50 -0
  231. package/dist/telemetry/index.d.ts.map +1 -0
  232. package/dist/telemetry/index.js +81 -0
  233. package/dist/telemetry/index.js.map +1 -0
  234. package/dist/types/container.d.ts +62 -0
  235. package/dist/types/container.d.ts.map +1 -0
  236. package/dist/types/container.js +3 -0
  237. package/dist/types/container.js.map +1 -0
  238. package/dist/types/index.d.ts +2 -0
  239. package/dist/types/index.d.ts.map +1 -0
  240. package/dist/types/index.js +18 -0
  241. package/dist/types/index.js.map +1 -0
  242. package/dist/utils/index.d.ts +3 -0
  243. package/dist/utils/index.d.ts.map +1 -0
  244. package/dist/utils/index.js +19 -0
  245. package/dist/utils/index.js.map +1 -0
  246. package/dist/utils/resource-loader.d.ts +26 -0
  247. package/dist/utils/resource-loader.d.ts.map +1 -0
  248. package/dist/utils/resource-loader.js +78 -0
  249. package/dist/utils/resource-loader.js.map +1 -0
  250. package/dist/workflows/index.d.ts +3 -0
  251. package/dist/workflows/index.d.ts.map +1 -0
  252. package/dist/workflows/index.js +19 -0
  253. package/dist/workflows/index.js.map +1 -0
  254. package/dist/workflows/workflow-loader.d.ts +12 -0
  255. package/dist/workflows/workflow-loader.d.ts.map +1 -0
  256. package/dist/workflows/workflow-loader.js +24 -0
  257. package/dist/workflows/workflow-loader.js.map +1 -0
  258. package/dist/workflows-sdk/composer.d.ts +2 -0
  259. package/dist/workflows-sdk/composer.d.ts.map +1 -0
  260. package/dist/workflows-sdk/composer.js +18 -0
  261. package/dist/workflows-sdk/composer.js.map +1 -0
  262. package/dist/workflows-sdk/index.d.ts +3 -0
  263. package/dist/workflows-sdk/index.d.ts.map +1 -0
  264. package/dist/workflows-sdk/index.js +19 -0
  265. package/dist/workflows-sdk/index.js.map +1 -0
  266. package/dist/zod/index.d.ts +2 -0
  267. package/dist/zod/index.d.ts.map +1 -0
  268. package/dist/zod/index.js +18 -0
  269. package/dist/zod/index.js.map +1 -0
  270. package/dist/zod/zod-helpers.d.ts +3 -0
  271. package/dist/zod/zod-helpers.d.ts.map +1 -0
  272. package/dist/zod/zod-helpers.js +95 -0
  273. package/dist/zod/zod-helpers.js.map +1 -0
  274. package/package.json +133 -0
package/README.md ADDED
File without changes
@@ -0,0 +1,64 @@
1
+ import type { AdminOptions, Logger } from "@8medusa/types";
2
+ import type tsStatic from "typescript";
3
+ /**
4
+ * The compiler exposes the opinionated APIs for compiling Medusa
5
+ * applications and plugins. You can perform the following
6
+ * actions.
7
+ *
8
+ * - loadTSConfigFile: Load and parse the TypeScript config file. All errors
9
+ * will be reported using the logger.
10
+ *
11
+ * - buildAppBackend: Compile the Medusa application backend source code to the
12
+ * ".medusa/server" directory. The admin source and integration-tests are
13
+ * skipped.
14
+ *
15
+ * - buildAppFrontend: Compile the admin extensions using the "@medusjs/admin-bundler"
16
+ * package. Admin can be compiled for self hosting (aka adminOnly), or can be compiled
17
+ * to be bundled with the backend output.
18
+ */
19
+ export declare class Compiler {
20
+ #private;
21
+ constructor(projectRoot: string, logger: Logger);
22
+ /**
23
+ * Loads and parses the TypeScript config file. In case of an error, the errors
24
+ * will be logged using the logger and undefined it returned
25
+ */
26
+ loadTSConfigFile(): Promise<tsStatic.ParsedCommandLine | undefined>;
27
+ /**
28
+ * Builds the application backend source code using
29
+ * TypeScript's official compiler. Also performs
30
+ * type-checking
31
+ */
32
+ buildAppBackend(tsConfig: tsStatic.ParsedCommandLine): Promise<boolean>;
33
+ /**
34
+ * Builds the frontend source code of a Medusa application
35
+ * using the "@8medusa/admin-bundler" package.
36
+ */
37
+ buildAppFrontend(adminOnly: boolean, tsConfig: tsStatic.ParsedCommandLine, adminBundler: {
38
+ build: (options: AdminOptions & {
39
+ sources: string[];
40
+ plugins: string[];
41
+ outDir: string;
42
+ }) => Promise<void>;
43
+ }): Promise<boolean>;
44
+ /**
45
+ * Compiles the plugin source code to JavaScript using the
46
+ * TypeScript's official compiler
47
+ */
48
+ buildPluginBackend(tsConfig: tsStatic.ParsedCommandLine): Promise<boolean>;
49
+ /**
50
+ * Compiles the backend source code of a plugin project in watch
51
+ * mode. Type-checking is disabled to keep compilation fast.
52
+ *
53
+ * The "onFileChange" argument can be used to get notified when
54
+ * a file has changed.
55
+ */
56
+ developPluginBackend(transformer: (filePath: string) => Promise<string>, onFileChange?: (filePath: string, action: "add" | "change" | "unlink") => void): Promise<void>;
57
+ buildPluginAdminExtensions(bundler: {
58
+ plugin: (options: {
59
+ root: string;
60
+ outDir: string;
61
+ }) => Promise<void>;
62
+ }): Promise<boolean>;
63
+ }
64
+ //# sourceMappingURL=compiler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compiler.d.ts","sourceRoot":"","sources":["../../src/build-tools/compiler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAgB,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAKxE,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAA;AAEtC;;;;;;;;;;;;;;;GAeG;AACH,qBAAa,QAAQ;;gBASP,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IA2L/C;;;OAGG;IACG,gBAAgB,IAAI,OAAO,CAAC,QAAQ,CAAC,iBAAiB,GAAG,SAAS,CAAC;IA2CzE;;;;OAIG;IACG,eAAe,CACnB,QAAQ,EAAE,QAAQ,CAAC,iBAAiB,GACnC,OAAO,CAAC,OAAO,CAAC;IAmDnB;;;OAGG;IACG,gBAAgB,CACpB,SAAS,EAAE,OAAO,EAClB,QAAQ,EAAE,QAAQ,CAAC,iBAAiB,EACpC,YAAY,EAAE;QACZ,KAAK,EAAE,CACL,OAAO,EAAE,YAAY,GAAG;YACtB,OAAO,EAAE,MAAM,EAAE,CAAA;YACjB,OAAO,EAAE,MAAM,EAAE,CAAA;YACjB,MAAM,EAAE,MAAM,CAAA;SACf,KACE,OAAO,CAAC,IAAI,CAAC,CAAA;KACnB,GACA,OAAO,CAAC,OAAO,CAAC;IA0EnB;;;OAGG;IACG,kBAAkB,CAAC,QAAQ,EAAE,QAAQ,CAAC,iBAAiB;IA8C7D;;;;;;OAMG;IACG,oBAAoB,CACxB,WAAW,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,EAClD,YAAY,CAAC,EAAE,CACb,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,KAAK,GAAG,QAAQ,GAAG,QAAQ,KAChC,IAAI;IA8DL,0BAA0B,CAAC,OAAO,EAAE;QACxC,MAAM,EAAE,CAAC,OAAO,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;KACrE;CAkBF"}
@@ -0,0 +1,419 @@
1
+ "use strict";
2
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
3
+ if (kind === "m") throw new TypeError("Private method is not writable");
4
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
5
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
6
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
7
+ };
8
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
9
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
10
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
11
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
12
+ };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
16
+ var _Compiler_instances, _Compiler_logger, _Compiler_projectRoot, _Compiler_tsConfigPath, _Compiler_pluginsDistFolder, _Compiler_backendIgnoreFiles, _Compiler_adminOnlyDistFolder, _Compiler_tsCompiler, _Compiler_trackDuration, _Compiler_computeDist, _Compiler_loadTSCompiler, _Compiler_copy, _Compiler_copyPkgManagerFiles, _Compiler_clean, _Compiler_isScriptFile, _Compiler_loadMedusaConfig, _Compiler_printDiagnostics, _Compiler_emitBuildOutput;
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.Compiler = void 0;
19
+ const utils_1 = require("@8medusa/utils");
20
+ const chokidar_1 = __importDefault(require("chokidar"));
21
+ const promises_1 = require("fs/promises");
22
+ const path_1 = __importDefault(require("path"));
23
+ /**
24
+ * The compiler exposes the opinionated APIs for compiling Medusa
25
+ * applications and plugins. You can perform the following
26
+ * actions.
27
+ *
28
+ * - loadTSConfigFile: Load and parse the TypeScript config file. All errors
29
+ * will be reported using the logger.
30
+ *
31
+ * - buildAppBackend: Compile the Medusa application backend source code to the
32
+ * ".medusa/server" directory. The admin source and integration-tests are
33
+ * skipped.
34
+ *
35
+ * - buildAppFrontend: Compile the admin extensions using the "@medusjs/admin-bundler"
36
+ * package. Admin can be compiled for self hosting (aka adminOnly), or can be compiled
37
+ * to be bundled with the backend output.
38
+ */
39
+ class Compiler {
40
+ constructor(projectRoot, logger) {
41
+ _Compiler_instances.add(this);
42
+ _Compiler_logger.set(this, void 0);
43
+ _Compiler_projectRoot.set(this, void 0);
44
+ _Compiler_tsConfigPath.set(this, void 0);
45
+ _Compiler_pluginsDistFolder.set(this, void 0);
46
+ _Compiler_backendIgnoreFiles.set(this, void 0);
47
+ _Compiler_adminOnlyDistFolder.set(this, void 0);
48
+ _Compiler_tsCompiler.set(this, void 0);
49
+ __classPrivateFieldSet(this, _Compiler_projectRoot, projectRoot, "f");
50
+ __classPrivateFieldSet(this, _Compiler_logger, logger, "f");
51
+ __classPrivateFieldSet(this, _Compiler_tsConfigPath, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "tsconfig.json"), "f");
52
+ __classPrivateFieldSet(this, _Compiler_adminOnlyDistFolder, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), ".medusa/admin"), "f");
53
+ __classPrivateFieldSet(this, _Compiler_pluginsDistFolder, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), ".medusa/server"), "f");
54
+ __classPrivateFieldSet(this, _Compiler_backendIgnoreFiles, [
55
+ "integration-tests",
56
+ "test",
57
+ "unit-tests",
58
+ "src/admin",
59
+ ], "f");
60
+ }
61
+ /**
62
+ * Loads and parses the TypeScript config file. In case of an error, the errors
63
+ * will be logged using the logger and undefined it returned
64
+ */
65
+ async loadTSConfigFile() {
66
+ const ts = await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_loadTSCompiler).call(this);
67
+ let tsConfigErrors = [];
68
+ const tsConfig = ts.getParsedCommandLineOfConfigFile(__classPrivateFieldGet(this, _Compiler_tsConfigPath, "f"), {
69
+ inlineSourceMap: true,
70
+ excludes: [],
71
+ }, {
72
+ ...ts.sys,
73
+ useCaseSensitiveFileNames: true,
74
+ getCurrentDirectory: () => __classPrivateFieldGet(this, _Compiler_projectRoot, "f"),
75
+ onUnRecoverableConfigFileDiagnostic: (error) => (tsConfigErrors = [error]),
76
+ });
77
+ /**
78
+ * Push errors from the tsConfig parsed output to the
79
+ * tsConfigErrors array.
80
+ */
81
+ if (tsConfig?.errors.length) {
82
+ tsConfigErrors.push(...tsConfig.errors);
83
+ }
84
+ /**
85
+ * Display all config errors using the diagnostics reporter
86
+ */
87
+ __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_printDiagnostics).call(this, ts, tsConfigErrors);
88
+ /**
89
+ * Return undefined when there are errors in parsing the config
90
+ * file
91
+ */
92
+ if (tsConfigErrors.length) {
93
+ return;
94
+ }
95
+ return tsConfig;
96
+ }
97
+ /**
98
+ * Builds the application backend source code using
99
+ * TypeScript's official compiler. Also performs
100
+ * type-checking
101
+ */
102
+ async buildAppBackend(tsConfig) {
103
+ const tracker = __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_trackDuration).call(this);
104
+ const dist = __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_computeDist).call(this, tsConfig);
105
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info("Compiling backend source...");
106
+ /**
107
+ * Step 1: Cleanup existing build output
108
+ */
109
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`Removing existing "${path_1.default.relative(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), dist)}" folder`);
110
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_clean).call(this, dist);
111
+ /**
112
+ * Step 2: Compile TypeScript source code
113
+ */
114
+ const { emitResult, diagnostics } = await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_emitBuildOutput).call(this, tsConfig, __classPrivateFieldGet(this, _Compiler_backendIgnoreFiles, "f"), dist);
115
+ /**
116
+ * Exit early if no output is written to the disk
117
+ */
118
+ if (emitResult.emitSkipped) {
119
+ __classPrivateFieldGet(this, _Compiler_logger, "f").warn("Backend build completed without emitting any output");
120
+ return false;
121
+ }
122
+ /**
123
+ * Step 3: Copy package manager files to the output folder
124
+ */
125
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_copyPkgManagerFiles).call(this, dist);
126
+ /**
127
+ * Notify about the state of build
128
+ */
129
+ if (diagnostics.length) {
130
+ __classPrivateFieldGet(this, _Compiler_logger, "f").warn(`Backend build completed with errors (${tracker.getSeconds()}s)`);
131
+ return false;
132
+ }
133
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`Backend build completed successfully (${tracker.getSeconds()}s)`);
134
+ return true;
135
+ }
136
+ /**
137
+ * Builds the frontend source code of a Medusa application
138
+ * using the "@8medusa/admin-bundler" package.
139
+ */
140
+ async buildAppFrontend(adminOnly, tsConfig, adminBundler) {
141
+ const tracker = __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_trackDuration).call(this);
142
+ /**
143
+ * Step 1: Load the medusa config file to read
144
+ * admin options
145
+ */
146
+ const configFile = await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_loadMedusaConfig).call(this);
147
+ if (!configFile) {
148
+ return false;
149
+ }
150
+ /**
151
+ * Return early when admin is disabled and we are trying to
152
+ * create a bundled build for the admin.
153
+ */
154
+ if (configFile.configModule.admin.disable && !adminOnly) {
155
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info("Skipping admin build, since its disabled inside the medusa-config file");
156
+ return true;
157
+ }
158
+ /**
159
+ * Warn when we are creating an admin only build, but forgot to disable
160
+ * the admin inside the config file
161
+ */
162
+ if (!configFile.configModule.admin.disable && adminOnly) {
163
+ __classPrivateFieldGet(this, _Compiler_logger, "f").warn(`You are building using the flag --admin-only but the admin is enabled in your medusa-config, If you intend to host the dashboard separately you should disable the admin in your medusa config`);
164
+ }
165
+ const plugins = await (0, utils_1.getResolvedPlugins)(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), configFile.configModule, true);
166
+ const adminSources = plugins
167
+ .map((plugin) => plugin.admin?.type === "local" ? plugin.admin.resolve : undefined)
168
+ .filter(Boolean);
169
+ const adminPlugins = plugins
170
+ .map((plugin) => plugin.admin?.type === "package" ? plugin.admin.resolve : undefined)
171
+ .filter(Boolean);
172
+ try {
173
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info("Compiling frontend source...");
174
+ await adminBundler.build({
175
+ disable: false,
176
+ sources: adminSources,
177
+ plugins: adminPlugins,
178
+ ...configFile.configModule.admin,
179
+ outDir: adminOnly
180
+ ? __classPrivateFieldGet(this, _Compiler_adminOnlyDistFolder, "f")
181
+ : path_1.default.join(__classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_computeDist).call(this, tsConfig), "./public/admin"),
182
+ });
183
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`Frontend build completed successfully (${tracker.getSeconds()}s)`);
184
+ return true;
185
+ }
186
+ catch (error) {
187
+ __classPrivateFieldGet(this, _Compiler_logger, "f").error("Unable to compile frontend source");
188
+ __classPrivateFieldGet(this, _Compiler_logger, "f").error(error);
189
+ return false;
190
+ }
191
+ }
192
+ /**
193
+ * Compiles the plugin source code to JavaScript using the
194
+ * TypeScript's official compiler
195
+ */
196
+ async buildPluginBackend(tsConfig) {
197
+ const tracker = __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_trackDuration).call(this);
198
+ const dist = ".medusa/server";
199
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info("Compiling plugin source...");
200
+ /**
201
+ * Step 1: Cleanup existing build output
202
+ */
203
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`Removing existing "${path_1.default.relative(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), dist)}" folder`);
204
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_clean).call(this, dist);
205
+ /**
206
+ * Step 2: Compile TypeScript source code
207
+ */
208
+ const { emitResult, diagnostics } = await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_emitBuildOutput).call(this, tsConfig, __classPrivateFieldGet(this, _Compiler_backendIgnoreFiles, "f"), dist);
209
+ /**
210
+ * Exit early if no output is written to the disk
211
+ */
212
+ if (emitResult.emitSkipped) {
213
+ __classPrivateFieldGet(this, _Compiler_logger, "f").warn("Plugin build completed without emitting any output");
214
+ return false;
215
+ }
216
+ /**
217
+ * Notify about the state of build
218
+ */
219
+ if (diagnostics.length) {
220
+ __classPrivateFieldGet(this, _Compiler_logger, "f").warn(`Plugin build completed with errors (${tracker.getSeconds()}s)`);
221
+ return false;
222
+ }
223
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`Plugin build completed successfully (${tracker.getSeconds()}s)`);
224
+ return true;
225
+ }
226
+ /**
227
+ * Compiles the backend source code of a plugin project in watch
228
+ * mode. Type-checking is disabled to keep compilation fast.
229
+ *
230
+ * The "onFileChange" argument can be used to get notified when
231
+ * a file has changed.
232
+ */
233
+ async developPluginBackend(transformer, onFileChange) {
234
+ const fs = new utils_1.FileSystem(__classPrivateFieldGet(this, _Compiler_pluginsDistFolder, "f"));
235
+ await fs.createJson("medusa-plugin-options.json", {
236
+ srcDir: path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "src"),
237
+ });
238
+ const watcher = chokidar_1.default.watch(["."], {
239
+ ignoreInitial: true,
240
+ cwd: __classPrivateFieldGet(this, _Compiler_projectRoot, "f"),
241
+ ignored: [
242
+ /(^|[\\/\\])\../,
243
+ "node_modules",
244
+ "dist",
245
+ "static",
246
+ "private",
247
+ ".medusa/**/*",
248
+ ...__classPrivateFieldGet(this, _Compiler_backendIgnoreFiles, "f"),
249
+ ],
250
+ });
251
+ watcher.on("add", async (file) => {
252
+ if (!__classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_isScriptFile).call(this, file)) {
253
+ return;
254
+ }
255
+ const relativePath = path_1.default.relative(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), file);
256
+ const outputPath = relativePath.replace(/\.ts$/, ".js");
257
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`${relativePath} updated: Republishing changes`);
258
+ await fs.create(outputPath, await transformer(file));
259
+ onFileChange?.(file, "add");
260
+ });
261
+ watcher.on("change", async (file) => {
262
+ if (!__classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_isScriptFile).call(this, file)) {
263
+ return;
264
+ }
265
+ const relativePath = path_1.default.relative(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), file);
266
+ const outputPath = relativePath.replace(/\.ts$/, ".js");
267
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`${relativePath} updated: Republishing changes`);
268
+ await fs.create(outputPath, await transformer(file));
269
+ onFileChange?.(file, "change");
270
+ });
271
+ watcher.on("unlink", async (file) => {
272
+ if (!__classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_isScriptFile).call(this, file)) {
273
+ return;
274
+ }
275
+ const relativePath = path_1.default.relative(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), file);
276
+ const outputPath = relativePath.replace(/\.ts$/, ".js");
277
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`${relativePath} removed: Republishing changes`);
278
+ await fs.remove(outputPath);
279
+ onFileChange?.(file, "unlink");
280
+ });
281
+ watcher.on("ready", () => {
282
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info("watching for file changes");
283
+ });
284
+ }
285
+ async buildPluginAdminExtensions(bundler) {
286
+ const tracker = __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_trackDuration).call(this);
287
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info("Compiling plugin admin extensions...");
288
+ try {
289
+ await bundler.plugin({
290
+ root: __classPrivateFieldGet(this, _Compiler_projectRoot, "f"),
291
+ outDir: __classPrivateFieldGet(this, _Compiler_pluginsDistFolder, "f"),
292
+ });
293
+ __classPrivateFieldGet(this, _Compiler_logger, "f").info(`Plugin admin extensions build completed successfully (${tracker.getSeconds()}s)`);
294
+ return true;
295
+ }
296
+ catch (error) {
297
+ __classPrivateFieldGet(this, _Compiler_logger, "f").error(`Plugin admin extensions build failed`, error);
298
+ return false;
299
+ }
300
+ }
301
+ }
302
+ exports.Compiler = Compiler;
303
+ _Compiler_logger = new WeakMap(), _Compiler_projectRoot = new WeakMap(), _Compiler_tsConfigPath = new WeakMap(), _Compiler_pluginsDistFolder = new WeakMap(), _Compiler_backendIgnoreFiles = new WeakMap(), _Compiler_adminOnlyDistFolder = new WeakMap(), _Compiler_tsCompiler = new WeakMap(), _Compiler_instances = new WeakSet(), _Compiler_trackDuration = function _Compiler_trackDuration() {
304
+ const startTime = process.hrtime();
305
+ return {
306
+ getSeconds() {
307
+ const duration = process.hrtime(startTime);
308
+ return (duration[0] + duration[1] / 1e9).toFixed(2);
309
+ },
310
+ };
311
+ }, _Compiler_computeDist = function _Compiler_computeDist(tsConfig) {
312
+ const distFolder = tsConfig.options.outDir ?? ".medusa/server";
313
+ return path_1.default.isAbsolute(distFolder)
314
+ ? distFolder
315
+ : path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), distFolder);
316
+ }, _Compiler_loadTSCompiler =
317
+ /**
318
+ * Imports and stores a reference to the TypeScript compiler.
319
+ * We dynamically import "typescript", since its is a dev
320
+ * only dependency
321
+ */
322
+ async function _Compiler_loadTSCompiler() {
323
+ if (!__classPrivateFieldGet(this, _Compiler_tsCompiler, "f")) {
324
+ __classPrivateFieldSet(this, _Compiler_tsCompiler, await import("typescript"), "f");
325
+ }
326
+ return __classPrivateFieldGet(this, _Compiler_tsCompiler, "f");
327
+ }, _Compiler_copy =
328
+ /**
329
+ * Copies the file to the destination without throwing any
330
+ * errors if the source file is missing
331
+ */
332
+ async function _Compiler_copy(source, destination) {
333
+ let sourceExists = false;
334
+ try {
335
+ await (0, promises_1.access)(source, promises_1.constants.F_OK);
336
+ sourceExists = true;
337
+ }
338
+ catch (error) {
339
+ if (error.code !== "ENOENT") {
340
+ throw error;
341
+ }
342
+ }
343
+ if (sourceExists) {
344
+ await (0, promises_1.copyFile)(path_1.default.join(source), path_1.default.join(destination));
345
+ }
346
+ }, _Compiler_copyPkgManagerFiles =
347
+ /**
348
+ * Copies package manager files from the project root
349
+ * to the specified dist folder
350
+ */
351
+ async function _Compiler_copyPkgManagerFiles(dist) {
352
+ /**
353
+ * Copying package manager files
354
+ */
355
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_copy).call(this, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "package.json"), path_1.default.join(dist, "package.json"));
356
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_copy).call(this, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "yarn.lock"), path_1.default.join(dist, "yarn.lock"));
357
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_copy).call(this, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "pnpm.lock"), path_1.default.join(dist, "pnpm.lock"));
358
+ await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_copy).call(this, path_1.default.join(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "package-lock.json"), path_1.default.join(dist, "package-lock.json"));
359
+ }, _Compiler_clean =
360
+ /**
361
+ * Removes the directory and its children recursively and
362
+ * ignores any errors
363
+ */
364
+ async function _Compiler_clean(path) {
365
+ await (0, promises_1.rm)(path, { recursive: true }).catch(() => { });
366
+ }, _Compiler_isScriptFile = function _Compiler_isScriptFile(filePath) {
367
+ if (filePath.endsWith(".ts") && !filePath.endsWith(".d.ts")) {
368
+ return true;
369
+ }
370
+ return filePath.endsWith(".js");
371
+ }, _Compiler_loadMedusaConfig =
372
+ /**
373
+ * Loads the medusa config file and prints the error to
374
+ * the console (in case of any errors). Otherwise, the
375
+ * file path and the parsed config is returned
376
+ */
377
+ async function _Compiler_loadMedusaConfig() {
378
+ const { configModule, configFilePath, error } = await (0, utils_1.getConfigFile)(__classPrivateFieldGet(this, _Compiler_projectRoot, "f"), "medusa-config");
379
+ if (error) {
380
+ __classPrivateFieldGet(this, _Compiler_logger, "f").error(`Failed to load medusa-config.(js|ts) file`);
381
+ __classPrivateFieldGet(this, _Compiler_logger, "f").error(error);
382
+ return;
383
+ }
384
+ return { configFilePath, configModule };
385
+ }, _Compiler_printDiagnostics = function _Compiler_printDiagnostics(ts, diagnostics) {
386
+ if (diagnostics.length) {
387
+ console.error(ts.formatDiagnosticsWithColorAndContext(diagnostics, ts.createCompilerHost({})));
388
+ }
389
+ }, _Compiler_emitBuildOutput =
390
+ /**
391
+ * Given a tsconfig file, this method will write the compiled
392
+ * output to the specified destination
393
+ */
394
+ async function _Compiler_emitBuildOutput(tsConfig, chunksToIgnore, dist) {
395
+ const ts = await __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_loadTSCompiler).call(this);
396
+ const filesToCompile = tsConfig.fileNames.filter((fileName) => {
397
+ return !chunksToIgnore.some((chunk) => fileName.includes(`${chunk}/`));
398
+ });
399
+ /**
400
+ * Create emit program to compile and emit output
401
+ */
402
+ const program = ts.createProgram(filesToCompile, {
403
+ ...tsConfig.options,
404
+ ...{
405
+ outDir: dist,
406
+ inlineSourceMap: !tsConfig.options.sourceMap,
407
+ },
408
+ });
409
+ const emitResult = program.emit();
410
+ const diagnostics = ts
411
+ .getPreEmitDiagnostics(program)
412
+ .concat(emitResult.diagnostics);
413
+ /**
414
+ * Log errors (if any)
415
+ */
416
+ __classPrivateFieldGet(this, _Compiler_instances, "m", _Compiler_printDiagnostics).call(this, ts, diagnostics);
417
+ return { emitResult, diagnostics };
418
+ };
419
+ //# sourceMappingURL=compiler.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compiler.js","sourceRoot":"","sources":["../../src/build-tools/compiler.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from "./compiler";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/build-tools/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./compiler"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/build-tools/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B"}
@@ -0,0 +1,34 @@
1
+ import { ConfigModule } from "./types";
2
+ export declare class ConfigManager {
3
+ #private;
4
+ get config(): ConfigModule;
5
+ get baseDir(): string;
6
+ get isProduction(): boolean;
7
+ constructor();
8
+ /**
9
+ * Rejects an error either by throwing when in production or by logging the error as a warning
10
+ * @param error
11
+ * @protected
12
+ */
13
+ protected rejectErrors(error: string): never | void;
14
+ /**
15
+ * Builds the http config object and assign the defaults if needed
16
+ * @param projectConfig
17
+ * @protected
18
+ */
19
+ protected buildHttpConfig(projectConfig: Partial<ConfigModule["projectConfig"]>): ConfigModule["projectConfig"]["http"];
20
+ /**
21
+ * Normalizes the project config object and assign the defaults if needed
22
+ * @param projectConfig
23
+ * @protected
24
+ */
25
+ protected normalizeProjectConfig(projectConfig: Partial<ConfigModule["projectConfig"]>): ConfigModule["projectConfig"];
26
+ /**
27
+ * Prepare the full configuration after validation and normalization
28
+ */
29
+ loadConfig({ projectConfig, baseDir, }: {
30
+ projectConfig: Partial<ConfigModule>;
31
+ baseDir: string;
32
+ }): ConfigModule;
33
+ }
34
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAItC,qBAAa,aAAa;;IA8BxB,IAAI,MAAM,IAAI,YAAY,CAOzB;IAED,IAAI,OAAO,IAAI,MAAM,CAEpB;IAED,IAAI,YAAY,IAAI,OAAO,CAE1B;;IAID;;;;OAIG;IACH,SAAS,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,IAAI;IAQnD;;;;OAIG;IACH,SAAS,CAAC,eAAe,CACvB,aAAa,EAAE,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC,GACpD,YAAY,CAAC,eAAe,CAAC,CAAC,MAAM,CAAC;IAqCxC;;;;OAIG;IACH,SAAS,CAAC,sBAAsB,CAC9B,aAAa,EAAE,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC,GACpD,YAAY,CAAC,eAAe,CAAC;IA+BhC;;OAEG;IACH,UAAU,CAAC,EACT,aAAkB,EAClB,OAAO,GACR,EAAE;QACD,aAAa,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;QACpC,OAAO,EAAE,MAAM,CAAA;KAChB,GAAG,YAAY;CAmBjB"}