tnp-core 21.0.142 → 21.0.144

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 (74) hide show
  1. package/VERIFIED-BUILD-DATA.jsonc +3 -3
  2. package/bin/start.js +1 -1
  3. package/browser/fesm2022/tnp-core-browser.mjs +306 -1
  4. package/browser/fesm2022/tnp-core-browser.mjs.map +1 -1
  5. package/browser/package.json +1 -1
  6. package/browser/types/tnp-core-browser.d.ts +11 -1
  7. package/browser-prod/fesm2022/tnp-core-browser-prod.mjs +302 -1
  8. package/browser-prod/fesm2022/tnp-core-browser-prod.mjs.map +1 -1
  9. package/browser-prod/package.json +1 -1
  10. package/browser-prod/types/tnp-core-browser-prod.d.ts +10 -2
  11. package/browser-prod.split-namespaces.json +10 -0
  12. package/cli.backend.js +2 -2
  13. package/lib/build-info._auto-generated_.d.ts +1 -1
  14. package/lib/build-info._auto-generated_.js +1 -1
  15. package/lib/index.d.ts +1 -0
  16. package/lib/index.js +1 -0
  17. package/lib/index.js.map +1 -1
  18. package/lib/node-chalk-mock.js +2 -2
  19. package/lib/node-path-mock.js +2 -2
  20. package/lib/package.json +1 -1
  21. package/lib/utils-stdin-stdout-logger.d.ts +7 -0
  22. package/lib/utils-stdin-stdout-logger.js +150 -0
  23. package/lib/utils-stdin-stdout-logger.js.map +1 -0
  24. package/lib/utils-terminal.d.ts +2 -0
  25. package/lib/utils-terminal.js +83 -13
  26. package/lib/utils-terminal.js.map +1 -1
  27. package/lib-esm/cli.backend.d.ts +1 -1
  28. package/lib-esm/cli.backend.js +1 -1
  29. package/lib-esm/lib/build-info._auto-generated_.d.ts +1 -1
  30. package/lib-esm/lib/build-info._auto-generated_.js +1 -1
  31. package/lib-esm/lib/index.d.ts +1 -0
  32. package/lib-esm/lib/index.js +1 -0
  33. package/lib-esm/lib/index.js.map +1 -1
  34. package/lib-esm/lib/node-chalk-mock.d.ts +1 -1
  35. package/lib-esm/lib/node-chalk-mock.js +1 -1
  36. package/lib-esm/lib/node-path-mock.d.ts +1 -1
  37. package/lib-esm/lib/node-path-mock.js +1 -1
  38. package/lib-esm/lib/utils-stdin-stdout-logger.d.ts +7 -0
  39. package/lib-esm/lib/utils-stdin-stdout-logger.js +147 -0
  40. package/lib-esm/lib/utils-stdin-stdout-logger.js.map +1 -0
  41. package/lib-esm/lib/utils-terminal.d.ts +2 -0
  42. package/lib-esm/lib/utils-terminal.js +83 -13
  43. package/lib-esm/lib/utils-terminal.js.map +1 -1
  44. package/lib-prod/build-info._auto-generated_.d.ts +1 -1
  45. package/lib-prod/build-info._auto-generated_.js +1 -1
  46. package/lib-prod/helpers.js.map +1 -1
  47. package/lib-prod/index.d.ts +1 -0
  48. package/lib-prod/index.js +1 -0
  49. package/lib-prod/index.js.map +1 -1
  50. package/lib-prod/node-chalk-mock.d.ts +1 -1
  51. package/lib-prod/node-chalk-mock.js +1 -1
  52. package/lib-prod/node-path-mock.d.ts +1 -1
  53. package/lib-prod/node-path-mock.js +1 -1
  54. package/lib-prod/package.json +1 -1
  55. package/lib-prod/start-cli.js.map +1 -1
  56. package/lib-prod/utils-files-folders.js.map +1 -1
  57. package/lib-prod/utils-process-logger.js.map +1 -1
  58. package/lib-prod/utils-stdin-stdout-logger.d.ts +5 -0
  59. package/lib-prod/utils-stdin-stdout-logger.js +145 -0
  60. package/lib-prod/utils-stdin-stdout-logger.js.map +1 -0
  61. package/lib-prod/utils-terminal.d.ts +2 -0
  62. package/lib-prod/utils-terminal.js +81 -13
  63. package/lib-prod/utils-terminal.js.map +1 -1
  64. package/lib-prod.split-namespaces.json +10 -0
  65. package/package.json +1 -1
  66. package/websql/fesm2022/tnp-core-websql.mjs +306 -1
  67. package/websql/fesm2022/tnp-core-websql.mjs.map +1 -1
  68. package/websql/package.json +1 -1
  69. package/websql/types/tnp-core-websql.d.ts +11 -1
  70. package/websql-prod/fesm2022/tnp-core-websql-prod.mjs +302 -1
  71. package/websql-prod/fesm2022/tnp-core-websql-prod.mjs.map +1 -1
  72. package/websql-prod/package.json +1 -1
  73. package/websql-prod/types/tnp-core-websql-prod.d.ts +10 -2
  74. package/websql-prod.split-namespaces.json +10 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tnp-core/browser",
3
- "version": "21.0.142",
3
+ "version": "21.0.144",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -1924,6 +1924,8 @@ declare namespace UtilsTerminal {
1924
1924
  required?: boolean;
1925
1925
  validate?: (value: string) => boolean;
1926
1926
  }) => Promise<string>;
1927
+ export function canUseInteractiveToggle(): Promise<boolean>;
1928
+ export function basicYesNo(message: string, defaultValue?: boolean): Promise<boolean>;
1927
1929
  export const confirm: (options?: {
1928
1930
  /**
1929
1931
  * default: Are you sure?
@@ -2624,6 +2626,14 @@ declare namespace UtilsI18n {
2624
2626
  }
2625
2627
  }
2626
2628
 
2629
+ declare namespace UtilsStdinStdoutLogger {
2630
+ interface RegisteredAppLogging {
2631
+ logFilePath: string;
2632
+ unregister: () => void;
2633
+ }
2634
+ const registerFor: (workerName: string, groupName: string) => RegisteredAppLogging;
2635
+ }
2636
+
2627
2637
  declare class CLI {
2628
2638
  static chalk: chalk$1.Chalk;
2629
2639
  static installEnvironment(globalDependencies?: any): void;
@@ -3166,5 +3176,5 @@ declare const config: {
3166
3176
  helpAlias: string[];
3167
3177
  };
3168
3178
 
3169
- export { $, BaselineSiteJoinprefix, CLI, CoreConfig, CoreModels, DbBinaryFormatEnum, FilePathMetaData, FilesNames, GlobalLibTypeName, GlobalStorage, GlobalTaskManager, GlobalTaskManagerClass, Helpers, LibTypeArr, LibTypeEnum, PREFIXES, PROGRESS_DATA, REGEX_REGION, TAGS, Utils, UtilsBinary, UtilsCli, UtilsCliClassMethod, UtilsDotFile, UtilsEtcHosts, UtilsExecProc, UtilsFilesFolders, UtilsFilesFoldersSync, UtilsI18n, UtilsJson, UtilsMessages, UtilsMigrations, UtilsNetwork, UtilsOs, UtilsProcess, UtilsProcessLogger, UtilsProjects, UtilsString, UtilsStringRegex, UtilsSudo, UtilsTerminal, UtilsTime, UtilsWaitNotifier, UtilsYaml, _, appRelatedFiles, areTrustedForPatchUpdate, backendNodejsOnlyFiles, backendWebsqlNodejsFiles, baseTaonDevProjectsNames, chalk, child_process, chokidar, config, crossPlatformPath, dateformat, dockerTemplates, dotTaonFolder, dotTnpFolder, encoding, extAllowedToExportAndReplaceTSJSCodeFiles, extAllowedToReplace, extForSassLikeFiles, extForStyles, extTemplatesFiles, fg, fileName, filesNotAllowedToClean, fkill, folderName, frameworkName, frameworkNameBe, frontEndOnly, frontendFiles, fse, glob, globalSpinner, http, https, isCloudflareWorker, isElevated, load, mkdirp, ncp, net, notAllowedNames, notAllowedProjectNames, notNeededForExportFiles, os, path, ps, psList, requireDefault, requiredForDev, rimraf, spawn, startAsync, taonActionFromParent, taonBasePathToGlobalDockerTemplatesFn, taonContainers, taonPackageName, taonProjects, taonRepoPathUserInUserDirFn, tempFoldersName, tnpPackageName, urlRepoTaon, urlRepoTaonContainers, win32Path };
3179
+ export { $, BaselineSiteJoinprefix, CLI, CoreConfig, CoreModels, DbBinaryFormatEnum, FilePathMetaData, FilesNames, GlobalLibTypeName, GlobalStorage, GlobalTaskManager, GlobalTaskManagerClass, Helpers, LibTypeArr, LibTypeEnum, PREFIXES, PROGRESS_DATA, REGEX_REGION, TAGS, Utils, UtilsBinary, UtilsCli, UtilsCliClassMethod, UtilsDotFile, UtilsEtcHosts, UtilsExecProc, UtilsFilesFolders, UtilsFilesFoldersSync, UtilsI18n, UtilsJson, UtilsMessages, UtilsMigrations, UtilsNetwork, UtilsOs, UtilsProcess, UtilsProcessLogger, UtilsProjects, UtilsStdinStdoutLogger, UtilsString, UtilsStringRegex, UtilsSudo, UtilsTerminal, UtilsTime, UtilsWaitNotifier, UtilsYaml, _, appRelatedFiles, areTrustedForPatchUpdate, backendNodejsOnlyFiles, backendWebsqlNodejsFiles, baseTaonDevProjectsNames, chalk, child_process, chokidar, config, crossPlatformPath, dateformat, dockerTemplates, dotTaonFolder, dotTnpFolder, encoding, extAllowedToExportAndReplaceTSJSCodeFiles, extAllowedToReplace, extForSassLikeFiles, extForStyles, extTemplatesFiles, fg, fileName, filesNotAllowedToClean, fkill, folderName, frameworkName, frameworkNameBe, frontEndOnly, frontendFiles, fse, glob, globalSpinner, http, https, isCloudflareWorker, isElevated, load, mkdirp, ncp, net, notAllowedNames, notAllowedProjectNames, notNeededForExportFiles, os, path, ps, psList, requireDefault, requiredForDev, rimraf, spawn, startAsync, taonActionFromParent, taonBasePathToGlobalDockerTemplatesFn, taonContainers, taonPackageName, taonProjects, taonRepoPathUserInUserDirFn, tempFoldersName, tnpPackageName, urlRepoTaon, urlRepoTaonContainers, win32Path };
3170
3180
  export type { CommandOutputOptions, DbBinaryFormat, DbBinaryFormatForBrowser, IPROGRESS_DATA, LibTypeNames, ProcessStartOptions, RunSyncOrAsyncOptions, TaskStats };
@@ -6552,6 +6552,61 @@ const UtilsTerminal__NS__input = async ({ defaultValue, question, required, vali
6552
6552
  return (void 0);
6553
6553
  };
6554
6554
  //#endregion
6555
+ //#region utils terminal / can use interactive toogle
6556
+ async function UtilsTerminal__NS__canUseInteractiveToggle() {
6557
+ /* */
6558
+ /* */
6559
+ /* */
6560
+ /* */
6561
+ /* */
6562
+ /* */
6563
+ /* */
6564
+ /* */
6565
+ /* */
6566
+ /* */
6567
+ /* */
6568
+ /* */
6569
+ /* */
6570
+ /* */
6571
+ /* */
6572
+ /* */
6573
+ /* */
6574
+ /* */
6575
+ /* */
6576
+ return (void 0);
6577
+ }
6578
+ //#endregion
6579
+ //#region utils terminal / basic yes no
6580
+ async function UtilsTerminal__NS__basicYesNo(message, defaultValue = false) {
6581
+ /* */
6582
+ /* */
6583
+ /* */
6584
+ /* */
6585
+ /* */
6586
+ /* */
6587
+ /* */
6588
+ /* */
6589
+ /* */
6590
+ /* */
6591
+ /* */
6592
+ /* */
6593
+ /* */
6594
+ /* */
6595
+ /* */
6596
+ /* */
6597
+ /* */
6598
+ /* */
6599
+ /* */
6600
+ /* */
6601
+ /* */
6602
+ /* */
6603
+ /* */
6604
+ /* */
6605
+ /* */
6606
+ /* */
6607
+ return (void 0);
6608
+ }
6609
+ //#endregion
6555
6610
  //#region utils terminal / confirm
6556
6611
  const UtilsTerminal__NS__confirm = async (options) => {
6557
6612
  /* */
@@ -6633,6 +6688,30 @@ const UtilsTerminal__NS__confirm = async (options) => {
6633
6688
  /* */
6634
6689
  /* */
6635
6690
  /* */
6691
+ /* */
6692
+ /* */
6693
+ /* */
6694
+ /* */
6695
+ /* */
6696
+ /* */
6697
+ /* */
6698
+ /* */
6699
+ /* */
6700
+ /* */
6701
+ /* */
6702
+ /* */
6703
+ /* */
6704
+ /* */
6705
+ /* */
6706
+ /* */
6707
+ /* */
6708
+ /* */
6709
+ /* */
6710
+ /* */
6711
+ /* */
6712
+ /* */
6713
+ /* */
6714
+ /* */
6636
6715
  return (void 0);
6637
6716
  };
6638
6717
  //#endregion
@@ -12292,6 +12371,228 @@ function UtilsI18n__NS__detectLocale() {
12292
12371
  }
12293
12372
  //end of namespace UtilsI18n
12294
12373
 
12374
+ /* */
12375
+ //#region register loggin app
12376
+ const UtilsStdinStdoutLogger__NS__registerFor = (workerName, groupName) => {
12377
+ /* */
12378
+ /* */
12379
+ /* */
12380
+ /* */
12381
+ /* */
12382
+ /* */
12383
+ /* */
12384
+ /* */
12385
+ /* */
12386
+ /* */
12387
+ /* */
12388
+ /* */
12389
+ /* */
12390
+ /* */
12391
+ /* */
12392
+ /* */
12393
+ /* */
12394
+ /* */
12395
+ /* */
12396
+ /* */
12397
+ /* */
12398
+ /* */
12399
+ /* */
12400
+ /* */
12401
+ /* */
12402
+ /* */
12403
+ /* */
12404
+ /* */
12405
+ /* */
12406
+ /* */
12407
+ /* */
12408
+ /* */
12409
+ /* */
12410
+ /* */
12411
+ /* */
12412
+ /* */
12413
+ /* */
12414
+ /* */
12415
+ /* */
12416
+ /* */
12417
+ /* */
12418
+ /* */
12419
+ /* */
12420
+ /* */
12421
+ /* */
12422
+ /* */
12423
+ /* */
12424
+ /* */
12425
+ /* */
12426
+ /* */
12427
+ /* */
12428
+ /* */
12429
+ /* */
12430
+ /* */
12431
+ /* */
12432
+ /* */
12433
+ /* */
12434
+ /* */
12435
+ /* */
12436
+ /* */
12437
+ /* */
12438
+ /* */
12439
+ /* */
12440
+ /* */
12441
+ /* */
12442
+ /* */
12443
+ /* */
12444
+ /* */
12445
+ /* */
12446
+ /* */
12447
+ /* */
12448
+ /* */
12449
+ /* */
12450
+ /* */
12451
+ /* */
12452
+ /* */
12453
+ /* */
12454
+ /* */
12455
+ /* */
12456
+ /* */
12457
+ /* */
12458
+ /* */
12459
+ /* */
12460
+ /* */
12461
+ /* */
12462
+ /* */
12463
+ /* */
12464
+ /* */
12465
+ /* */
12466
+ /* */
12467
+ /* */
12468
+ /* */
12469
+ /* */
12470
+ /* */
12471
+ /* */
12472
+ /* */
12473
+ /* */
12474
+ /* */
12475
+ /* */
12476
+ /* */
12477
+ /* */
12478
+ /* */
12479
+ /* */
12480
+ /* */
12481
+ /* */
12482
+ /* */
12483
+ /* */
12484
+ /* */
12485
+ /* */
12486
+ /* */
12487
+ /* */
12488
+ /* */
12489
+ /* */
12490
+ /* */
12491
+ /* */
12492
+ /* */
12493
+ /* */
12494
+ /* */
12495
+ /* */
12496
+ /* */
12497
+ /* */
12498
+ /* */
12499
+ /* */
12500
+ /* */
12501
+ /* */
12502
+ /* */
12503
+ /* */
12504
+ /* */
12505
+ /* */
12506
+ /* */
12507
+ /* */
12508
+ /* */
12509
+ /* */
12510
+ /* */
12511
+ /* */
12512
+ /* */
12513
+ /* */
12514
+ /* */
12515
+ /* */
12516
+ /* */
12517
+ /* */
12518
+ /* */
12519
+ /* */
12520
+ /* */
12521
+ /* */
12522
+ /* */
12523
+ /* */
12524
+ /* */
12525
+ /* */
12526
+ /* */
12527
+ /* */
12528
+ /* */
12529
+ /* */
12530
+ /* */
12531
+ /* */
12532
+ /* */
12533
+ /* */
12534
+ /* */
12535
+ /* */
12536
+ /* */
12537
+ /* */
12538
+ /* */
12539
+ /* */
12540
+ /* */
12541
+ /* */
12542
+ /* */
12543
+ /* */
12544
+ /* */
12545
+ /* */
12546
+ /* */
12547
+ /* */
12548
+ /* */
12549
+ /* */
12550
+ /* */
12551
+ return (void 0);
12552
+ };
12553
+ //#region create patched write
12554
+ const createPatchedWrite = (stream, originalWrite, appendSynchronously) => {
12555
+ /* */
12556
+ /* */
12557
+ /* */
12558
+ /* */
12559
+ /* */
12560
+ /* */
12561
+ /* */
12562
+ /* */
12563
+ /* */
12564
+ /* */
12565
+ /* */
12566
+ /* */
12567
+ /* */
12568
+ /* */
12569
+ /* */
12570
+ /* */
12571
+ /* */
12572
+ /* */
12573
+ /* */
12574
+ /* */
12575
+ /* */
12576
+ /* */
12577
+ /* */
12578
+ /* */
12579
+ /* */
12580
+ /* */
12581
+ return (void 0);
12582
+ };
12583
+ //#endregion
12584
+ //#region sanitize filename
12585
+ const sanitizeFileName = (value) => {
12586
+ const sanitized = value
12587
+ .trim()
12588
+ .replace(/[<>:"/\\|?*\u0000-\u001F]/g, '-')
12589
+ .replace(/\s+/g, '-')
12590
+ .replace(/-+/g, '-');
12591
+ return sanitized || 'unnamed-worker';
12592
+ };
12593
+ //#endregion
12594
+ //end of namespace UtilsStdinStdoutLogger
12595
+
12295
12596
  /**
12296
12597
  * TODO slowly refactor this.. only actually globally needed are:
12297
12598
  * pm2, yarn, npm-run, ts-node ???
@@ -12753,5 +13054,5 @@ var index = {};
12753
13054
  * Generated bundle index. Do not edit.
12754
13055
  */
12755
13056
 
12756
- export { $, BaselineSiteJoinprefix, CLI, CoreConfig, CoreModels__NS__BaseProjectTypeArr, CoreModels__NS__BuildTypeArr, CoreModels__NS__BuildWatcherTypeArr, CoreModels__NS__ClassNameStaticProperty, CoreModels__NS__EnvironmentName, CoreModels__NS__GitConnectionArr, CoreModels__NS__HttpMethodArr, CoreModels__NS__ImageFileExtensionArr, CoreModels__NS__InstalationTypeArr, CoreModels__NS__MediaTypeAllArr, CoreModels__NS__MimeTypesObj, CoreModels__NS__NpmSpecialVersions, CoreModels__NS__OrignalClassKey, CoreModels__NS__ReleaseVersionTypeEnum, CoreModels__NS__SPECIAL_APP_READY_MESSAGE, CoreModels__NS__SPECIAL_WORKER_READY_MESSAGE, CoreModels__NS__TaonHttpErrorCustomProp, CoreModels__NS__buildTypeToWatcherFn, CoreModels__NS__hasExitCleaningFunction, CoreModels__NS__localhostDomain, CoreModels__NS__localhostIp127, CoreModels__NS__mimeTypes, CoreModels__NS__parentLocation, CoreModels__NS__pathToChildren, CoreModels__NS__tagForTaskName, DbBinaryFormatEnum, FilePathMetaData__NS__embedData, FilePathMetaData__NS__extractData, FilePathMetaData__NS__getOnlyMetadataString, FilesNames__NS__tmpLastSelectedJsonFile, GlobalLibTypeName, GlobalStorage, GlobalTaskManager, GlobalTaskManagerClass, Helpers__NS__ActionInstance, Helpers__NS___fixCommand, Helpers__NS__actionStarted, Helpers__NS__bigMaxBuffer, Helpers__NS__checkProcess, Helpers__NS__cleanExit, Helpers__NS__clearConsole, Helpers__NS__command, Helpers__NS__commandOutputAsString, Helpers__NS__commandOutputAsStringAsync, Helpers__NS__contain, Helpers__NS__createFolder, Helpers__NS__createSymLink, Helpers__NS__error, Helpers__NS__execute, Helpers__NS__exists, Helpers__NS__filesFrom, Helpers__NS__foldersFrom, Helpers__NS__getFilesFrom, Helpers__NS__getFoldersFrom, Helpers__NS__getIsBrowser, Helpers__NS__getIsElectron, Helpers__NS__getIsNode, Helpers__NS__getIsRunningInGitBash, Helpers__NS__getIsSupportedTaonTerminal, Helpers__NS__getIsVerboseMode, Helpers__NS__getIsVerboseModeOrTnp, Helpers__NS__getIsWebSQL, Helpers__NS__getIsWsl, Helpers__NS__getStdio, Helpers__NS__hideNodeWarnings, Helpers__NS__info, Helpers__NS__isBlob, Helpers__NS__isBuffer, Helpers__NS__isClass, Helpers__NS__isExistedSymlink, Helpers__NS__isFile, Helpers__NS__isFolder, Helpers__NS__isRunningInDocker, Helpers__NS__isRunningInLinuxGraphicsCapableEnvironment, Helpers__NS__isSymlinkFileExitedOrUnexisted, Helpers__NS__isSymlinkThatMatchesUrl, Helpers__NS__isUnexistedLink, Helpers__NS__killOnPort, Helpers__NS__killProcess, Helpers__NS__killProcessByPort, Helpers__NS__linksToFolderFrom, Helpers__NS__linksToFoldersFrom, Helpers__NS__log, Helpers__NS__logError, Helpers__NS__logInfo, Helpers__NS__logProc, Helpers__NS__logSuccess, Helpers__NS__logTaskDone, Helpers__NS__logTaskStarted, Helpers__NS__logWarn, Helpers__NS__mediaTypeFromSrc, Helpers__NS__mkdirp, Helpers__NS__modifyLineByLine, Helpers__NS__msgCacheClear, Helpers__NS__openFolderInFileExplorer, Helpers__NS__parse, Helpers__NS__pathContainLink, Helpers__NS__questionYesNo, Helpers__NS__readFile, Helpers__NS__readJson, Helpers__NS__readJson5, Helpers__NS__readJsonC, Helpers__NS__relative, Helpers__NS__remove, Helpers__NS__removeEmptyLineFromString, Helpers__NS__removeFileIfExists, Helpers__NS__removeFolderIfExists, Helpers__NS__removeIfExists, Helpers__NS__removeSlashAtBegin, Helpers__NS__removeSlashAtEnd, Helpers__NS__removeSymlinks, Helpers__NS__renderError, Helpers__NS__replaceLinesInFile, Helpers__NS__run, Helpers__NS__runAsyncIn, Helpers__NS__runSyncIn, Helpers__NS__runSyncOrAsync, Helpers__NS__sleep, Helpers__NS__stopApplication, Helpers__NS__stringify, Helpers__NS__success, Helpers__NS__taskDone, Helpers__NS__taskStarted, Helpers__NS__throwError, Helpers__NS__timeout, Helpers__NS__tryCatchError, Helpers__NS__tryReadFile, Helpers__NS__tryRemoveDir, Helpers__NS__values, Helpers__NS__wait, Helpers__NS__warn, Helpers__NS__writeFile, Helpers__NS__writeJson, Helpers__NS__writeJson5, Helpers__NS__writeJsonC, LibTypeArr, LibTypeEnum, PREFIXES, PROGRESS_DATA, REGEX_REGION, TAGS, UtilsBinary__NS__arrayBufferToBlob, UtilsBinary__NS__base64toBlob, UtilsBinary__NS__base64toDbBinaryFormat, UtilsBinary__NS__blobToArrayBuffer, UtilsBinary__NS__blobToBase64, UtilsBinary__NS__blobToFile, UtilsBinary__NS__blobToJson, UtilsBinary__NS__blobToText, UtilsBinary__NS__dbBinaryFormatToBase64, UtilsBinary__NS__dbBinaryFormatToText, UtilsBinary__NS__fileToBlob, UtilsBinary__NS__fileToText, UtilsBinary__NS__getBlobFrom, UtilsBinary__NS__jsonToBlob, UtilsBinary__NS__textToBlob, UtilsBinary__NS__textToDbBinaryFormat, UtilsBinary__NS__textToFile, UtilsCliClassMethod__NS__decoratorMethod, UtilsCliClassMethod__NS__getFrom, UtilsCli__NS__getTimeFromThisCLIScriptStart, UtilsDotFile__NS__addCommentAtTheBeginningOfDotFile, UtilsDotFile__NS__getCommentsKeysAsJsonObject, UtilsDotFile__NS__getValueFromDotFile, UtilsDotFile__NS__getValuesKeysAsJsonObject, UtilsDotFile__NS__setCommentToKeyInDotFile, UtilsDotFile__NS__setValueToDotFile, UtilsDotFile__NS__setValuesKeysFromObject, UtilsEtcHosts__NS__SIMULATE_DOMAIN_TAG, UtilsEtcHosts__NS__getEntriesByDomain, UtilsEtcHosts__NS__getEntriesByIp, UtilsEtcHosts__NS__getEntryByComment, UtilsEtcHosts__NS__getLines, UtilsEtcHosts__NS__getPath, UtilsEtcHosts__NS__getTokensData, UtilsEtcHosts__NS__removeEntryByDomain, UtilsEtcHosts__NS__simulateDomain, UtilsEtcHosts__NS__specificEntryExists, UtilsExecProc__NS__executeUntilEndOrThrow, UtilsExecProc__NS__getStdoutWithoutShowingOrThrow, UtilsExecProc__NS__spawnAdminSudo, UtilsExecProc__NS__spawnAsync, UtilsFilesFoldersSync__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsFilesFoldersSync__NS__copy, UtilsFilesFoldersSync__NS__copyFile, UtilsFilesFoldersSync__NS__copyFolder, UtilsFilesFoldersSync__NS__filterDontCopy, UtilsFilesFoldersSync__NS__filterOnlyCopy, UtilsFilesFoldersSync__NS__getFilesFrom, UtilsFilesFoldersSync__NS__getFoldersFrom, UtilsFilesFoldersSync__NS__move, UtilsFilesFoldersSync__NS__readFile, UtilsFilesFoldersSync__NS__writeFile, UtilsFilesFolders__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsI18n__NS__CommonLocaleCodeEnum, UtilsI18n__NS__LangOptionArr, UtilsI18n__NS__commonLocales, UtilsI18n__NS__defaultLangLocale, UtilsI18n__NS__detectLocale, UtilsJson__NS__getAtrributiesFromJsonWithComments, UtilsJson__NS__getAttributiesFromComment, UtilsJson__NS__readJson, UtilsJson__NS__readJsonWithComments, UtilsMessages__NS__compilationWrapper, UtilsMigrations__NS__formatTimestamp, UtilsMigrations__NS__getFormattedTimestampFromClassName, UtilsMigrations__NS__getTimestampFromClassName, UtilsMigrations__NS__isValidTimestamp, UtilsNetwork__NS__checkIfServerOnline, UtilsNetwork__NS__checkIfServerPings, UtilsNetwork__NS__checkPing, UtilsNetwork__NS__etcHostHasProperLocalhostIp4Entry, UtilsNetwork__NS__etcHostHasProperLocalhostIp6Entry, UtilsNetwork__NS__getCurrentPublicIpAddress, UtilsNetwork__NS__getEtcHostEntriesByDomain, UtilsNetwork__NS__getEtcHostEntryByComment, UtilsNetwork__NS__getEtcHostEntryByIp, UtilsNetwork__NS__getEtcHostsPath, UtilsNetwork__NS__getFirstIpV4LocalActiveIpAddress, UtilsNetwork__NS__getLocalIpAddresses, UtilsNetwork__NS__isValidDomain, UtilsNetwork__NS__isValidIp, UtilsNetwork__NS__removeEtcHost, UtilsNetwork__NS__setEtcHost, UtilsNetwork__NS__simulateDomain, UtilsNetwork__NS__urlParse, UtilsOs__NS__EDITOR_PROCESSES, UtilsOs__NS__EditorArr, UtilsOs__NS__commandExistsAsync, UtilsOs__NS__commandExistsSync, UtilsOs__NS__detectEditor, UtilsOs__NS__drawHorizontalLine, UtilsOs__NS__drawVerticalLine, UtilsOs__NS__getEditorKeybindingPath, UtilsOs__NS__getEditorSettingsJsonPath, UtilsOs__NS__getInotifyWatchCount, UtilsOs__NS__getRealHomeDir, UtilsOs__NS__isBrowser, UtilsOs__NS__isDockerAvailable, UtilsOs__NS__isElectron, UtilsOs__NS__isNode, UtilsOs__NS__isNodeVersionOk, UtilsOs__NS__isPortInUse, UtilsOs__NS__isRunningInBrowser, UtilsOs__NS__isRunningInCliMode, UtilsOs__NS__isRunningInDocker, UtilsOs__NS__isRunningInElectron, UtilsOs__NS__isRunningInLinuxGraphicsCapableEnvironment, UtilsOs__NS__isRunningInMochaTest, UtilsOs__NS__isRunningInNode, UtilsOs__NS__isRunningInOsWithGraphicsCapableEnvironment, UtilsOs__NS__isRunningInSSRMode, UtilsOs__NS__isRunningInVscodeExtension, UtilsOs__NS__isRunningInWebSQL, UtilsOs__NS__isRunningInWindows, UtilsOs__NS__isRunningInWindowsCmd, UtilsOs__NS__isRunningInWindowsGitBash, UtilsOs__NS__isRunningInWindowsPowerShell, UtilsOs__NS__isRunningInWsl, UtilsOs__NS__isRunningNodeDebugger, UtilsOs__NS__isSSRMode, UtilsOs__NS__isVscodeExtension, UtilsOs__NS__isWebSQL, UtilsOs__NS__killAllEditor, UtilsOs__NS__openFolderInFileExplorer, UtilsOs__NS__pipxNestedPackageExists, UtilsOs__NS__pipxPackageExists, UtilsOs__NS__pythonModuleExists, UtilsOs__NS__safeExitProgramCleanUp, UtilsOs__NS__sendNotification, UtilsOs__NS__whichOrWherePackageLocated, UtilsProcessLogger__NS__ProcessFileLogger, UtilsProcessLogger__NS__baseDirTaonProcessLogs, UtilsProcessLogger__NS__createStickyTopBox, UtilsProcessLogger__NS__getLogsFiles, UtilsProcess__NS__getBashOrShellName, UtilsProcess__NS__getChildPidsOnce, UtilsProcess__NS__getCurrentProcessAndChildUsage, UtilsProcess__NS__getGitBashPath, UtilsProcess__NS__getPathOfExecutable, UtilsProcess__NS__getUsageForPid, UtilsProcess__NS__isNodeVersionOk, UtilsProcess__NS__killAllJava, UtilsProcess__NS__killAllOtherNodeProcesses, UtilsProcess__NS__killProcess, UtilsProcess__NS__killProcessOnPort, UtilsProcess__NS__startAsyncChildProcessCommandUntil, UtilsProcess__NS__startInNewTerminalWindow, UtilsProjects__NS__sortGroupOfProject, UtilsStringRegex__NS__containsNonAscii, UtilsString__NS__kebabCaseNoSplitNumbers, UtilsSudo__NS__getStatus, UtilsSudo__NS__isCurrentProcessElevated, UtilsSudo__NS__isInProperModeForTaon, UtilsTerminal__NS__clearConsole, UtilsTerminal__NS__confirm, UtilsTerminal__NS__drawBigText, UtilsTerminal__NS__drawHorizontalLine, UtilsTerminal__NS__drawVerticalLine, UtilsTerminal__NS__fetchAndDisplay, UtilsTerminal__NS__getTerminalHeight, UtilsTerminal__NS__input, UtilsTerminal__NS__isVerboseModeTaon, UtilsTerminal__NS__multiselect, UtilsTerminal__NS__multiselectActionAndExecute, UtilsTerminal__NS__pipeEnterToStdin, UtilsTerminal__NS__pressAnyKey, UtilsTerminal__NS__pressAnyKeyToContinueAsync, UtilsTerminal__NS__pressAnyKeyToTryAgainErrorOccurred, UtilsTerminal__NS__pressKeyAndContinueSync, UtilsTerminal__NS__previewLongList, UtilsTerminal__NS__previewLongListGitLogLike, UtilsTerminal__NS__select, UtilsTerminal__NS__selectActionAndExecute, UtilsTerminal__NS__wait, UtilsTerminal__NS__waitForUserAnyKey, UtilsTerminal__NS__waitMilliseconds, UtilsTime__NS__formatDuration, UtilsTime__NS__mesureExecutionTime, UtilsTime__NS__mesureExecutionTimeSync, UtilsTime__NS__wait, UtilsTime__NS__waitMilliseconds, UtilsWaitNotifier__NS__getNotifier, UtilsYaml__NS__jsonToYaml, UtilsYaml__NS__readYamlAsJson, UtilsYaml__NS__writeJsonToYaml, UtilsYaml__NS__yamlToJson, Utils__NS__camelize, Utils__NS__css__NS__numValue, Utils__NS__escapeStringForRegEx, Utils__NS__fullDate, Utils__NS__fullDateTime, Utils__NS__getFreePort, Utils__NS__removeChalkSpecialChars, Utils__NS__requireUncached, Utils__NS__sortKeys, Utils__NS__uniqArray, Utils__NS__wait, Utils__NS__waitMilliseconds, ___NS__add, ___NS__after, ___NS__ary, ___NS__assign, ___NS__assignIn, ___NS__assignInWith, ___NS__assignWith, ___NS__at, ___NS__attempt, ___NS__before, ___NS__bind, ___NS__bindAll, ___NS__bindKey, ___NS__camelCase, ___NS__capitalize, ___NS__castArray, ___NS__ceil, ___NS__chain, ___NS__chunk, ___NS__clamp, ___NS__clone, ___NS__cloneDeep, ___NS__cloneDeepWith, ___NS__cloneWith, ___NS__compact, ___NS__concat, ___NS__cond, ___NS__conforms, ___NS__conformsTo, ___NS__constant, ___NS__countBy, ___NS__create, ___NS__curry, ___NS__curryRight, ___NS__debounce, ___NS__deburr, ___NS__defaultTo, ___NS__defaults, ___NS__defaultsDeep, ___NS__defer, ___NS__delay, ___NS__difference, ___NS__differenceBy, ___NS__differenceWith, ___NS__divide, ___NS__drop, ___NS__dropRight, ___NS__dropRightWhile, ___NS__dropWhile, ___NS__each, ___NS__eachRight, ___NS__endsWith, ___NS__entries, ___NS__entriesIn, ___NS__eq, ___NS__escape, ___NS__escapeRegExp, ___NS__every, ___NS__extend, ___NS__extendWith, ___NS__fill, ___NS__filter, ___NS__find, ___NS__findIndex, ___NS__findKey, ___NS__findLast, ___NS__findLastIndex, ___NS__findLastKey, ___NS__first, ___NS__flatMap, ___NS__flatMapDeep, ___NS__flatMapDepth, ___NS__flatten, ___NS__flattenDeep, ___NS__flattenDepth, ___NS__flip, ___NS__floor, ___NS__flow, ___NS__flowRight, ___NS__forEach, ___NS__forEachRight, ___NS__forIn, ___NS__forInRight, ___NS__forOwn, ___NS__forOwnRight, ___NS__fromPairs, ___NS__functions, ___NS__functionsIn, ___NS__get, ___NS__groupBy, ___NS__gt, ___NS__gte, ___NS__has, ___NS__hasIn, ___NS__head, ___NS__identity, ___NS__inRange, ___NS__includes, ___NS__indexOf, ___NS__initial, ___NS__intersection, ___NS__intersectionBy, ___NS__intersectionWith, ___NS__invert, ___NS__invertBy, ___NS__invoke, ___NS__invokeMap, ___NS__isArguments, ___NS__isArray, ___NS__isArrayBuffer, ___NS__isArrayLike, ___NS__isArrayLikeObject, ___NS__isBoolean, ___NS__isBuffer, ___NS__isDate, ___NS__isElement, ___NS__isEmpty, ___NS__isEqual, ___NS__isEqualWith, ___NS__isError, ___NS__isFinite, ___NS__isFunction, ___NS__isInteger, ___NS__isLength, ___NS__isMap, ___NS__isMatch, ___NS__isMatchWith, ___NS__isNaN, ___NS__isNative, ___NS__isNil, ___NS__isNull, ___NS__isNumber, ___NS__isObject, ___NS__isObjectLike, ___NS__isPlainObject, ___NS__isRegExp, ___NS__isSafeInteger, ___NS__isSet, ___NS__isString, ___NS__isSymbol, ___NS__isTypedArray, ___NS__isUndefined, ___NS__isWeakMap, ___NS__isWeakSet, ___NS__iteratee, ___NS__join, ___NS__kebabCase, ___NS__keyBy, ___NS__keys, ___NS__keysIn, ___NS__last, ___NS__lastIndexOf, ___NS__lowerCase, ___NS__lowerFirst, ___NS__lt, ___NS__lte, ___NS__map, ___NS__mapKeys, ___NS__mapValues, ___NS__matches, ___NS__matchesProperty, ___NS__max, ___NS__maxBy, ___NS__mean, ___NS__meanBy, ___NS__memoize, ___NS__merge, ___NS__mergeWith, ___NS__method, ___NS__methodOf, ___NS__min, ___NS__minBy, ___NS__mixin, ___NS__multiply, ___NS__negate, ___NS__noop, ___NS__now, ___NS__nth, ___NS__nthArg, ___NS__omit, ___NS__omitBy, ___NS__once, ___NS__orderBy, ___NS__over, ___NS__overArgs, ___NS__overEvery, ___NS__overSome, ___NS__pad, ___NS__padEnd, ___NS__padStart, ___NS__parseInt, ___NS__partial, ___NS__partialRight, ___NS__partition, ___NS__pick, ___NS__pickBy, ___NS__property, ___NS__propertyOf, ___NS__pull, ___NS__pullAll, ___NS__pullAllBy, ___NS__pullAllWith, ___NS__pullAt, ___NS__random, ___NS__range, ___NS__rangeRight, ___NS__rearg, ___NS__reduce, ___NS__reduceRight, ___NS__reject, ___NS__remove, ___NS__repeat, ___NS__replace, ___NS__rest, ___NS__result, ___NS__reverse, ___NS__round, ___NS__sample, ___NS__sampleSize, ___NS__set, ___NS__setWith, ___NS__shuffle, ___NS__size, ___NS__slice, ___NS__snakeCase, ___NS__some, ___NS__sortBy, ___NS__sortedIndex, ___NS__sortedIndexBy, ___NS__sortedIndexOf, ___NS__sortedLastIndex, ___NS__sortedLastIndexBy, ___NS__sortedLastIndexOf, ___NS__sortedUniq, ___NS__sortedUniqBy, ___NS__split, ___NS__spread, ___NS__startCase, ___NS__startsWith, ___NS__stubArray, ___NS__stubFalse, ___NS__stubObject, ___NS__stubString, ___NS__stubTrue, ___NS__subtract, ___NS__sum, ___NS__sumBy, ___NS__tail, ___NS__take, ___NS__takeRight, ___NS__takeRightWhile, ___NS__takeWhile, ___NS__tap, ___NS__template, ___NS__templateSettings, ___NS__throttle, ___NS__thru, ___NS__times, ___NS__toArray, ___NS__toFinite, ___NS__toInteger, ___NS__toLength, ___NS__toLower, ___NS__toNumber, ___NS__toPairs, ___NS__toPairsIn, ___NS__toPath, ___NS__toPlainObject, ___NS__toSafeInteger, ___NS__toString, ___NS__toUpper, ___NS__transform, ___NS__trim, ___NS__trimEnd, ___NS__trimStart, ___NS__truncate, ___NS__unary, ___NS__unescape, ___NS__union, ___NS__unionBy, ___NS__unionWith, ___NS__uniq, ___NS__uniqBy, ___NS__uniqWith, ___NS__uniqueId, ___NS__unset, ___NS__unzip, ___NS__unzipWith, ___NS__update, ___NS__updateWith, ___NS__upperCase, ___NS__upperFirst, ___NS__values, ___NS__valuesIn, ___NS__without, ___NS__words, ___NS__wrap, ___NS__xor, ___NS__xorBy, ___NS__xorWith, ___NS__zip, ___NS__zipObject, ___NS__zipObjectDeep, ___NS__zipWith, appRelatedFiles, areTrustedForPatchUpdate, backendNodejsOnlyFiles, backendWebsqlNodejsFiles, baseTaonDevProjectsNames, chalk, child_process, chokidar, config, crossPlatformPath, dateformat, dockerTemplates, dotTaonFolder, dotTnpFolder, encoding, extAllowedToExportAndReplaceTSJSCodeFiles, extAllowedToReplace, extForSassLikeFiles, extForStyles, extTemplatesFiles, fg, fileName, filesNotAllowedToClean, fkill, folderName, frameworkName, frameworkNameBe, frontEndOnly, frontendFiles, fse, glob, globalSpinner, http, https, isCloudflareWorker, isElevated, load, mkdirp, ncp, net, notAllowedNames, notAllowedProjectNames, notNeededForExportFiles, os, path, ps, psList, requireDefault, requiredForDev, rimraf, spawn, startAsync, taonActionFromParent, taonBasePathToGlobalDockerTemplatesFn, taonContainers, taonPackageName, taonProjects, taonRepoPathUserInUserDirFn, tempFoldersName, tnpPackageName, urlRepoTaon, urlRepoTaonContainers, win32Path };
13057
+ export { $, BaselineSiteJoinprefix, CLI, CoreConfig, CoreModels__NS__BaseProjectTypeArr, CoreModels__NS__BuildTypeArr, CoreModels__NS__BuildWatcherTypeArr, CoreModels__NS__ClassNameStaticProperty, CoreModels__NS__EnvironmentName, CoreModels__NS__GitConnectionArr, CoreModels__NS__HttpMethodArr, CoreModels__NS__ImageFileExtensionArr, CoreModels__NS__InstalationTypeArr, CoreModels__NS__MediaTypeAllArr, CoreModels__NS__MimeTypesObj, CoreModels__NS__NpmSpecialVersions, CoreModels__NS__OrignalClassKey, CoreModels__NS__ReleaseVersionTypeEnum, CoreModels__NS__SPECIAL_APP_READY_MESSAGE, CoreModels__NS__SPECIAL_WORKER_READY_MESSAGE, CoreModels__NS__TaonHttpErrorCustomProp, CoreModels__NS__buildTypeToWatcherFn, CoreModels__NS__hasExitCleaningFunction, CoreModels__NS__localhostDomain, CoreModels__NS__localhostIp127, CoreModels__NS__mimeTypes, CoreModels__NS__parentLocation, CoreModels__NS__pathToChildren, CoreModels__NS__tagForTaskName, DbBinaryFormatEnum, FilePathMetaData__NS__embedData, FilePathMetaData__NS__extractData, FilePathMetaData__NS__getOnlyMetadataString, FilesNames__NS__tmpLastSelectedJsonFile, GlobalLibTypeName, GlobalStorage, GlobalTaskManager, GlobalTaskManagerClass, Helpers__NS__ActionInstance, Helpers__NS___fixCommand, Helpers__NS__actionStarted, Helpers__NS__bigMaxBuffer, Helpers__NS__checkProcess, Helpers__NS__cleanExit, Helpers__NS__clearConsole, Helpers__NS__command, Helpers__NS__commandOutputAsString, Helpers__NS__commandOutputAsStringAsync, Helpers__NS__contain, Helpers__NS__createFolder, Helpers__NS__createSymLink, Helpers__NS__error, Helpers__NS__execute, Helpers__NS__exists, Helpers__NS__filesFrom, Helpers__NS__foldersFrom, Helpers__NS__getFilesFrom, Helpers__NS__getFoldersFrom, Helpers__NS__getIsBrowser, Helpers__NS__getIsElectron, Helpers__NS__getIsNode, Helpers__NS__getIsRunningInGitBash, Helpers__NS__getIsSupportedTaonTerminal, Helpers__NS__getIsVerboseMode, Helpers__NS__getIsVerboseModeOrTnp, Helpers__NS__getIsWebSQL, Helpers__NS__getIsWsl, Helpers__NS__getStdio, Helpers__NS__hideNodeWarnings, Helpers__NS__info, Helpers__NS__isBlob, Helpers__NS__isBuffer, Helpers__NS__isClass, Helpers__NS__isExistedSymlink, Helpers__NS__isFile, Helpers__NS__isFolder, Helpers__NS__isRunningInDocker, Helpers__NS__isRunningInLinuxGraphicsCapableEnvironment, Helpers__NS__isSymlinkFileExitedOrUnexisted, Helpers__NS__isSymlinkThatMatchesUrl, Helpers__NS__isUnexistedLink, Helpers__NS__killOnPort, Helpers__NS__killProcess, Helpers__NS__killProcessByPort, Helpers__NS__linksToFolderFrom, Helpers__NS__linksToFoldersFrom, Helpers__NS__log, Helpers__NS__logError, Helpers__NS__logInfo, Helpers__NS__logProc, Helpers__NS__logSuccess, Helpers__NS__logTaskDone, Helpers__NS__logTaskStarted, Helpers__NS__logWarn, Helpers__NS__mediaTypeFromSrc, Helpers__NS__mkdirp, Helpers__NS__modifyLineByLine, Helpers__NS__msgCacheClear, Helpers__NS__openFolderInFileExplorer, Helpers__NS__parse, Helpers__NS__pathContainLink, Helpers__NS__questionYesNo, Helpers__NS__readFile, Helpers__NS__readJson, Helpers__NS__readJson5, Helpers__NS__readJsonC, Helpers__NS__relative, Helpers__NS__remove, Helpers__NS__removeEmptyLineFromString, Helpers__NS__removeFileIfExists, Helpers__NS__removeFolderIfExists, Helpers__NS__removeIfExists, Helpers__NS__removeSlashAtBegin, Helpers__NS__removeSlashAtEnd, Helpers__NS__removeSymlinks, Helpers__NS__renderError, Helpers__NS__replaceLinesInFile, Helpers__NS__run, Helpers__NS__runAsyncIn, Helpers__NS__runSyncIn, Helpers__NS__runSyncOrAsync, Helpers__NS__sleep, Helpers__NS__stopApplication, Helpers__NS__stringify, Helpers__NS__success, Helpers__NS__taskDone, Helpers__NS__taskStarted, Helpers__NS__throwError, Helpers__NS__timeout, Helpers__NS__tryCatchError, Helpers__NS__tryReadFile, Helpers__NS__tryRemoveDir, Helpers__NS__values, Helpers__NS__wait, Helpers__NS__warn, Helpers__NS__writeFile, Helpers__NS__writeJson, Helpers__NS__writeJson5, Helpers__NS__writeJsonC, LibTypeArr, LibTypeEnum, PREFIXES, PROGRESS_DATA, REGEX_REGION, TAGS, UtilsBinary__NS__arrayBufferToBlob, UtilsBinary__NS__base64toBlob, UtilsBinary__NS__base64toDbBinaryFormat, UtilsBinary__NS__blobToArrayBuffer, UtilsBinary__NS__blobToBase64, UtilsBinary__NS__blobToFile, UtilsBinary__NS__blobToJson, UtilsBinary__NS__blobToText, UtilsBinary__NS__dbBinaryFormatToBase64, UtilsBinary__NS__dbBinaryFormatToText, UtilsBinary__NS__fileToBlob, UtilsBinary__NS__fileToText, UtilsBinary__NS__getBlobFrom, UtilsBinary__NS__jsonToBlob, UtilsBinary__NS__textToBlob, UtilsBinary__NS__textToDbBinaryFormat, UtilsBinary__NS__textToFile, UtilsCliClassMethod__NS__decoratorMethod, UtilsCliClassMethod__NS__getFrom, UtilsCli__NS__getTimeFromThisCLIScriptStart, UtilsDotFile__NS__addCommentAtTheBeginningOfDotFile, UtilsDotFile__NS__getCommentsKeysAsJsonObject, UtilsDotFile__NS__getValueFromDotFile, UtilsDotFile__NS__getValuesKeysAsJsonObject, UtilsDotFile__NS__setCommentToKeyInDotFile, UtilsDotFile__NS__setValueToDotFile, UtilsDotFile__NS__setValuesKeysFromObject, UtilsEtcHosts__NS__SIMULATE_DOMAIN_TAG, UtilsEtcHosts__NS__getEntriesByDomain, UtilsEtcHosts__NS__getEntriesByIp, UtilsEtcHosts__NS__getEntryByComment, UtilsEtcHosts__NS__getLines, UtilsEtcHosts__NS__getPath, UtilsEtcHosts__NS__getTokensData, UtilsEtcHosts__NS__removeEntryByDomain, UtilsEtcHosts__NS__simulateDomain, UtilsEtcHosts__NS__specificEntryExists, UtilsExecProc__NS__executeUntilEndOrThrow, UtilsExecProc__NS__getStdoutWithoutShowingOrThrow, UtilsExecProc__NS__spawnAdminSudo, UtilsExecProc__NS__spawnAsync, UtilsFilesFoldersSync__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsFilesFoldersSync__NS__copy, UtilsFilesFoldersSync__NS__copyFile, UtilsFilesFoldersSync__NS__copyFolder, UtilsFilesFoldersSync__NS__filterDontCopy, UtilsFilesFoldersSync__NS__filterOnlyCopy, UtilsFilesFoldersSync__NS__getFilesFrom, UtilsFilesFoldersSync__NS__getFoldersFrom, UtilsFilesFoldersSync__NS__move, UtilsFilesFoldersSync__NS__readFile, UtilsFilesFoldersSync__NS__writeFile, UtilsFilesFolders__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsI18n__NS__CommonLocaleCodeEnum, UtilsI18n__NS__LangOptionArr, UtilsI18n__NS__commonLocales, UtilsI18n__NS__defaultLangLocale, UtilsI18n__NS__detectLocale, UtilsJson__NS__getAtrributiesFromJsonWithComments, UtilsJson__NS__getAttributiesFromComment, UtilsJson__NS__readJson, UtilsJson__NS__readJsonWithComments, UtilsMessages__NS__compilationWrapper, UtilsMigrations__NS__formatTimestamp, UtilsMigrations__NS__getFormattedTimestampFromClassName, UtilsMigrations__NS__getTimestampFromClassName, UtilsMigrations__NS__isValidTimestamp, UtilsNetwork__NS__checkIfServerOnline, UtilsNetwork__NS__checkIfServerPings, UtilsNetwork__NS__checkPing, UtilsNetwork__NS__etcHostHasProperLocalhostIp4Entry, UtilsNetwork__NS__etcHostHasProperLocalhostIp6Entry, UtilsNetwork__NS__getCurrentPublicIpAddress, UtilsNetwork__NS__getEtcHostEntriesByDomain, UtilsNetwork__NS__getEtcHostEntryByComment, UtilsNetwork__NS__getEtcHostEntryByIp, UtilsNetwork__NS__getEtcHostsPath, UtilsNetwork__NS__getFirstIpV4LocalActiveIpAddress, UtilsNetwork__NS__getLocalIpAddresses, UtilsNetwork__NS__isValidDomain, UtilsNetwork__NS__isValidIp, UtilsNetwork__NS__removeEtcHost, UtilsNetwork__NS__setEtcHost, UtilsNetwork__NS__simulateDomain, UtilsNetwork__NS__urlParse, UtilsOs__NS__EDITOR_PROCESSES, UtilsOs__NS__EditorArr, UtilsOs__NS__commandExistsAsync, UtilsOs__NS__commandExistsSync, UtilsOs__NS__detectEditor, UtilsOs__NS__drawHorizontalLine, UtilsOs__NS__drawVerticalLine, UtilsOs__NS__getEditorKeybindingPath, UtilsOs__NS__getEditorSettingsJsonPath, UtilsOs__NS__getInotifyWatchCount, UtilsOs__NS__getRealHomeDir, UtilsOs__NS__isBrowser, UtilsOs__NS__isDockerAvailable, UtilsOs__NS__isElectron, UtilsOs__NS__isNode, UtilsOs__NS__isNodeVersionOk, UtilsOs__NS__isPortInUse, UtilsOs__NS__isRunningInBrowser, UtilsOs__NS__isRunningInCliMode, UtilsOs__NS__isRunningInDocker, UtilsOs__NS__isRunningInElectron, UtilsOs__NS__isRunningInLinuxGraphicsCapableEnvironment, UtilsOs__NS__isRunningInMochaTest, UtilsOs__NS__isRunningInNode, UtilsOs__NS__isRunningInOsWithGraphicsCapableEnvironment, UtilsOs__NS__isRunningInSSRMode, UtilsOs__NS__isRunningInVscodeExtension, UtilsOs__NS__isRunningInWebSQL, UtilsOs__NS__isRunningInWindows, UtilsOs__NS__isRunningInWindowsCmd, UtilsOs__NS__isRunningInWindowsGitBash, UtilsOs__NS__isRunningInWindowsPowerShell, UtilsOs__NS__isRunningInWsl, UtilsOs__NS__isRunningNodeDebugger, UtilsOs__NS__isSSRMode, UtilsOs__NS__isVscodeExtension, UtilsOs__NS__isWebSQL, UtilsOs__NS__killAllEditor, UtilsOs__NS__openFolderInFileExplorer, UtilsOs__NS__pipxNestedPackageExists, UtilsOs__NS__pipxPackageExists, UtilsOs__NS__pythonModuleExists, UtilsOs__NS__safeExitProgramCleanUp, UtilsOs__NS__sendNotification, UtilsOs__NS__whichOrWherePackageLocated, UtilsProcessLogger__NS__ProcessFileLogger, UtilsProcessLogger__NS__baseDirTaonProcessLogs, UtilsProcessLogger__NS__createStickyTopBox, UtilsProcessLogger__NS__getLogsFiles, UtilsProcess__NS__getBashOrShellName, UtilsProcess__NS__getChildPidsOnce, UtilsProcess__NS__getCurrentProcessAndChildUsage, UtilsProcess__NS__getGitBashPath, UtilsProcess__NS__getPathOfExecutable, UtilsProcess__NS__getUsageForPid, UtilsProcess__NS__isNodeVersionOk, UtilsProcess__NS__killAllJava, UtilsProcess__NS__killAllOtherNodeProcesses, UtilsProcess__NS__killProcess, UtilsProcess__NS__killProcessOnPort, UtilsProcess__NS__startAsyncChildProcessCommandUntil, UtilsProcess__NS__startInNewTerminalWindow, UtilsProjects__NS__sortGroupOfProject, UtilsStdinStdoutLogger__NS__registerFor, UtilsStringRegex__NS__containsNonAscii, UtilsString__NS__kebabCaseNoSplitNumbers, UtilsSudo__NS__getStatus, UtilsSudo__NS__isCurrentProcessElevated, UtilsSudo__NS__isInProperModeForTaon, UtilsTerminal__NS__basicYesNo, UtilsTerminal__NS__canUseInteractiveToggle, UtilsTerminal__NS__clearConsole, UtilsTerminal__NS__confirm, UtilsTerminal__NS__drawBigText, UtilsTerminal__NS__drawHorizontalLine, UtilsTerminal__NS__drawVerticalLine, UtilsTerminal__NS__fetchAndDisplay, UtilsTerminal__NS__getTerminalHeight, UtilsTerminal__NS__input, UtilsTerminal__NS__isVerboseModeTaon, UtilsTerminal__NS__multiselect, UtilsTerminal__NS__multiselectActionAndExecute, UtilsTerminal__NS__pipeEnterToStdin, UtilsTerminal__NS__pressAnyKey, UtilsTerminal__NS__pressAnyKeyToContinueAsync, UtilsTerminal__NS__pressAnyKeyToTryAgainErrorOccurred, UtilsTerminal__NS__pressKeyAndContinueSync, UtilsTerminal__NS__previewLongList, UtilsTerminal__NS__previewLongListGitLogLike, UtilsTerminal__NS__select, UtilsTerminal__NS__selectActionAndExecute, UtilsTerminal__NS__wait, UtilsTerminal__NS__waitForUserAnyKey, UtilsTerminal__NS__waitMilliseconds, UtilsTime__NS__formatDuration, UtilsTime__NS__mesureExecutionTime, UtilsTime__NS__mesureExecutionTimeSync, UtilsTime__NS__wait, UtilsTime__NS__waitMilliseconds, UtilsWaitNotifier__NS__getNotifier, UtilsYaml__NS__jsonToYaml, UtilsYaml__NS__readYamlAsJson, UtilsYaml__NS__writeJsonToYaml, UtilsYaml__NS__yamlToJson, Utils__NS__camelize, Utils__NS__css__NS__numValue, Utils__NS__escapeStringForRegEx, Utils__NS__fullDate, Utils__NS__fullDateTime, Utils__NS__getFreePort, Utils__NS__removeChalkSpecialChars, Utils__NS__requireUncached, Utils__NS__sortKeys, Utils__NS__uniqArray, Utils__NS__wait, Utils__NS__waitMilliseconds, ___NS__add, ___NS__after, ___NS__ary, ___NS__assign, ___NS__assignIn, ___NS__assignInWith, ___NS__assignWith, ___NS__at, ___NS__attempt, ___NS__before, ___NS__bind, ___NS__bindAll, ___NS__bindKey, ___NS__camelCase, ___NS__capitalize, ___NS__castArray, ___NS__ceil, ___NS__chain, ___NS__chunk, ___NS__clamp, ___NS__clone, ___NS__cloneDeep, ___NS__cloneDeepWith, ___NS__cloneWith, ___NS__compact, ___NS__concat, ___NS__cond, ___NS__conforms, ___NS__conformsTo, ___NS__constant, ___NS__countBy, ___NS__create, ___NS__curry, ___NS__curryRight, ___NS__debounce, ___NS__deburr, ___NS__defaultTo, ___NS__defaults, ___NS__defaultsDeep, ___NS__defer, ___NS__delay, ___NS__difference, ___NS__differenceBy, ___NS__differenceWith, ___NS__divide, ___NS__drop, ___NS__dropRight, ___NS__dropRightWhile, ___NS__dropWhile, ___NS__each, ___NS__eachRight, ___NS__endsWith, ___NS__entries, ___NS__entriesIn, ___NS__eq, ___NS__escape, ___NS__escapeRegExp, ___NS__every, ___NS__extend, ___NS__extendWith, ___NS__fill, ___NS__filter, ___NS__find, ___NS__findIndex, ___NS__findKey, ___NS__findLast, ___NS__findLastIndex, ___NS__findLastKey, ___NS__first, ___NS__flatMap, ___NS__flatMapDeep, ___NS__flatMapDepth, ___NS__flatten, ___NS__flattenDeep, ___NS__flattenDepth, ___NS__flip, ___NS__floor, ___NS__flow, ___NS__flowRight, ___NS__forEach, ___NS__forEachRight, ___NS__forIn, ___NS__forInRight, ___NS__forOwn, ___NS__forOwnRight, ___NS__fromPairs, ___NS__functions, ___NS__functionsIn, ___NS__get, ___NS__groupBy, ___NS__gt, ___NS__gte, ___NS__has, ___NS__hasIn, ___NS__head, ___NS__identity, ___NS__inRange, ___NS__includes, ___NS__indexOf, ___NS__initial, ___NS__intersection, ___NS__intersectionBy, ___NS__intersectionWith, ___NS__invert, ___NS__invertBy, ___NS__invoke, ___NS__invokeMap, ___NS__isArguments, ___NS__isArray, ___NS__isArrayBuffer, ___NS__isArrayLike, ___NS__isArrayLikeObject, ___NS__isBoolean, ___NS__isBuffer, ___NS__isDate, ___NS__isElement, ___NS__isEmpty, ___NS__isEqual, ___NS__isEqualWith, ___NS__isError, ___NS__isFinite, ___NS__isFunction, ___NS__isInteger, ___NS__isLength, ___NS__isMap, ___NS__isMatch, ___NS__isMatchWith, ___NS__isNaN, ___NS__isNative, ___NS__isNil, ___NS__isNull, ___NS__isNumber, ___NS__isObject, ___NS__isObjectLike, ___NS__isPlainObject, ___NS__isRegExp, ___NS__isSafeInteger, ___NS__isSet, ___NS__isString, ___NS__isSymbol, ___NS__isTypedArray, ___NS__isUndefined, ___NS__isWeakMap, ___NS__isWeakSet, ___NS__iteratee, ___NS__join, ___NS__kebabCase, ___NS__keyBy, ___NS__keys, ___NS__keysIn, ___NS__last, ___NS__lastIndexOf, ___NS__lowerCase, ___NS__lowerFirst, ___NS__lt, ___NS__lte, ___NS__map, ___NS__mapKeys, ___NS__mapValues, ___NS__matches, ___NS__matchesProperty, ___NS__max, ___NS__maxBy, ___NS__mean, ___NS__meanBy, ___NS__memoize, ___NS__merge, ___NS__mergeWith, ___NS__method, ___NS__methodOf, ___NS__min, ___NS__minBy, ___NS__mixin, ___NS__multiply, ___NS__negate, ___NS__noop, ___NS__now, ___NS__nth, ___NS__nthArg, ___NS__omit, ___NS__omitBy, ___NS__once, ___NS__orderBy, ___NS__over, ___NS__overArgs, ___NS__overEvery, ___NS__overSome, ___NS__pad, ___NS__padEnd, ___NS__padStart, ___NS__parseInt, ___NS__partial, ___NS__partialRight, ___NS__partition, ___NS__pick, ___NS__pickBy, ___NS__property, ___NS__propertyOf, ___NS__pull, ___NS__pullAll, ___NS__pullAllBy, ___NS__pullAllWith, ___NS__pullAt, ___NS__random, ___NS__range, ___NS__rangeRight, ___NS__rearg, ___NS__reduce, ___NS__reduceRight, ___NS__reject, ___NS__remove, ___NS__repeat, ___NS__replace, ___NS__rest, ___NS__result, ___NS__reverse, ___NS__round, ___NS__sample, ___NS__sampleSize, ___NS__set, ___NS__setWith, ___NS__shuffle, ___NS__size, ___NS__slice, ___NS__snakeCase, ___NS__some, ___NS__sortBy, ___NS__sortedIndex, ___NS__sortedIndexBy, ___NS__sortedIndexOf, ___NS__sortedLastIndex, ___NS__sortedLastIndexBy, ___NS__sortedLastIndexOf, ___NS__sortedUniq, ___NS__sortedUniqBy, ___NS__split, ___NS__spread, ___NS__startCase, ___NS__startsWith, ___NS__stubArray, ___NS__stubFalse, ___NS__stubObject, ___NS__stubString, ___NS__stubTrue, ___NS__subtract, ___NS__sum, ___NS__sumBy, ___NS__tail, ___NS__take, ___NS__takeRight, ___NS__takeRightWhile, ___NS__takeWhile, ___NS__tap, ___NS__template, ___NS__templateSettings, ___NS__throttle, ___NS__thru, ___NS__times, ___NS__toArray, ___NS__toFinite, ___NS__toInteger, ___NS__toLength, ___NS__toLower, ___NS__toNumber, ___NS__toPairs, ___NS__toPairsIn, ___NS__toPath, ___NS__toPlainObject, ___NS__toSafeInteger, ___NS__toString, ___NS__toUpper, ___NS__transform, ___NS__trim, ___NS__trimEnd, ___NS__trimStart, ___NS__truncate, ___NS__unary, ___NS__unescape, ___NS__union, ___NS__unionBy, ___NS__unionWith, ___NS__uniq, ___NS__uniqBy, ___NS__uniqWith, ___NS__uniqueId, ___NS__unset, ___NS__unzip, ___NS__unzipWith, ___NS__update, ___NS__updateWith, ___NS__upperCase, ___NS__upperFirst, ___NS__values, ___NS__valuesIn, ___NS__without, ___NS__words, ___NS__wrap, ___NS__xor, ___NS__xorBy, ___NS__xorWith, ___NS__zip, ___NS__zipObject, ___NS__zipObjectDeep, ___NS__zipWith, appRelatedFiles, areTrustedForPatchUpdate, backendNodejsOnlyFiles, backendWebsqlNodejsFiles, baseTaonDevProjectsNames, chalk, child_process, chokidar, config, crossPlatformPath, dateformat, dockerTemplates, dotTaonFolder, dotTnpFolder, encoding, extAllowedToExportAndReplaceTSJSCodeFiles, extAllowedToReplace, extForSassLikeFiles, extForStyles, extTemplatesFiles, fg, fileName, filesNotAllowedToClean, fkill, folderName, frameworkName, frameworkNameBe, frontEndOnly, frontendFiles, fse, glob, globalSpinner, http, https, isCloudflareWorker, isElevated, load, mkdirp, ncp, net, notAllowedNames, notAllowedProjectNames, notNeededForExportFiles, os, path, ps, psList, requireDefault, requiredForDev, rimraf, spawn, startAsync, taonActionFromParent, taonBasePathToGlobalDockerTemplatesFn, taonContainers, taonPackageName, taonProjects, taonRepoPathUserInUserDirFn, tempFoldersName, tnpPackageName, urlRepoTaon, urlRepoTaonContainers, win32Path };
12757
13058
  //# sourceMappingURL=tnp-core-browser-prod.mjs.map