tnp-helpers 21.0.5 → 21.0.8
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.
- package/browser/fesm2022/{tnp-helpers.mjs → tnp-helpers-browser.mjs} +40 -18
- package/browser/fesm2022/tnp-helpers-browser.mjs.map +1 -0
- package/browser/package.json +1 -1
- package/browser/types/{tnp-helpers.d.ts → tnp-helpers-browser.d.ts} +6 -3
- package/lib/base/classes/base-global-command-line.d.ts +3 -0
- package/lib/base/classes/base-global-command-line.js +31 -3
- package/lib/base/classes/base-global-command-line.js.map +1 -1
- package/lib/base/tcp-udp-ports/not-assignable-port.entity.js +2 -2
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/helpers/for-browser/angular.helper.js +2 -2
- package/lib/old/base-component.js +2 -2
- package/lib/old/base-formly-component.js +2 -2
- package/lib/old/dual-component-ctrl.js +2 -2
- package/lib/utils.js +7 -1
- package/lib/utils.js.map +1 -1
- package/package.json +1 -1
- package/websql/fesm2022/{tnp-helpers.mjs → tnp-helpers-websql.mjs} +40 -18
- package/websql/fesm2022/tnp-helpers-websql.mjs.map +1 -0
- package/websql/package.json +1 -1
- package/websql/types/{tnp-helpers.d.ts → tnp-helpers-websql.d.ts} +6 -3
- package/browser/fesm2022/tnp-helpers.mjs.map +0 -1
- package/websql/fesm2022/tnp-helpers.mjs.map +0 -1
|
@@ -457,8 +457,6 @@ var UtilsTypescript;
|
|
|
457
457
|
/* */
|
|
458
458
|
/* */
|
|
459
459
|
/* */
|
|
460
|
-
/* */
|
|
461
|
-
/* */
|
|
462
460
|
return (void 0);
|
|
463
461
|
};
|
|
464
462
|
//#endregion
|
|
@@ -561,8 +559,6 @@ var UtilsTypescript;
|
|
|
561
559
|
/* */
|
|
562
560
|
/* */
|
|
563
561
|
/* */
|
|
564
|
-
/* */
|
|
565
|
-
/* */
|
|
566
562
|
return (void 0);
|
|
567
563
|
};
|
|
568
564
|
//#endregion
|
|
@@ -1410,6 +1406,12 @@ var UtilsTypescript;
|
|
|
1410
1406
|
return (void 0);
|
|
1411
1407
|
}
|
|
1412
1408
|
UtilsTypescript.wrapContentClassMembersDecoratorsWithRegion = wrapContentClassMembersDecoratorsWithRegion;
|
|
1409
|
+
const buildQualifiedRegex = (qualifiedName) => {
|
|
1410
|
+
const parts = qualifiedName.split('.');
|
|
1411
|
+
const escapedParts = parts.map(p => p.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'));
|
|
1412
|
+
const pattern = '\\b' + escapedParts.join('\\s*\\.\\s*') + '\\b';
|
|
1413
|
+
return new RegExp(pattern, 'g');
|
|
1414
|
+
};
|
|
1413
1415
|
function transformFlatImports(sourceText, mapping) {
|
|
1414
1416
|
/* */
|
|
1415
1417
|
/* */
|
|
@@ -1478,9 +1480,6 @@ var UtilsTypescript;
|
|
|
1478
1480
|
/* */
|
|
1479
1481
|
/* */
|
|
1480
1482
|
/* */
|
|
1481
|
-
/* */
|
|
1482
|
-
/* */
|
|
1483
|
-
/* */
|
|
1484
1483
|
return (void 0);
|
|
1485
1484
|
}
|
|
1486
1485
|
UtilsTypescript.transformFlatImports = transformFlatImports;
|
|
@@ -2882,12 +2881,6 @@ var UtilsFileSync;
|
|
|
2882
2881
|
/* */
|
|
2883
2882
|
/* */
|
|
2884
2883
|
/* */
|
|
2885
|
-
/* */
|
|
2886
|
-
/* */
|
|
2887
|
-
/* */
|
|
2888
|
-
/* */
|
|
2889
|
-
/* */
|
|
2890
|
-
/* */
|
|
2891
2884
|
return (void 0);
|
|
2892
2885
|
};
|
|
2893
2886
|
//#endregion
|
|
@@ -7651,7 +7644,7 @@ const PROJECT_NPM_NAME = 'tnp-helpers';
|
|
|
7651
7644
|
/**
|
|
7652
7645
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
7653
7646
|
*/
|
|
7654
|
-
const CURRENT_PACKAGE_VERSION = '21.0.
|
|
7647
|
+
const CURRENT_PACKAGE_VERSION = '21.0.8';
|
|
7655
7648
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
7656
7649
|
|
|
7657
7650
|
//#endregion
|
|
@@ -16082,6 +16075,38 @@ class BaseGlobalCommandLine extends BaseCommandLineFeature {
|
|
|
16082
16075
|
return (void 0);
|
|
16083
16076
|
}
|
|
16084
16077
|
//#endregion
|
|
16078
|
+
//#region commands / api update force
|
|
16079
|
+
async upapiforce() {
|
|
16080
|
+
/* */
|
|
16081
|
+
/* */
|
|
16082
|
+
return (void 0);
|
|
16083
|
+
}
|
|
16084
|
+
async apiupforce() {
|
|
16085
|
+
/* */
|
|
16086
|
+
/* */
|
|
16087
|
+
return (void 0);
|
|
16088
|
+
}
|
|
16089
|
+
async apiUpdateForce() {
|
|
16090
|
+
/* */
|
|
16091
|
+
/* */
|
|
16092
|
+
/* */
|
|
16093
|
+
/* */
|
|
16094
|
+
/* */
|
|
16095
|
+
/* */
|
|
16096
|
+
/* */
|
|
16097
|
+
/* */
|
|
16098
|
+
/* */
|
|
16099
|
+
/* */
|
|
16100
|
+
/* */
|
|
16101
|
+
/* */
|
|
16102
|
+
/* */
|
|
16103
|
+
/* */
|
|
16104
|
+
/* */
|
|
16105
|
+
/* */
|
|
16106
|
+
/* */
|
|
16107
|
+
return (void 0);
|
|
16108
|
+
}
|
|
16109
|
+
//#endregion
|
|
16085
16110
|
//#region commands / chore update
|
|
16086
16111
|
async cu() {
|
|
16087
16112
|
/* */
|
|
@@ -17930,9 +17955,6 @@ class BaseGlobalCommandLine extends BaseCommandLineFeature {
|
|
|
17930
17955
|
/* */
|
|
17931
17956
|
/* */
|
|
17932
17957
|
/* */
|
|
17933
|
-
/* */
|
|
17934
|
-
/* */
|
|
17935
|
-
/* */
|
|
17936
17958
|
//#endregion
|
|
17937
17959
|
//#region commands / proc info
|
|
17938
17960
|
procInfo() {
|
|
@@ -20646,4 +20668,4 @@ const Helpers = HelpersTaon.Instance;
|
|
|
20646
20668
|
*/
|
|
20647
20669
|
|
|
20648
20670
|
export { BaseCLiWorkerStartMode, BaseCLiWorkerStartParams, BaseCliMethodOptions, BaseCliWorker, BaseCliWorkerConfig, BaseCliWorkerConfigGetContextOptions, BaseCliWorkerTerminalUI, BaseCliWorkerUtils, BaseCommandLineFeature, BaseCompilerForProject, BaseDebounceCompilerForProject, BaseFeatureForProject, BaseFileFoldersOperations, BaseGit, BaseGlobalCommandLine, BaseIgnoreHideHelpers, BaseJsonFileReader, BaseLibraryBuild, BaseLinkedProjects, BaseLinter, BaseNodeModules, BaseNpmHelpers, BasePackageJson, BaseProcessManger, BaseProject, BaseProjectResolver, BaseProjectTypeArr, BaseQuickFixes, BaseReleaseProcess, BaseVscodeHelpers, CommandConfig, CommandProcess, CommandProcessState, CommitData, CoreAngularProject, CoreProject, CoreTypescriptProject, Helpers, HelpersAngular, LinkedPorjectsConfig, LinkedProject, PackageJsonDependencyObjArr, Port, PortStatusArr, PortsWorker, ProgressData, TaonBaseCliWorkerController, TaonPortsController, UtilsDocker, UtilsFileSync, UtilsHttp, UtilsJava, UtilsMd, UtilsNpm, UtilsPasswords, UtilsQuickFixes, UtilsTaonWorker, UtilsTypescript, UtilsVSCode, UtilsZip, UtilsZipBrowser, executeCommand, getBaseCliWorkerDatabaseConfig };
|
|
20649
|
-
//# sourceMappingURL=tnp-helpers.mjs.map
|
|
20671
|
+
//# sourceMappingURL=tnp-helpers-browser.mjs.map
|