tnp-core 21.0.124 → 21.0.125

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 (51) hide show
  1. package/VERIFIED-BUILD-DATA.jsonc +3 -3
  2. package/browser/fesm2022/tnp-core-browser.mjs +6 -5
  3. package/browser/fesm2022/tnp-core-browser.mjs.map +1 -1
  4. package/browser/package.json +1 -1
  5. package/browser/types/tnp-core-browser.d.ts +16 -4
  6. package/browser-prod/fesm2022/tnp-core-browser-prod.mjs +6 -5
  7. package/browser-prod/fesm2022/tnp-core-browser-prod.mjs.map +1 -1
  8. package/browser-prod/package.json +1 -1
  9. package/browser-prod/types/tnp-core-browser-prod.d.ts +17 -5
  10. package/browser-prod.split-namespaces.json +2 -0
  11. package/cli.backend.js +2 -2
  12. package/lib/build-info._auto-generated_.d.ts +1 -1
  13. package/lib/build-info._auto-generated_.js +1 -1
  14. package/lib/core-models.d.ts +4 -0
  15. package/lib/core-models.js.map +1 -1
  16. package/lib/node-chalk-mock.js +2 -2
  17. package/lib/node-path-mock.js +2 -2
  18. package/lib/package.json +1 -1
  19. package/lib/utils-exec-proc.d.ts +12 -4
  20. package/lib/utils-exec-proc.js +11 -9
  21. package/lib/utils-exec-proc.js.map +1 -1
  22. package/lib/utils-process.js +1 -1
  23. package/lib/utils-process.js.map +1 -1
  24. package/lib-prod/build-info._auto-generated_.d.ts +1 -1
  25. package/lib-prod/build-info._auto-generated_.js +1 -1
  26. package/lib-prod/core-models.d.ts +4 -0
  27. package/lib-prod/core-models.js.map +1 -1
  28. package/lib-prod/helpers.js.map +1 -1
  29. package/lib-prod/node-chalk-mock.d.ts +1 -1
  30. package/lib-prod/node-chalk-mock.js +1 -1
  31. package/lib-prod/node-path-mock.d.ts +1 -1
  32. package/lib-prod/node-path-mock.js +1 -1
  33. package/lib-prod/package.json +1 -1
  34. package/lib-prod/utils-exec-proc.d.ts +12 -4
  35. package/lib-prod/utils-exec-proc.js +11 -9
  36. package/lib-prod/utils-exec-proc.js.map +1 -1
  37. package/lib-prod/utils-files-folders.js.map +1 -1
  38. package/lib-prod/utils-process.js +1 -1
  39. package/lib-prod/utils-process.js.map +1 -1
  40. package/lib-prod/utils.js.map +1 -1
  41. package/lib-prod.split-namespaces.json +2 -0
  42. package/package.json +1 -1
  43. package/websql/fesm2022/tnp-core-websql.mjs +6 -5
  44. package/websql/fesm2022/tnp-core-websql.mjs.map +1 -1
  45. package/websql/package.json +1 -1
  46. package/websql/types/tnp-core-websql.d.ts +16 -4
  47. package/websql-prod/fesm2022/tnp-core-websql-prod.mjs +6 -5
  48. package/websql-prod/fesm2022/tnp-core-websql-prod.mjs.map +1 -1
  49. package/websql-prod/package.json +1 -1
  50. package/websql-prod/types/tnp-core-websql-prod.d.ts +17 -5
  51. package/websql-prod.split-namespaces.json +2 -0
@@ -1,5 +1,5 @@
1
1
  {
2
- "commitHash": "930791c992769b0e5483ac5591a2b410a4bfd513",
3
- "commitName": "chore: update",
4
- "commitDate": "11-04-2026 23:11:30"
2
+ "commitHash": "1dda69cd64bbfe625606115621ef2bc90ddb2517",
3
+ "commitName": "fix: allow shell in spawn exec proc",
4
+ "commitDate": "12-04-2026 10:40:16"
5
5
  }
@@ -10386,7 +10386,7 @@ var UtilsExecProc;
10386
10386
  }
10387
10387
  //#endregion
10388
10388
  //#region get output
10389
- async getOutput(shell) {
10389
+ async getOutput(options) {
10390
10390
  /* */
10391
10391
  /* */
10392
10392
  /* */
@@ -10435,8 +10435,8 @@ var UtilsExecProc;
10435
10435
  }
10436
10436
  //#endregion
10437
10437
  //#region get stdout without showing or throw
10438
- async getStdoutWithoutShowingOrThrow() {
10439
- const { stdout } = await this.getOutput();
10438
+ async getStdoutWithoutShowingOrThrow(options) {
10439
+ const { stdout } = await this.getOutput(options);
10440
10440
  return stdout;
10441
10441
  }
10442
10442
  //#endregion
@@ -10601,6 +10601,7 @@ var UtilsExecProc;
10601
10601
  /* */
10602
10602
  /* */
10603
10603
  /* */
10604
+ /* */
10604
10605
  return (void 0);
10605
10606
  }
10606
10607
  }
@@ -10641,7 +10642,7 @@ var UtilsExecProc;
10641
10642
  /**
10642
10643
  * @TODO @IN_PROGRESS
10643
10644
  */
10644
- UtilsExecProc.executeUntilEndOrThrow = async ({ command, cwd, }) => {
10645
+ UtilsExecProc.executeUntilEndOrThrow = async ({ command, cwd, shell, }) => {
10645
10646
  /* */
10646
10647
  /* */
10647
10648
  /* */
@@ -10649,7 +10650,7 @@ var UtilsExecProc;
10649
10650
  };
10650
10651
  //#endregion
10651
10652
  //#region utils exec process / get stdout without showing or throw
10652
- UtilsExecProc.getStdoutWithoutShowingOrThrow = async ({ command, cwd, }) => {
10653
+ UtilsExecProc.getStdoutWithoutShowingOrThrow = async ({ command, cwd, shell, }) => {
10653
10654
  /* */
10654
10655
  /* */
10655
10656
  /* */