@pristine-ts/cli 2.0.4 → 2.0.5

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 (140) hide show
  1. package/dist/bin/pristine.cjs +6 -2
  2. package/dist/lib/cjs/bin.js +18 -1
  3. package/dist/lib/cjs/bin.js.map +1 -1
  4. package/dist/lib/cjs/bootstrap/app-module-loader.js +40 -78
  5. package/dist/lib/cjs/bootstrap/app-module-loader.js.map +1 -1
  6. package/dist/lib/cjs/bootstrap/loaded-app-module.js +9 -13
  7. package/dist/lib/cjs/bootstrap/loaded-app-module.js.map +1 -1
  8. package/dist/lib/cjs/bootstrap/plugin-loader.js +3 -3
  9. package/dist/lib/cjs/bootstrap/plugin-loader.js.map +1 -1
  10. package/dist/lib/cjs/cli.js +173 -85
  11. package/dist/lib/cjs/cli.js.map +1 -1
  12. package/dist/lib/cjs/cli.module.js +24 -8
  13. package/dist/lib/cjs/cli.module.js.map +1 -1
  14. package/dist/lib/cjs/commands/build-alias.command.js.map +1 -1
  15. package/dist/lib/cjs/commands/build.command.js +9 -10
  16. package/dist/lib/cjs/commands/build.command.js.map +1 -1
  17. package/dist/lib/cjs/commands/config-print.command.js +1 -2
  18. package/dist/lib/cjs/commands/config-print.command.js.map +1 -1
  19. package/dist/lib/cjs/commands/help-alias.command.js.map +1 -1
  20. package/dist/lib/cjs/commands/help.command.js +1 -2
  21. package/dist/lib/cjs/commands/help.command.js.map +1 -1
  22. package/dist/lib/cjs/commands/info-alias.command.js.map +1 -1
  23. package/dist/lib/cjs/commands/info.command.js +7 -8
  24. package/dist/lib/cjs/commands/info.command.js.map +1 -1
  25. package/dist/lib/cjs/commands/init-alias.command.js.map +1 -1
  26. package/dist/lib/cjs/commands/init.command.js +13 -12
  27. package/dist/lib/cjs/commands/init.command.js.map +1 -1
  28. package/dist/lib/cjs/commands/list-alias.command.js.map +1 -1
  29. package/dist/lib/cjs/commands/list.command.js +1 -2
  30. package/dist/lib/cjs/commands/list.command.js.map +1 -1
  31. package/dist/lib/cjs/commands/start-alias.command.js.map +1 -1
  32. package/dist/lib/cjs/commands/start.command.js +3 -4
  33. package/dist/lib/cjs/commands/start.command.js.map +1 -1
  34. package/dist/lib/cjs/commands/verify-alias.command.js.map +1 -1
  35. package/dist/lib/cjs/commands/verify.command.js +3 -4
  36. package/dist/lib/cjs/commands/verify.command.js.map +1 -1
  37. package/dist/lib/cjs/config/resolved-pristine-config.js +2 -3
  38. package/dist/lib/cjs/config/resolved-pristine-config.js.map +1 -1
  39. package/dist/lib/cjs/errors/cli-error-code.enum.js +17 -0
  40. package/dist/lib/cjs/errors/cli-error-code.enum.js.map +1 -0
  41. package/dist/lib/cjs/errors/command-not-found.error.js +11 -12
  42. package/dist/lib/cjs/errors/command-not-found.error.js.map +1 -1
  43. package/dist/lib/cjs/errors/errors.js +1 -0
  44. package/dist/lib/cjs/errors/errors.js.map +1 -1
  45. package/dist/lib/cjs/event-handlers/cli.event-handler.js +28 -20
  46. package/dist/lib/cjs/event-handlers/cli.event-handler.js.map +1 -1
  47. package/dist/lib/cjs/reporters/cli-error.reporter.js +121 -0
  48. package/dist/lib/cjs/reporters/cli-error.reporter.js.map +1 -0
  49. package/dist/lib/cjs/tsconfig.cjs.tsbuildinfo +1 -1
  50. package/dist/lib/cjs/types/command-event-response.type.js.map +1 -1
  51. package/dist/lib/esm/bin.js +18 -1
  52. package/dist/lib/esm/bin.js.map +1 -1
  53. package/dist/lib/esm/bootstrap/app-module-loader.js +40 -78
  54. package/dist/lib/esm/bootstrap/app-module-loader.js.map +1 -1
  55. package/dist/lib/esm/bootstrap/loaded-app-module.js +9 -13
  56. package/dist/lib/esm/bootstrap/loaded-app-module.js.map +1 -1
  57. package/dist/lib/esm/bootstrap/plugin-loader.js +3 -3
  58. package/dist/lib/esm/bootstrap/plugin-loader.js.map +1 -1
  59. package/dist/lib/esm/cli.js +172 -84
  60. package/dist/lib/esm/cli.js.map +1 -1
  61. package/dist/lib/esm/cli.module.js +24 -8
  62. package/dist/lib/esm/cli.module.js.map +1 -1
  63. package/dist/lib/esm/commands/build-alias.command.js.map +1 -1
  64. package/dist/lib/esm/commands/build.command.js +10 -11
  65. package/dist/lib/esm/commands/build.command.js.map +1 -1
  66. package/dist/lib/esm/commands/config-print.command.js +2 -3
  67. package/dist/lib/esm/commands/config-print.command.js.map +1 -1
  68. package/dist/lib/esm/commands/help-alias.command.js.map +1 -1
  69. package/dist/lib/esm/commands/help.command.js +2 -3
  70. package/dist/lib/esm/commands/help.command.js.map +1 -1
  71. package/dist/lib/esm/commands/info-alias.command.js.map +1 -1
  72. package/dist/lib/esm/commands/info.command.js +8 -9
  73. package/dist/lib/esm/commands/info.command.js.map +1 -1
  74. package/dist/lib/esm/commands/init-alias.command.js.map +1 -1
  75. package/dist/lib/esm/commands/init.command.js +14 -13
  76. package/dist/lib/esm/commands/init.command.js.map +1 -1
  77. package/dist/lib/esm/commands/list-alias.command.js.map +1 -1
  78. package/dist/lib/esm/commands/list.command.js +2 -3
  79. package/dist/lib/esm/commands/list.command.js.map +1 -1
  80. package/dist/lib/esm/commands/start-alias.command.js.map +1 -1
  81. package/dist/lib/esm/commands/start.command.js +4 -5
  82. package/dist/lib/esm/commands/start.command.js.map +1 -1
  83. package/dist/lib/esm/commands/verify-alias.command.js.map +1 -1
  84. package/dist/lib/esm/commands/verify.command.js +4 -5
  85. package/dist/lib/esm/commands/verify.command.js.map +1 -1
  86. package/dist/lib/esm/config/resolved-pristine-config.js +2 -3
  87. package/dist/lib/esm/config/resolved-pristine-config.js.map +1 -1
  88. package/dist/lib/esm/errors/cli-error-code.enum.js +14 -0
  89. package/dist/lib/esm/errors/cli-error-code.enum.js.map +1 -0
  90. package/dist/lib/esm/errors/command-not-found.error.js +12 -13
  91. package/dist/lib/esm/errors/command-not-found.error.js.map +1 -1
  92. package/dist/lib/esm/errors/errors.js +1 -0
  93. package/dist/lib/esm/errors/errors.js.map +1 -1
  94. package/dist/lib/esm/event-handlers/cli.event-handler.js +29 -21
  95. package/dist/lib/esm/event-handlers/cli.event-handler.js.map +1 -1
  96. package/dist/lib/esm/reporters/cli-error.reporter.js +118 -0
  97. package/dist/lib/esm/reporters/cli-error.reporter.js.map +1 -0
  98. package/dist/lib/esm/tsconfig.tsbuildinfo +1 -1
  99. package/dist/lib/esm/types/command-event-response.type.js.map +1 -1
  100. package/dist/types/bin.d.ts +1 -0
  101. package/dist/types/bootstrap/app-module-loader.d.ts +24 -25
  102. package/dist/types/bootstrap/loaded-app-module.d.ts +12 -26
  103. package/dist/types/bootstrap/plugin-loader.d.ts +1 -1
  104. package/dist/types/cli.d.ts +69 -9
  105. package/dist/types/cli.module.d.ts +2 -2
  106. package/dist/types/commands/build-alias.command.d.ts +2 -2
  107. package/dist/types/commands/build.command.d.ts +2 -2
  108. package/dist/types/commands/config-print.command.d.ts +2 -2
  109. package/dist/types/commands/help-alias.command.d.ts +2 -2
  110. package/dist/types/commands/help.command.d.ts +2 -2
  111. package/dist/types/commands/info-alias.command.d.ts +2 -2
  112. package/dist/types/commands/info.command.d.ts +2 -2
  113. package/dist/types/commands/init-alias.command.d.ts +2 -2
  114. package/dist/types/commands/init.command.d.ts +2 -2
  115. package/dist/types/commands/list-alias.command.d.ts +2 -2
  116. package/dist/types/commands/list.command.d.ts +2 -2
  117. package/dist/types/commands/start-alias.command.d.ts +2 -2
  118. package/dist/types/commands/start.command.d.ts +2 -2
  119. package/dist/types/commands/verify-alias.command.d.ts +2 -2
  120. package/dist/types/commands/verify.command.d.ts +2 -2
  121. package/dist/types/config/pristine-config.interface.d.ts +38 -12
  122. package/dist/types/config/resolved-pristine-config.d.ts +4 -6
  123. package/dist/types/errors/cli-error-code.enum.d.ts +12 -0
  124. package/dist/types/errors/command-not-found.error.d.ts +8 -7
  125. package/dist/types/errors/errors.d.ts +1 -0
  126. package/dist/types/event-handlers/cli.event-handler.d.ts +4 -19
  127. package/dist/types/interfaces/command.interface.d.ts +2 -2
  128. package/dist/types/reporters/cli-error.reporter.d.ts +45 -0
  129. package/dist/types/types/command-event-response.type.d.ts +2 -2
  130. package/package.json +9 -9
  131. package/dist/lib/cjs/enums/enums.js +0 -18
  132. package/dist/lib/cjs/enums/enums.js.map +0 -1
  133. package/dist/lib/cjs/enums/exit-code.enum.js +0 -9
  134. package/dist/lib/cjs/enums/exit-code.enum.js.map +0 -1
  135. package/dist/lib/esm/enums/enums.js +0 -2
  136. package/dist/lib/esm/enums/enums.js.map +0 -1
  137. package/dist/lib/esm/enums/exit-code.enum.js +0 -6
  138. package/dist/lib/esm/enums/exit-code.enum.js.map +0 -1
  139. package/dist/types/enums/enums.d.ts +0 -1
  140. package/dist/types/enums/exit-code.enum.d.ts +0 -4
@@ -3,5 +3,9 @@
3
3
 
4
4
  // dist/lib/cjs/bin.js
5
5
  require("reflect-metadata");
6
- require("@pristine-ts/cli").bootstrap();
7
- //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vc3JjL2Jpbi50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiIyEvdXNyL2Jpbi9lbnYgbm9kZVxuLyogZXNsaW50LWRpc2FibGUgQHR5cGVzY3JpcHQtZXNsaW50L25vLXZhci1yZXF1aXJlcyAqL1xuLy8gVGhpcyBmaWxlIGlzIGludGVudGlvbmFsbHkgQ0pTIGByZXF1aXJlKClgIHJhdGhlciB0aGFuIEVTTSBgaW1wb3J0YC4gSXQgcnVucyBhcyB0aGUgYmluXG4vLyBlbnRyeSBjb21waWxlZCB0byBkaXN0L2xpYi9janMvYmluLmpzLCB3aGVyZSAoYSkgdGhlIGxvYWQgb3JkZXIgbWF0dGVycyAocmVmbGVjdC1tZXRhZGF0YVxuLy8gTVVTVCBpbml0aWFsaXplIGJlZm9yZSBhbnkgZGVjb3JhdGVkIGNsYXNzIGlzIHRvdWNoZWQpIGFuZCAoYikgc3RhdGljIGBpbXBvcnRgIGNhbm5vdCBiZVxuLy8gcmVvcmRlcmVkIGFyb3VuZCBwYWNrYWdlLWxvYWRpbmcgc2lkZSBlZmZlY3RzIHRoZSB3YXkgZXhwbGljaXQgcmVxdWlyZSgpIGNhbGxzIGNhbi5cbi8vXG4vLyByZWZsZWN0LW1ldGFkYXRhIG11c3QgbG9hZCBiZWZvcmUgYW55IGRlY29yYXRlZCBjbGFzcyBzbyB0aGUgQGluamVjdGFibGUvQHRhZyBkZWNvcmF0b3JzXG4vLyBjYW4gcmVjb3JkIHRoZWlyIG1ldGFkYXRhIGFnYWluc3QgdGhlIHNhbWUgUmVmbGVjdC5tZXRhZGF0YSBzdG9yYWdlIHRzeXJpbmdlIGxhdGVyIHJlYWRzLlxucmVxdWlyZSgncmVmbGVjdC1tZXRhZGF0YScpO1xuXG4vLyBMb2FkIHRoZSBjbGkgdmlhIGl0cyBwYWNrYWdlIG5hbWUgKG5vdCBhIHJlbGF0aXZlIHJlcXVpcmUpIHNvIHRoaXMgYmluIGFuZCB0aGUgY29uc3VtZXInc1xuLy8gQXBwTW9kdWxlIGJvdGggcmVzb2x2ZSB0byB0aGUgc2FtZSBwaHlzaWNhbCBjb3B5IG9mIGV2ZXJ5IEBwcmlzdGluZS10cy9jbGkgY2xhc3MuIElmIHdlXG4vLyBsb2FkZWQgdmlhIGAuL2NsaS5qc2AgYW5kIHRoZSBjb25zdW1lcidzIGFwcC5tb2R1bGUuanMgbG9hZGVkIHZpYSBgQHByaXN0aW5lLXRzL2NsaWAsIHRoZVxuLy8gdHdvIGhhbHZlcyB3b3VsZCBlYWNoIGdldCB0aGVpciBvd24gY2xhc3MgaWRlbnRpdGllcyBhbmQgdHN5cmluZ2UncyBkZWNvcmF0b3IgbWV0YWRhdGFcbi8vIChrZXllZCBieSBjbGFzcyBpZGVudGl0eSkgd291bGQgbm90IGJlIHNoYXJlZCBcdTIwMTQgbWFuaWZlc3RpbmcgYXMgXCJUeXBlSW5mbyBub3Qga25vd24gZm9yIFhcIi5cbnJlcXVpcmUoJ0BwcmlzdGluZS10cy9jbGknKS5ib290c3RyYXAoKTsiXSwKICAibWFwcGluZ3MiOiAiOzs7O0FBU0EsUUFBUSxrQkFBa0I7QUFPMUIsUUFBUSxrQkFBa0IsRUFBRSxVQUFTOyIsCiAgIm5hbWVzIjogW10KfQo=
6
+ var { Cli } = require("@pristine-ts/cli");
7
+ new Cli().bootstrap().then((exitCode) => process.exit(exitCode)).catch((error) => {
8
+ console.error(error);
9
+ process.exit(1);
10
+ });
11
+ //# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vc3JjL2Jpbi50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiIyEvdXNyL2Jpbi9lbnYgbm9kZVxuLyogZXNsaW50LWRpc2FibGUgQHR5cGVzY3JpcHQtZXNsaW50L25vLXZhci1yZXF1aXJlcyAqL1xuLy8gVGhpcyBmaWxlIGlzIGludGVudGlvbmFsbHkgQ0pTIGByZXF1aXJlKClgIHJhdGhlciB0aGFuIEVTTSBgaW1wb3J0YC4gSXQgcnVucyBhcyB0aGUgYmluXG4vLyBlbnRyeSBjb21waWxlZCB0byBkaXN0L2xpYi9janMvYmluLmpzLCB3aGVyZSAoYSkgdGhlIGxvYWQgb3JkZXIgbWF0dGVycyAocmVmbGVjdC1tZXRhZGF0YVxuLy8gTVVTVCBpbml0aWFsaXplIGJlZm9yZSBhbnkgZGVjb3JhdGVkIGNsYXNzIGlzIHRvdWNoZWQpIGFuZCAoYikgc3RhdGljIGBpbXBvcnRgIGNhbm5vdCBiZVxuLy8gcmVvcmRlcmVkIGFyb3VuZCBwYWNrYWdlLWxvYWRpbmcgc2lkZSBlZmZlY3RzIHRoZSB3YXkgZXhwbGljaXQgcmVxdWlyZSgpIGNhbGxzIGNhbi5cbi8vXG4vLyByZWZsZWN0LW1ldGFkYXRhIG11c3QgbG9hZCBiZWZvcmUgYW55IGRlY29yYXRlZCBjbGFzcyBzbyB0aGUgQGluamVjdGFibGUvQHRhZyBkZWNvcmF0b3JzXG4vLyBjYW4gcmVjb3JkIHRoZWlyIG1ldGFkYXRhIGFnYWluc3QgdGhlIHNhbWUgUmVmbGVjdC5tZXRhZGF0YSBzdG9yYWdlIHRzeXJpbmdlIGxhdGVyIHJlYWRzLlxucmVxdWlyZSgncmVmbGVjdC1tZXRhZGF0YScpO1xuXG4vLyBMb2FkIHRoZSBjbGkgdmlhIGl0cyBwYWNrYWdlIG5hbWUgKG5vdCBhIHJlbGF0aXZlIHJlcXVpcmUpIHNvIHRoaXMgYmluIGFuZCB0aGUgY29uc3VtZXInc1xuLy8gQXBwTW9kdWxlIGJvdGggcmVzb2x2ZSB0byB0aGUgc2FtZSBwaHlzaWNhbCBjb3B5IG9mIGV2ZXJ5IEBwcmlzdGluZS10cy9jbGkgY2xhc3MuIElmIHdlXG4vLyBsb2FkZWQgdmlhIGAuL2NsaS5qc2AgYW5kIHRoZSBjb25zdW1lcidzIGFwcC5tb2R1bGUuanMgbG9hZGVkIHZpYSBgQHByaXN0aW5lLXRzL2NsaWAsIHRoZVxuLy8gdHdvIGhhbHZlcyB3b3VsZCBlYWNoIGdldCB0aGVpciBvd24gY2xhc3MgaWRlbnRpdGllcyBhbmQgdHN5cmluZ2UncyBkZWNvcmF0b3IgbWV0YWRhdGFcbi8vIChrZXllZCBieSBjbGFzcyBpZGVudGl0eSkgd291bGQgbm90IGJlIHNoYXJlZCBcdTIwMTQgbWFuaWZlc3RpbmcgYXMgXCJUeXBlSW5mbyBub3Qga25vd24gZm9yIFhcIi5cbmNvbnN0IHtDbGl9ID0gcmVxdWlyZSgnQHByaXN0aW5lLXRzL2NsaScpO1xuXG4vLyBgQ2xpLmJvb3RzdHJhcCgpYCBpcyBmdWxseSBzZWxmLWNvbnRhaW5lZDogaXQgaGFuZGxlcyBpdHMgb3duIGVycm9ycywgYnVpbGRzIHRoZSByaWdodFxuLy8gYEVudmlyb25tZW50TWFuYWdlcmAgZnJvbSB0aGUgbG9hZGVkIGBwcmlzdGluZS5jb25maWcudHNgIChvciBkZWZhdWx0cyB0byBwcm9kdWN0aW9uIHdoZW5cbi8vIHRoZSBjb25maWcgaXRzZWxmIGNvdWxkbid0IGxvYWQpLCBhbmQgcmV0dXJucyB0aGUgZXhpdCBjb2RlLiBUaGUgYmluJ3Mgb25seSBqb2IgaXMgdG9cbi8vIGV4aXQgd2l0aCB0aGF0IGNvZGUuIE5vIGBwcm9jZXNzLmVudmAgcmVhZHMsIG5vIGV4dHJhIGNhdGNoIGhhbmRsZXIgXHUyMDE0IGV2ZXJ5dGhpbmcgZmxvd3Ncbi8vIHRocm91Z2ggdGhlIGtlcm5lbCdzIGNvbmZpZ3VyYXRpb24gc3lzdGVtLlxuLy9cbi8vIGBib290c3RyYXAoKWAgaXMgZGVzaWduZWQgdG8gYmUgdG90YWwgXHUyMDE0IGV2ZXJ5IHRocm93IGZ1bm5lbHMgdGhyb3VnaCBgcmVwb3J0RmF0YWxFcnJvcmAuXG4vLyBUaGlzIGAuY2F0Y2hgIGlzIGEgbGFzdC1yZXNvcnQgc2FmZXR5IG5ldCBmb3IgdGhlIHBhdGhvbG9naWNhbCBjYXNlIHdoZXJlIHRoZSBmYWxsYmFja1xuLy8gcmVwb3J0ZXIgaXRzZWxmIHRocm93cyAoaW52YWxpZCBgcHJpc3RpbmUuZW52aXJvbm1lbnRgIHN0cmluZywgcmVwb3J0ZXIgY29uc3RydWN0b3Jcbi8vIGZhaWx1cmUsIGV0Yy4pLiBXaXRob3V0IGl0LCBzdWNoIGEgdGhyb3cgYmVjb21lcyBhbiB1bmhhbmRsZWQgcmVqZWN0aW9uIGFuZCBOb2RlIGR1bXBzXG4vLyB0aGUgcmF3IHN0YWNrIHRvIHN0ZGVyciwgYnlwYXNzaW5nIGFueSBzYW5pdGl6YXRpb24uXG5uZXcgQ2xpKCkuYm9vdHN0cmFwKClcbiAgLnRoZW4oKGV4aXRDb2RlOiBudW1iZXIpID0+IHByb2Nlc3MuZXhpdChleGl0Q29kZSkpXG4gIC5jYXRjaCgoZXJyb3I6IHVua25vd24pID0+IHtcbiAgICBjb25zb2xlLmVycm9yKGVycm9yKTtcbiAgICBwcm9jZXNzLmV4aXQoMSk7XG4gIH0pO1xuIl0sCiAgIm1hcHBpbmdzIjogIjs7OztBQVNBLFFBQVEsa0JBQWtCO0FBTzFCLElBQU0sRUFBQyxJQUFHLElBQUksUUFBUSxrQkFBa0I7QUFheEMsSUFBSSxJQUFHLEVBQUcsVUFBUyxFQUNoQixLQUFLLENBQUMsYUFBcUIsUUFBUSxLQUFLLFFBQVEsQ0FBQyxFQUNqRCxNQUFNLENBQUMsVUFBa0I7QUFDeEIsVUFBUSxNQUFNLEtBQUs7QUFDbkIsVUFBUSxLQUFLLENBQUM7QUFDaEIsQ0FBQzsiLAogICJuYW1lcyI6IFtdCn0K
@@ -14,5 +14,22 @@ require('reflect-metadata');
14
14
  // loaded via `./cli.js` and the consumer's app.module.js loaded via `@pristine-ts/cli`, the
15
15
  // two halves would each get their own class identities and tsyringe's decorator metadata
16
16
  // (keyed by class identity) would not be shared — manifesting as "TypeInfo not known for X".
17
- require('@pristine-ts/cli').bootstrap();
17
+ const { Cli } = require('@pristine-ts/cli');
18
+ // `Cli.bootstrap()` is fully self-contained: it handles its own errors, builds the right
19
+ // `EnvironmentManager` from the loaded `pristine.config.ts` (or defaults to production when
20
+ // the config itself couldn't load), and returns the exit code. The bin's only job is to
21
+ // exit with that code. No `process.env` reads, no extra catch handler — everything flows
22
+ // through the kernel's configuration system.
23
+ //
24
+ // `bootstrap()` is designed to be total — every throw funnels through `reportFatalError`.
25
+ // This `.catch` is a last-resort safety net for the pathological case where the fallback
26
+ // reporter itself throws (invalid `pristine.environment` string, reporter constructor
27
+ // failure, etc.). Without it, such a throw becomes an unhandled rejection and Node dumps
28
+ // the raw stack to stderr, bypassing any sanitization.
29
+ new Cli().bootstrap()
30
+ .then((exitCode) => process.exit(exitCode))
31
+ .catch((error) => {
32
+ console.error(error);
33
+ process.exit(1);
34
+ });
18
35
  //# sourceMappingURL=bin.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bin.js","sourceRoot":"","sources":["../../../src/bin.ts"],"names":[],"mappings":";;AACA,uDAAuD;AACvD,0FAA0F;AAC1F,4FAA4F;AAC5F,2FAA2F;AAC3F,sFAAsF;AACtF,EAAE;AACF,2FAA2F;AAC3F,4FAA4F;AAC5F,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAE5B,4FAA4F;AAC5F,0FAA0F;AAC1F,4FAA4F;AAC5F,yFAAyF;AACzF,6FAA6F;AAC7F,OAAO,CAAC,kBAAkB,CAAC,CAAC,SAAS,EAAE,CAAC"}
1
+ {"version":3,"file":"bin.js","sourceRoot":"","sources":["../../../src/bin.ts"],"names":[],"mappings":";;AACA,uDAAuD;AACvD,0FAA0F;AAC1F,4FAA4F;AAC5F,2FAA2F;AAC3F,sFAAsF;AACtF,EAAE;AACF,2FAA2F;AAC3F,4FAA4F;AAC5F,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAE5B,4FAA4F;AAC5F,0FAA0F;AAC1F,4FAA4F;AAC5F,yFAAyF;AACzF,6FAA6F;AAC7F,MAAM,EAAC,GAAG,EAAC,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAE1C,yFAAyF;AACzF,4FAA4F;AAC5F,wFAAwF;AACxF,yFAAyF;AACzF,6CAA6C;AAC7C,EAAE;AACF,0FAA0F;AAC1F,yFAAyF;AACzF,sFAAsF;AACtF,yFAAyF;AACzF,uDAAuD;AACvD,IAAI,GAAG,EAAE,CAAC,SAAS,EAAE;KAClB,IAAI,CAAC,CAAC,QAAgB,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KAClD,KAAK,CAAC,CAAC,KAAc,EAAE,EAAE;IACxB,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
@@ -26,7 +26,6 @@ const tsyringe_1 = require("tsyringe");
26
26
  const fs_1 = __importDefault(require("fs"));
27
27
  const path_1 = __importDefault(require("path"));
28
28
  const url_1 = require("url");
29
- const logging_1 = require("@pristine-ts/logging");
30
29
  const file_1 = require("@pristine-ts/file");
31
30
  const cli_module_1 = require("../cli.module");
32
31
  const config_loader_1 = require("../config/config-loader");
@@ -40,17 +39,21 @@ const loaded_app_module_1 = require("./loaded-app-module");
40
39
  const plugin_loader_1 = require("./plugin-loader");
41
40
  /**
42
41
  * Resolves the consumer's AppModule. The contract is intentionally narrow: there is
43
- * exactly one supported way to specify the module — `appModule.sourcePath` +
44
- * `appModule.outputPath` in `pristine.config.ts` (or `pristine.config.js`).
42
+ * exactly one supported way to specify the module — `cli.appModule.sourcePath` +
43
+ * `cli.appModule.outputPath` in `pristine.config.ts` (or `pristine.config.js`).
45
44
  *
46
45
  * Resolution path:
47
46
  * 1. Read `pristine.config.{ts,js}` via `ConfigLoader`.
48
- * 2. If `appModule` is configured: ensure the build is fresh (manifest check, prompt or
49
- * fail on stale), then dynamically import the configured `outputPath`.
47
+ * 2. If `cli.appModule` is configured: ensure the build is fresh (manifest check, prompt
48
+ * or fail on stale), then dynamically import the configured `outputPath`.
50
49
  * 3. If anything above is missing or broken: fall back to a `CliModule`-only synthetic
51
50
  * AppModule so built-in commands (notably `pristine init`) remain runnable. This is
52
51
  * the only escape hatch — there is no convention scan, no package.json discovery,
53
52
  * no cached prior selection.
53
+ *
54
+ * **Does not read the `config:` block.** Runtime configuration values are read directly
55
+ * by `ConfigurationManager` during kernel boot. This class is concerned only with
56
+ * module-graph assembly.
54
57
  */
55
58
  let AppModuleLoader = class AppModuleLoader {
56
59
  constructor(configLoader, pluginLoader, dynamicImporter, buildManifestReader, buildManifestChecker, buildStalenessPrompt, buildRunner) {
@@ -65,39 +68,33 @@ let AppModuleLoader = class AppModuleLoader {
65
68
  this.fallbackKeyname = "__auto_generated_app.module__";
66
69
  }
67
70
  /**
68
- * Resolves the consumer's AppModule and the kernel configuration the CLI should boot
69
- * with. The flow has five stages, executed in order:
71
+ * Resolves the consumer's AppModule for the CLI. The flow has five stages:
70
72
  *
71
73
  * 1. **Read the project's pristine.config.{ts,js}** — single source of truth for
72
74
  * where the user's AppModule lives and what plugins to wire in.
73
75
  * 2. **Check the compiled AppModule is in sync with its source** — when both
74
- * `appModule.sourcePath` and `appModule.outputPath` are configured, compare the
75
- * build manifest's recorded source hash against the current source. If they
76
- * diverge (the user edited source but didn't rebuild), prompt to rebuild in an
77
- * interactive terminal, or fail with an actionable error in CI / non-interactive
78
- * contexts.
76
+ * `cli.appModule.sourcePath` and `cli.appModule.outputPath` are configured,
77
+ * compare the build manifest's recorded source hash against the current source.
78
+ * If they diverge (the user edited source but didn't rebuild), prompt to rebuild
79
+ * in an interactive terminal, or fail with an actionable error in CI /
80
+ * non-interactive contexts.
79
81
  * 3. **Dynamically import the compiled AppModule** — load the JS file at
80
82
  * `outputPath` and pull out the configured named export (default `AppModule`).
81
83
  * 4. **Substitute a CliModule-only AppModule when nothing else worked** — when
82
- * there is no config file, no `appModule` block in the config, or the import
84
+ * there is no config file, no `cli.appModule` block in the config, or the import
83
85
  * threw, build a synthetic AppModule that imports just CliModule. This keeps the
84
86
  * bin runnable so the user can run `pristine init`, `pristine help`, etc. to
85
87
  * recover. There is no convention scan, no package.json discovery — only this
86
88
  * one escape hatch.
87
- * 5. **Wrap with config-declared plugins** — load every plugin listed in the
88
- * config's `plugins` array and merge their modules into the AppModule's import
89
- * graph via a synthetic outer module.
90
- *
91
- * Final output: a `LoadedAppModule` carrying the (possibly wrapped) AppModule, the
92
- * kernel configuration overlay, the logging-module-present flag, and the loaded
93
- * plugin list.
89
+ * 5. **Wrap with config-declared plugins** — load every plugin listed in
90
+ * `cli.plugins` and merge their modules into the AppModule's import graph via a
91
+ * synthetic outer module.
94
92
  */
95
93
  load() {
96
94
  return __awaiter(this, void 0, void 0, function* () {
97
- var _a, _b;
95
+ var _a;
98
96
  const projectRoot = process.cwd();
99
97
  let appModule;
100
- let isLoggingModulePresent = false;
101
98
  let resolvedPath;
102
99
  let appModuleExportName = this.defaultExportName;
103
100
  // ── Stage 1: read the project's pristine.config.{ts,js}. ──
@@ -105,8 +102,8 @@ let AppModuleLoader = class AppModuleLoader {
105
102
  // when no file is found, which lets the substitute-AppModule branch in Stage 4
106
103
  // take over instead of erroring out.
107
104
  const resolvedConfig = yield this.configLoader.load({ startDir: projectRoot });
108
- const appModuleConfig = resolvedConfig.config.appModule;
109
- // Honor `appModule.export` for projects whose AppModule isn't named `AppModule`.
105
+ const appModuleConfig = (_a = resolvedConfig.config.cli) === null || _a === void 0 ? void 0 : _a.appModule;
106
+ // Honor `cli.appModule.export` for projects whose AppModule isn't named `AppModule`.
110
107
  if ((appModuleConfig === null || appModuleConfig === void 0 ? void 0 : appModuleConfig.export) !== undefined) {
111
108
  appModuleExportName = appModuleConfig.export;
112
109
  }
@@ -119,19 +116,15 @@ let AppModuleLoader = class AppModuleLoader {
119
116
  if ((appModuleConfig === null || appModuleConfig === void 0 ? void 0 : appModuleConfig.sourcePath) !== undefined && (appModuleConfig === null || appModuleConfig === void 0 ? void 0 : appModuleConfig.outputPath) !== undefined) {
120
117
  const ensured = yield this.ensureFreshBuild(projectRoot, appModuleConfig.sourcePath, appModuleConfig.outputPath);
121
118
  if (ensured === false) {
122
- const fallback = yield this.buildFallbackAppModule(projectRoot);
123
- return new loaded_app_module_1.LoadedAppModule(fallback.appModule, this.buildKernelConfiguration(fallback.isLoggingModulePresent, resolvedConfig.config.kernelConfiguration), fallback.isLoggingModulePresent, []);
119
+ const fallbackAppModule = yield this.buildFallbackAppModule(projectRoot);
120
+ return new loaded_app_module_1.LoadedAppModule(fallbackAppModule, []);
124
121
  }
125
122
  resolvedPath = path_1.default.resolve(projectRoot, appModuleConfig.outputPath);
126
123
  }
127
124
  // ── Stage 3: dynamically import the AppModule (or fall through to Stage 4). ──
128
125
  if (resolvedPath !== undefined) {
129
- // Stage 3: dynamic import. The compiled output is a regular JS module; we pull
130
- // out the named export and detect LoggingModule presence so Stage 5 can decide
131
- // whether to install the CLI's default console-logger configuration overlay.
132
126
  try {
133
127
  appModule = yield this.importAppModule(resolvedPath, appModuleExportName);
134
- isLoggingModulePresent = ((_a = appModule.importModules) !== null && _a !== void 0 ? _a : []).find(m => m.keyname === logging_1.LoggingModuleKeyname) !== undefined;
135
128
  }
136
129
  catch (error) {
137
130
  // Stage 4 (the configured file is broken or missing): we don't crash — that
@@ -140,24 +133,20 @@ let AppModuleLoader = class AppModuleLoader {
140
133
  // let the user re-run after fixing the issue.
141
134
  process.stderr.write(`[pristine] Failed to load AppModule from '${resolvedPath}': ${error.message}\n` +
142
135
  `[pristine] Falling back to built-in commands only. Fix your AppModule config and re-run.\n`);
143
- const fallback = yield this.buildFallbackAppModule(projectRoot);
144
- appModule = fallback.appModule;
145
- isLoggingModulePresent = fallback.isLoggingModulePresent;
136
+ appModule = yield this.buildFallbackAppModule(projectRoot);
146
137
  }
147
138
  }
148
139
  else {
149
- // Stage 4 (no `appModule` block, or no config file at all): substitute the
140
+ // Stage 4 (no `cli.appModule` block, or no config file at all): substitute the
150
141
  // CliModule-only AppModule so the bin can still bootstrap the user's project.
151
142
  // First-run case (`pristine init` from a fresh project) lands here.
152
- const fallback = yield this.buildFallbackAppModule(projectRoot);
153
- appModule = fallback.appModule;
154
- isLoggingModulePresent = fallback.isLoggingModulePresent;
143
+ appModule = yield this.buildFallbackAppModule(projectRoot);
155
144
  }
156
145
  // ── Stage 5: wrap with config-declared plugins. ──
157
- // Plugins declared in `pristine.config.ts` contribute additional modules (e.g.
158
- // tooling-only modules the user doesn't want polluting their runtime AppModule).
159
- // A failing plugin warns but doesn't abort — the bin stays usable so the user can
160
- // fix the offending entry.
146
+ // Plugins declared in `pristine.config.ts:cli.plugins` contribute additional modules
147
+ // (e.g. tooling-only modules the user doesn't want polluting their runtime AppModule).
148
+ // A failing plugin warns but doesn't abort — the bin stays usable so the user can fix
149
+ // the offending entry.
161
150
  let plugins = [];
162
151
  try {
163
152
  plugins = yield this.pluginLoader.load(resolvedConfig.config, resolvedConfig.configFilePath, projectRoot);
@@ -167,20 +156,9 @@ let AppModuleLoader = class AppModuleLoader {
167
156
  process.stderr.write("[pristine] Continuing without plugins. Fix the plugin config and re-run.\n");
168
157
  }
169
158
  if (plugins.length > 0) {
170
- // Wrap the AppModule with a synthetic outer module that imports both the user's
171
- // module and every plugin. Re-detect logging because a plugin could have brought
172
- // it in.
173
159
  appModule = this.pluginLoader.wrap(appModule, plugins);
174
- if (isLoggingModulePresent === false) {
175
- isLoggingModulePresent = ((_b = appModule.importModules) !== null && _b !== void 0 ? _b : []).find(m => m.keyname === logging_1.LoggingModuleKeyname) !== undefined;
176
- }
177
160
  }
178
- // ── Final: assemble the kernel configuration overlay and return. ──
179
- // The CLI installs sensible defaults for LoggingModule (simple output mode,
180
- // error-level threshold) when LoggingModule is present, then layers the user's
181
- // `kernelConfiguration` on top so they can override anything they want.
182
- const configuration = this.buildKernelConfiguration(isLoggingModulePresent, resolvedConfig.config.kernelConfiguration);
183
- return new loaded_app_module_1.LoadedAppModule(appModule, configuration, isLoggingModulePresent, plugins);
161
+ return new loaded_app_module_1.LoadedAppModule(appModule, plugins);
184
162
  });
185
163
  }
186
164
  /**
@@ -252,17 +230,17 @@ let AppModuleLoader = class AppModuleLoader {
252
230
  });
253
231
  }
254
232
  /**
255
- * Builds the safety-net AppModule used when no `appModule` is configured or the configured
256
- * file fails to load. Scrapes any `node_modules/@pristine-ts/*` packages already installed
257
- * so built-in commands they contribute (e.g. `pristine list`) are still available, then
258
- * appends `CliModule` so at minimum the CLI's own commands run. This is intentionally a
259
- * one-way safety net, not a discovery tier — it only fires when nothing else worked.
233
+ * Builds the safety-net AppModule used when no `cli.appModule` is configured or the
234
+ * configured file fails to load. Scrapes any `node_modules/@pristine-ts/*` packages
235
+ * already installed so built-in commands they contribute (e.g. `pristine list`) are
236
+ * still available, then appends `CliModule` so at minimum the CLI's own commands run.
237
+ * This is intentionally a one-way safety net, not a discovery tier — it only fires
238
+ * when nothing else worked.
260
239
  */
261
240
  buildFallbackAppModule(projectRoot) {
262
241
  return __awaiter(this, void 0, void 0, function* () {
263
242
  const pristineNodeModulesPath = path_1.default.resolve(projectRoot, "node_modules", "@pristine-ts");
264
243
  const modules = [];
265
- let isLoggingModulePresent = false;
266
244
  if (fs_1.default.existsSync(pristineNodeModulesPath)) {
267
245
  const directoryManager = new file_1.DirectoryManager(new file_1.FileManager());
268
246
  const moduleFiles = yield directoryManager.list(pristineNodeModulesPath, {
@@ -275,8 +253,6 @@ let AppModuleLoader = class AppModuleLoader {
275
253
  for (const moduleFile of moduleFiles) {
276
254
  const module = yield this.dynamicImporter.import((0, url_1.pathToFileURL)(moduleFile).href);
277
255
  for (const key in module) {
278
- if (key === "LoggingModule")
279
- isLoggingModulePresent = true;
280
256
  if (key.endsWith("Module"))
281
257
  modules.push(module[key]);
282
258
  }
@@ -286,26 +262,12 @@ let AppModuleLoader = class AppModuleLoader {
286
262
  modules.push(cli_module_1.CliModule);
287
263
  }
288
264
  return {
289
- appModule: {
290
- keyname: this.fallbackKeyname,
291
- importModules: modules,
292
- importServices: [],
293
- },
294
- isLoggingModulePresent,
265
+ keyname: this.fallbackKeyname,
266
+ importModules: modules,
267
+ importServices: [],
295
268
  };
296
269
  });
297
270
  }
298
- buildKernelConfiguration(isLoggingModulePresent, userKernelConfiguration) {
299
- const configuration = {};
300
- if (isLoggingModulePresent) {
301
- configuration[logging_1.LoggingModuleKeyname + ".consoleLoggerOutputMode"] = logging_1.OutputModeEnum.Simple;
302
- configuration[logging_1.LoggingModuleKeyname + ".logSeverityLevelConfiguration"] = logging_1.SeverityEnum.Error;
303
- }
304
- if (userKernelConfiguration !== undefined) {
305
- Object.assign(configuration, userKernelConfiguration);
306
- }
307
- return configuration;
308
- }
309
271
  };
310
272
  exports.AppModuleLoader = AppModuleLoader;
311
273
  exports.AppModuleLoader = AppModuleLoader = __decorate([
@@ -1 +1 @@
1
- {"version":3,"file":"app-module-loader.js","sourceRoot":"","sources":["../../../../src/bootstrap/app-module-loader.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"app-module-loader.js","sourceRoot":"","sources":["../../../../src/bootstrap/app-module-loader.ts"],"names":[],"mappings":"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"}
@@ -2,26 +2,22 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LoadedAppModule = void 0;
4
4
  /**
5
- * The fully-resolved AppModule + ambient configuration that the CLI uses to boot the kernel.
5
+ * The fully-resolved AppModule and the plugin list that the CLI uses to boot the kernel.
6
6
  * Returned by `AppModuleLoader.load()`.
7
+ *
8
+ * **No `configuration` field.** Runtime configuration values from `pristine.config.ts:config`
9
+ * are read directly by `ConfigurationManager` during kernel boot, not pre-loaded by the
10
+ * CLI. The CLI is responsible only for module-graph assembly.
7
11
  */
8
12
  class LoadedAppModule {
9
- constructor(appModule, configuration,
13
+ constructor(appModule,
10
14
  /**
11
- * True when `LoggingModule` is in the resolved AppModule's import graph. The CLI uses
12
- * this to decide whether to layer in opinionated default logging configuration (Simple
13
- * output mode, Error severity threshold) on top of the kernel configuration.
14
- */
15
- isLoggingModulePresent,
16
- /**
17
- * Plugins loaded from `pristine.config.ts`'s `plugins` array. Empty when no plugins are
18
- * declared. Carried through so commands like `pristine info` can show what's contributing
19
- * extra modules to the runtime.
15
+ * Plugins loaded from `pristine.config.ts:cli.plugins`. Empty when no plugins are
16
+ * declared. Carried through so commands like `pristine info` can show what's
17
+ * contributing extra modules to the runtime.
20
18
  */
21
19
  plugins) {
22
20
  this.appModule = appModule;
23
- this.configuration = configuration;
24
- this.isLoggingModulePresent = isLoggingModulePresent;
25
21
  this.plugins = plugins;
26
22
  }
27
23
  }
@@ -1 +1 @@
1
- {"version":3,"file":"loaded-app-module.js","sourceRoot":"","sources":["../../../../src/bootstrap/loaded-app-module.ts"],"names":[],"mappings":";;;AAIA;;;GAGG;AACH,MAAa,eAAe;IAC1B,YACkB,SAA6B,EAC7B,aAA0D;IAC1E;;;;OAIG;IACa,sBAA+B;IAC/C;;;;OAIG;IACa,OAAuB;QAbvB,cAAS,GAAT,SAAS,CAAoB;QAC7B,kBAAa,GAAb,aAAa,CAA6C;QAM1D,2BAAsB,GAAtB,sBAAsB,CAAS;QAM/B,YAAO,GAAP,OAAO,CAAgB;IAEzC,CAAC;CACF;AAlBD,0CAkBC"}
1
+ {"version":3,"file":"loaded-app-module.js","sourceRoot":"","sources":["../../../../src/bootstrap/loaded-app-module.ts"],"names":[],"mappings":";;;AAGA;;;;;;;GAOG;AACH,MAAa,eAAe;IAC1B,YACkB,SAA6B;IAC7C;;;;OAIG;IACa,OAAuB;QANvB,cAAS,GAAT,SAAS,CAAoB;QAM7B,YAAO,GAAP,OAAO,CAAgB;IAEzC,CAAC;CACF;AAXD,0CAWC"}
@@ -29,7 +29,7 @@ const url_1 = require("url");
29
29
  const dynamic_importer_1 = require("./dynamic-importer");
30
30
  const loaded_plugin_1 = require("./loaded-plugin");
31
31
  /**
32
- * Resolves and loads every plugin declared in `config.plugins`. Plugin packages are resolved
32
+ * Resolves and loads every plugin declared in `config.cli.plugins`. Plugin packages are resolved
33
33
  * from the **consumer's project**, not from the CLI's install location — a plugin lives in
34
34
  * the consumer's `node_modules`, not in `@pristine-ts/cli/node_modules`. Without
35
35
  * `createRequire` pinned to the project location, `import("@my-org/plugin")` would walk up
@@ -45,8 +45,8 @@ let PluginLoader = class PluginLoader {
45
45
  }
46
46
  load(config, configFilePath, projectRoot) {
47
47
  return __awaiter(this, void 0, void 0, function* () {
48
- var _a;
49
- const plugins = (_a = config.plugins) !== null && _a !== void 0 ? _a : [];
48
+ var _a, _b;
49
+ const plugins = (_b = (_a = config.cli) === null || _a === void 0 ? void 0 : _a.plugins) !== null && _b !== void 0 ? _b : [];
50
50
  if (plugins.length === 0) {
51
51
  return [];
52
52
  }
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-loader.js","sourceRoot":"","sources":["../../../../src/bootstrap/plugin-loader.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"plugin-loader.js","sourceRoot":"","sources":["../../../../src/bootstrap/plugin-loader.ts"],"names":[],"mappings":"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"}