@nu-art/build-and-install 0.300.8 → 0.400.1

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 (195) hide show
  1. package/build-and-install-v3.d.ts +29 -0
  2. package/build-and-install-v3.js +132 -0
  3. package/build-and-install-v3.js.map +1 -0
  4. package/build-and-install.js +18 -24
  5. package/build-and-install.js.map +1 -0
  6. package/core/consts.d.ts +7 -2
  7. package/core/consts.js +12 -9
  8. package/core/consts.js.map +1 -0
  9. package/core/exceptions/PhaseAggregatedException.d.ts +5 -0
  10. package/core/exceptions/PhaseAggregatedException.js +9 -0
  11. package/core/exceptions/PhaseAggregatedException.js.map +1 -0
  12. package/core/package/consts.d.ts +1 -1
  13. package/core/package/consts.js +7 -9
  14. package/core/package/consts.js.map +1 -0
  15. package/core/params/params.d.ts +18 -19
  16. package/core/params/params.js +142 -178
  17. package/core/params/params.js.map +1 -0
  18. package/core/types/configs/firebasejson.js +2 -2
  19. package/core/types/configs/firebasejson.js.map +1 -0
  20. package/core/types/configs/firebaserc.js +2 -2
  21. package/core/types/configs/firebaserc.js.map +1 -0
  22. package/core/types/configs/index.d.ts +3 -3
  23. package/core/types/configs/index.js +4 -19
  24. package/core/types/configs/index.js.map +1 -0
  25. package/core/types/configs/package-json.d.ts +2 -1
  26. package/core/types/configs/package-json.js +2 -2
  27. package/core/types/configs/package-json.js.map +1 -0
  28. package/core/types/core.js +2 -2
  29. package/core/types/core.js.map +1 -0
  30. package/core/types/index.d.ts +4 -4
  31. package/core/types/index.js +5 -20
  32. package/core/types/index.js.map +1 -0
  33. package/core/types/package/index.d.ts +2 -2
  34. package/core/types/package/index.js +3 -18
  35. package/core/types/package/index.js.map +1 -0
  36. package/core/types/package/package.d.ts +10 -14
  37. package/core/types/package/package.js +15 -12
  38. package/core/types/package/package.js.map +1 -0
  39. package/core/types/package/runtime-package.d.ts +2 -2
  40. package/core/types/package/runtime-package.js +2 -2
  41. package/core/types/package/runtime-package.js.map +1 -0
  42. package/core/types/project-config.d.ts +31 -2
  43. package/core/types/project-config.js +2 -2
  44. package/core/types/project-config.js.map +1 -0
  45. package/defaults/backend-proxy/proxy._ts +3 -1
  46. package/defaults/consts.d.ts +0 -7
  47. package/defaults/consts.js +10 -10
  48. package/defaults/consts.js.map +1 -0
  49. package/{v2/phase-runner → old}/PhaseRunnerDispatcher.d.ts +4 -4
  50. package/old/PhaseRunnerDispatcher.js +33 -0
  51. package/old/PhaseRunnerDispatcher.js.map +1 -0
  52. package/{v2/unit → old}/runner-dispatchers.d.ts +3 -3
  53. package/old/runner-dispatchers.js +4 -0
  54. package/old/runner-dispatchers.js.map +1 -0
  55. package/package.json +20 -15
  56. package/v3/PhaseManager.d.ts +26 -0
  57. package/v3/PhaseManager.js +144 -0
  58. package/v3/PhaseManager.js.map +1 -0
  59. package/v3/RunningStatusHandler.d.ts +16 -0
  60. package/v3/RunningStatusHandler.js +57 -0
  61. package/v3/RunningStatusHandler.js.map +1 -0
  62. package/v3/UnitsDependencyMapper/UnitsDependencyMapper.d.ts +52 -0
  63. package/v3/UnitsDependencyMapper/UnitsDependencyMapper.js +287 -0
  64. package/v3/UnitsDependencyMapper/UnitsDependencyMapper.js.map +1 -0
  65. package/v3/UnitsMapper/UnitsMapper.d.ts +21 -0
  66. package/v3/UnitsMapper/UnitsMapper.js +60 -0
  67. package/v3/UnitsMapper/UnitsMapper.js.map +1 -0
  68. package/v3/UnitsMapper/resolvers/UnitMapper_Base.d.ts +23 -0
  69. package/v3/UnitsMapper/resolvers/UnitMapper_Base.js +17 -0
  70. package/v3/UnitsMapper/resolvers/UnitMapper_Base.js.map +1 -0
  71. package/v3/UnitsMapper/resolvers/UnitMapper_FirebaseFunction.d.ts +62 -0
  72. package/v3/UnitsMapper/resolvers/UnitMapper_FirebaseFunction.js +56 -0
  73. package/v3/UnitsMapper/resolvers/UnitMapper_FirebaseFunction.js.map +1 -0
  74. package/v3/UnitsMapper/resolvers/UnitMapper_FirebaseHosting.d.ts +38 -0
  75. package/v3/UnitsMapper/resolvers/UnitMapper_FirebaseHosting.js +49 -0
  76. package/v3/UnitsMapper/resolvers/UnitMapper_FirebaseHosting.js.map +1 -0
  77. package/v3/UnitsMapper/resolvers/UnitMapper_Node.d.ts +30 -0
  78. package/v3/UnitsMapper/resolvers/UnitMapper_Node.js +59 -0
  79. package/v3/UnitsMapper/resolvers/UnitMapper_Node.js.map +1 -0
  80. package/v3/UnitsMapper/resolvers/UnitMapper_NodeLib.d.ts +25 -0
  81. package/v3/UnitsMapper/resolvers/UnitMapper_NodeLib.js +29 -0
  82. package/v3/UnitsMapper/resolvers/UnitMapper_NodeLib.js.map +1 -0
  83. package/v3/UnitsMapper/resolvers/UnitMapper_NodeProject.d.ts +24 -0
  84. package/v3/UnitsMapper/resolvers/UnitMapper_NodeProject.js +23 -0
  85. package/v3/UnitsMapper/resolvers/UnitMapper_NodeProject.js.map +1 -0
  86. package/v3/UnitsMapper/resolvers/index.d.ts +4 -0
  87. package/v3/UnitsMapper/resolvers/index.js +5 -0
  88. package/v3/UnitsMapper/resolvers/index.js.map +1 -0
  89. package/v3/UnitsMapper/types.d.ts +25 -0
  90. package/v3/UnitsMapper/types.js +2 -0
  91. package/v3/UnitsMapper/types.js.map +1 -0
  92. package/v3/core/FileSystemUtils.d.ts +34 -0
  93. package/v3/core/FileSystemUtils.js +152 -0
  94. package/v3/core/FileSystemUtils.js.map +1 -0
  95. package/v3/core/FilesCache.d.ts +7 -0
  96. package/v3/core/FilesCache.js +34 -0
  97. package/v3/core/FilesCache.js.map +1 -0
  98. package/v3/core/Unit_HelpPrinter.d.ts +16 -0
  99. package/v3/core/Unit_HelpPrinter.js +48 -0
  100. package/v3/core/Unit_HelpPrinter.js.map +1 -0
  101. package/v3/core/types.d.ts +17 -0
  102. package/v3/core/types.js +6 -0
  103. package/v3/core/types.js.map +1 -0
  104. package/v3/phase/consts.d.ts +52 -0
  105. package/v3/phase/consts.js +127 -0
  106. package/v3/phase/consts.js.map +1 -0
  107. package/v3/phase/index.d.ts +2 -0
  108. package/v3/phase/index.js +3 -0
  109. package/v3/phase/index.js.map +1 -0
  110. package/v3/phase/types.d.ts +9 -0
  111. package/v3/phase/types.js +2 -0
  112. package/v3/phase/types.js.map +1 -0
  113. package/v3/units/BaseUnit.d.ts +46 -0
  114. package/v3/units/BaseUnit.js +120 -0
  115. package/v3/units/BaseUnit.js.map +1 -0
  116. package/v3/units/ProjectUnit.d.ts +18 -0
  117. package/v3/units/ProjectUnit.js +12 -0
  118. package/v3/units/ProjectUnit.js.map +1 -0
  119. package/v3/units/Unit_NodeProject.d.ts +30 -0
  120. package/v3/units/Unit_NodeProject.js +244 -0
  121. package/v3/units/Unit_NodeProject.js.map +1 -0
  122. package/v3/units/Unit_PackageJson.d.ts +18 -0
  123. package/v3/units/Unit_PackageJson.js +51 -0
  124. package/v3/units/Unit_PackageJson.js.map +1 -0
  125. package/v3/units/Unit_TypescriptLib.d.ts +45 -0
  126. package/v3/units/Unit_TypescriptLib.js +377 -0
  127. package/v3/units/Unit_TypescriptLib.js.map +1 -0
  128. package/v3/units/firebase/Unit_FirebaseFunctionsApp.d.ts +60 -0
  129. package/v3/units/firebase/Unit_FirebaseFunctionsApp.js +281 -0
  130. package/v3/units/firebase/Unit_FirebaseFunctionsApp.js.map +1 -0
  131. package/v3/units/firebase/Unit_FirebaseHostingApp.d.ts +49 -0
  132. package/v3/units/firebase/Unit_FirebaseHostingApp.js +100 -0
  133. package/v3/units/firebase/Unit_FirebaseHostingApp.js.map +1 -0
  134. package/v3/units/index.d.ts +5 -0
  135. package/v3/units/index.js +6 -0
  136. package/v3/units/index.js.map +1 -0
  137. package/core/params/types.d.ts +0 -51
  138. package/core/params/types.js +0 -2
  139. package/tsconfig.json +0 -23
  140. package/v2/phase/consts.d.ts +0 -53
  141. package/v2/phase/consts.js +0 -151
  142. package/v2/phase/index.d.ts +0 -2
  143. package/v2/phase/index.js +0 -18
  144. package/v2/phase/types.d.ts +0 -12
  145. package/v2/phase/types.js +0 -2
  146. package/v2/phase-runner/PhaseRunner.d.ts +0 -69
  147. package/v2/phase-runner/PhaseRunner.js +0 -472
  148. package/v2/phase-runner/PhaseRunnerDispatcher.js +0 -37
  149. package/v2/phase-runner/RunnerParams.d.ts +0 -12
  150. package/v2/phase-runner/RunnerParams.js +0 -9
  151. package/v2/phase-runner/consts.d.ts +0 -7
  152. package/v2/phase-runner/consts.js +0 -9
  153. package/v2/phase-runner/kaki.d.ts +0 -0
  154. package/v2/phase-runner/kaki.js +0 -1
  155. package/v2/phase-runner/types.d.ts +0 -13
  156. package/v2/phase-runner/types.js +0 -6
  157. package/v2/project/types.d.ts +0 -8
  158. package/v2/project/types.js +0 -2
  159. package/v2/screens/BAIScreen.d.ts +0 -22
  160. package/v2/screens/BAIScreen.js +0 -82
  161. package/v2/screens/BAIScreenManager.d.ts +0 -28
  162. package/v2/screens/BAIScreenManager.js +0 -77
  163. package/v2/screens/BAIScreen_Launch.d.ts +0 -28
  164. package/v2/screens/BAIScreen_Launch.js +0 -173
  165. package/v2/screens/BAIScreen_UnitList.d.ts +0 -36
  166. package/v2/screens/BAIScreen_UnitList.js +0 -203
  167. package/v2/unit/consts.d.ts +0 -6
  168. package/v2/unit/consts.js +0 -8
  169. package/v2/unit/core/BaseUnit.d.ts +0 -39
  170. package/v2/unit/core/BaseUnit.js +0 -138
  171. package/v2/unit/core/Unit_Python.d.ts +0 -16
  172. package/v2/unit/core/Unit_Python.js +0 -26
  173. package/v2/unit/core/Unit_Typescript.d.ts +0 -49
  174. package/v2/unit/core/Unit_Typescript.js +0 -143
  175. package/v2/unit/core/Unit_TypescriptLib.d.ts +0 -48
  176. package/v2/unit/core/Unit_TypescriptLib.js +0 -226
  177. package/v2/unit/core/Unit_TypescriptProject.d.ts +0 -31
  178. package/v2/unit/core/Unit_TypescriptProject.js +0 -194
  179. package/v2/unit/core/index.d.ts +0 -5
  180. package/v2/unit/core/index.js +0 -21
  181. package/v2/unit/firebase-units/Unit_FirebaseFunctionsApp.d.ts +0 -35
  182. package/v2/unit/firebase-units/Unit_FirebaseFunctionsApp.js +0 -309
  183. package/v2/unit/firebase-units/Unit_FirebaseHostingApp.d.ts +0 -24
  184. package/v2/unit/firebase-units/Unit_FirebaseHostingApp.js +0 -138
  185. package/v2/unit/firebase-units/consts.d.ts +0 -2
  186. package/v2/unit/firebase-units/consts.js +0 -9
  187. package/v2/unit/firebase-units/index.d.ts +0 -2
  188. package/v2/unit/firebase-units/index.js +0 -18
  189. package/v2/unit/runner-dispatchers.js +0 -6
  190. package/v2/unit/thunderstorm.d.ts +0 -171
  191. package/v2/unit/thunderstorm.js +0 -199
  192. package/v2/unit/tools/tools.d.ts +0 -2
  193. package/v2/unit/tools/tools.js +0 -15
  194. package/v2/unit/types.d.ts +0 -8
  195. package/v2/unit/types.js +0 -2
@@ -1,292 +1,260 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RuntimeParams = exports.AllBaiParams = exports.BaiParam_UsePackage = exports.BaiParam_EncounterManagerListen = exports.BaiParam_EncounterManager = exports.BaiParam_CloseScreenOnExit = exports.BaiParam_AllLogs = exports.BaiParam_Publish = exports.BaiParam_QuickDeploy = exports.BaiParam_Verbose = exports.BaiParam_DebugLifecycle = exports.BaiParam_Debug = exports.BaiParam_NoGit = exports.BaiParam_DeployFrontend = exports.BaiParam_DeployBackend = exports.BaiParam_Deploy = exports.BaiParam_DebugBackend = exports.BaiParam_LaunchBackend = exports.BaiParam_LaunchFrontend = exports.BaiParam_Launch = exports.BaiParam_Test = exports.BaiParam_Watch = exports.BaiParam_Lint = exports.BaiParam_NoThunderstorm = exports.BaiParam_WithCommando = exports.BaiParam_RunWithThunderstorm = exports.BaiParam_DryRun = exports.BaiParam_NoBuild = exports.BaiParam_GenerateDocs = exports.BaiParam_Generate = exports.BaiParam_Purge = exports.BaiParam_Clean = exports.BaiParam_InstallGlobals = exports.BaiParam_InstallPackages = exports.BaiParam_Install = exports.BaiParam_Setup = exports.BaiParam_SetEnv = exports.BaiParam_continue = exports.BaiParam_PrintEnv = exports.BaiParam_CheckCyclicImports = exports.BaiParam_DependencyTree = exports.BaiParam_Help = void 0;
4
- const CLIParamsResolver_1 = require("@nu-art/commando/cli-params/CLIParamsResolver");
5
- const ts_common_1 = require("@nu-art/ts-common");
6
- //util regex function
7
- const regexTemplate = (regexp) => (0, ts_common_1.exists)(regexp) ? `.*${regexp}.*` : '.*';
8
- exports.BaiParam_Help = {
9
- keys: ['--help', '-h'],
10
- keyName: 'help',
1
+ export const BaiParam_AllUnits = {
2
+ keys: ['--all-units', '-all'],
3
+ keyName: 'allUnits',
11
4
  type: 'boolean',
12
- group: 'General',
13
- description: 'This help menu'
5
+ group: 'Build',
6
+ description: 'By default only top level and their dependencies are included, using this flag will include ALL the units'
14
7
  };
15
- exports.BaiParam_DependencyTree = {
8
+ export const BaiParam_DependencyTree = {
16
9
  keys: ['--dependency-tree', '-dt'],
17
10
  keyName: 'dependencyTree',
18
11
  type: 'boolean',
19
12
  group: 'General',
20
13
  description: 'Will print the projects packages dependencies tree into the .trash folder'
21
14
  };
22
- exports.BaiParam_CheckCyclicImports = {
15
+ export const BaiParam_CheckCyclicImports = {
23
16
  keys: ['--check-cyclic-imports', '-cci'],
24
17
  keyName: 'checkCyclicImports',
25
18
  type: 'boolean',
26
19
  group: 'General',
27
20
  description: 'will check for cyclic imports and render an svg with the import graph'
28
21
  };
29
- exports.BaiParam_PrintEnv = {
30
- keys: ['--print-env'],
31
- keyName: 'printEnv',
32
- type: 'boolean',
33
- group: 'General',
34
- description: 'Will print the current versions of the important tools'
35
- };
36
- exports.BaiParam_continue = {
22
+ export const BaiParam_continue = {
37
23
  keys: ['--continue', '-con'],
38
24
  keyName: 'continue',
39
25
  type: 'boolean',
40
26
  group: 'Build',
41
27
  description: 'Will pick up where last build process failed'
42
28
  };
43
- exports.BaiParam_SetEnv = {
29
+ export const BaiParam_SetEnv = {
44
30
  keys: ['--set-env', '-se'],
45
31
  keyName: 'environment',
46
32
  type: 'string',
47
33
  group: 'Build',
48
- defaultValue: 'local',
34
+ initialValue: 'local',
49
35
  description: 'Will set the .config-${environment}.json as the current .config.json and prepare it as base 64 for local usage \ninput required: envName(string)'
50
36
  };
51
- exports.BaiParam_Setup = {
37
+ export const BaiParam_Setup = {
52
38
  keys: ['--setup'],
53
39
  keyName: 'setup',
54
40
  type: 'boolean',
55
41
  group: 'Build',
56
42
  description: 'Setup local project for developer'
57
43
  };
58
- exports.BaiParam_Install = {
44
+ export const BaiParam_Install = {
59
45
  keys: ['--install', '-i'],
60
46
  keyName: 'install',
61
47
  type: 'boolean',
62
48
  group: 'Build',
63
- description: 'Will run \'npm install\' in all project packages \nWill perform --link'
64
- };
65
- exports.BaiParam_InstallPackages = {
66
- keys: ['--install-packages', '-ip'],
67
- keyName: 'installPackages',
68
- type: 'boolean',
69
- group: 'Build',
70
- description: 'Will run \'npm install\' in all project packages \nWill perform --link'
71
- };
72
- exports.BaiParam_InstallGlobals = {
73
- keys: ['--install-globals', '-ig'],
74
- keyName: 'installGlobals',
75
- type: 'boolean',
76
- group: 'Build',
77
- description: 'Will install all global packages'
49
+ description: 'Will run \'pnpm install\' on entire project and will install global packages'
78
50
  };
79
- exports.BaiParam_Clean = {
51
+ export const BaiParam_Clean = {
80
52
  keys: ['--clean', '-c'],
81
53
  keyName: 'clean',
82
54
  type: 'boolean',
83
55
  group: 'Clean',
84
56
  description: 'Will delete the output(dist) & test output(dist-test) folders in all project packages'
85
57
  };
86
- exports.BaiParam_Purge = {
58
+ export const BaiParam_Purge = {
87
59
  keys: ['--purge', '-p'],
88
- dependencies: [{ param: exports.BaiParam_Clean, value: true }, { param: exports.BaiParam_InstallPackages, value: true }],
60
+ dependencies: [{ param: BaiParam_Clean, value: true }, { param: BaiParam_Install, value: true }],
89
61
  keyName: 'purge',
90
62
  group: 'Clean',
91
63
  type: 'boolean',
92
64
  description: 'Will delete the node_modules folder in all project packages \nWill perform --clean --install'
93
65
  };
94
- exports.BaiParam_Generate = {
66
+ export const BaiParam_Generate = {
95
67
  keys: ['--generate', '-g'],
96
68
  keyName: 'generate',
97
69
  type: 'boolean',
98
70
  group: 'Build',
99
71
  description: 'Will generate sources in the apps if needed'
100
72
  };
101
- exports.BaiParam_GenerateDocs = {
73
+ export const BaiParam_GenerateDocs = {
102
74
  keys: ['--generate-docs', '-docs'],
103
75
  keyName: 'generateDocs',
104
76
  type: 'boolean',
105
77
  group: 'Build',
106
78
  description: 'Would generate ts-docs documentation'
107
79
  };
108
- exports.BaiParam_NoBuild = {
80
+ export const BaiParam_NoBuild = {
109
81
  keys: ['--no-build', '-nb'],
110
82
  keyName: 'noBuild',
111
83
  group: 'Build',
112
84
  type: 'boolean',
113
- description: 'Skip the build and link steps'
85
+ description: 'Skip the build and link steps',
86
+ };
87
+ export const BaiParam_Prepare = {
88
+ keys: [],
89
+ keyName: 'prepare',
90
+ group: 'Build',
91
+ type: 'boolean',
92
+ initialValue: true,
93
+ description: '-- internal param --'
114
94
  };
115
- exports.BaiParam_DryRun = {
95
+ export const BaiParam_DryRun = {
116
96
  keys: ['--dry-run', '-dry', '--dryrun'],
117
97
  keyName: 'dryRun',
118
98
  group: 'Other',
119
99
  type: 'boolean',
120
100
  description: 'Do not perform any phase impl, only log the process'
121
101
  };
122
- exports.BaiParam_RunWithThunderstorm = {
102
+ export const BaiParam_RunWithThunderstorm = {
123
103
  keys: ['--with-thunderstorm', '-th'],
124
104
  keyName: 'runWithThunderstorm',
125
105
  type: 'boolean',
126
106
  group: 'Build',
127
107
  description: 'Will link the output folder of the libraries of thunderstorm that exists under the give path \nMUST have ThunderstormHome env variable defined and point to the Thunderstorm sample project'
128
108
  };
129
- exports.BaiParam_WithCommando = {
109
+ export const BaiParam_WithCommando = {
130
110
  keys: ['--with-commando', '-wc'],
131
111
  keyName: 'withCommando',
132
112
  type: 'boolean',
133
113
  group: 'Build',
134
114
  description: 'Build with local commando from ts'
135
115
  };
136
- exports.BaiParam_NoThunderstorm = {
116
+ export const BaiParam_NoThunderstorm = {
137
117
  keys: ['--no-thunderstorm', '-nth'],
138
118
  keyName: 'noThunderstorm',
139
119
  type: 'boolean',
140
120
  group: 'Build',
141
121
  description: 'Will remove the linkage and dependency on thunderstorm sources'
142
122
  };
143
- exports.BaiParam_Lint = {
123
+ export const BaiParam_Lint = {
144
124
  keys: ['--lint'],
145
125
  keyName: 'lint',
146
126
  type: 'boolean',
147
127
  group: 'Build',
148
128
  description: 'Run lint on all the project packages'
149
129
  };
150
- exports.BaiParam_Watch = {
130
+ export const BaiParam_Watch = {
151
131
  keys: ['--watch', '-w'],
152
132
  keyName: 'watch',
153
133
  type: 'boolean',
154
134
  group: 'Build',
155
- description: 'will build and listen for changes in the libraries'
135
+ description: 'will build and listen for changes in the libraries',
136
+ dependencies: [{ param: BaiParam_NoBuild, value: true }, { param: BaiParam_Prepare, value: false }, { param: BaiParam_AllUnits, value: true }]
156
137
  };
157
- exports.BaiParam_Test = {
138
+ export const BaiParam_WatchBuildTree = {
139
+ keys: ['--watchBuildTree', '-wbt'],
140
+ keyName: 'watchBuildTree',
141
+ type: 'boolean',
142
+ group: 'Build',
143
+ description: 'Once watch triggers, will build the entire tree that depends on the libs that changed',
144
+ dependencies: [{ param: BaiParam_Watch, value: true }, { param: BaiParam_NoBuild, value: true }, { param: BaiParam_Prepare, value: false }]
145
+ };
146
+ export const BaiParam_Test = {
158
147
  keys: ['--test', '-t'],
159
148
  keyName: 'test',
160
- type: 'string',
149
+ type: 'boolean',
150
+ group: 'Test',
151
+ description: 'Run the tests in all the project packages',
152
+ };
153
+ export const TestTypes = ['pure', 'firebase', 'ui', 'mobile'];
154
+ export const BaiParam_TestType = {
155
+ keys: ['--test-type', '-tt'],
156
+ keyName: 'testType',
157
+ type: 'string[]',
158
+ isArray: true,
159
+ group: 'Test',
160
+ options: TestTypes,
161
+ description: 'Run the tests in all the project packages',
162
+ dependencies: [{ param: BaiParam_Test, value: true }],
163
+ };
164
+ export const BaiParam_TestFile = {
165
+ keys: ['--test-file', '-tf'],
166
+ keyName: 'testFiles',
167
+ type: 'string[]',
168
+ isArray: true,
169
+ group: 'Test',
170
+ description: 'Run the specified test files',
171
+ dependencies: [{ param: BaiParam_Test, value: true }],
172
+ };
173
+ export const BaiParam_TestCase = {
174
+ keys: ['--test-case', '-tc'],
175
+ keyName: 'testCases',
176
+ type: 'string[]',
177
+ isArray: true,
178
+ group: 'Test',
179
+ description: 'Run only the specified test cases',
180
+ dependencies: [{ param: BaiParam_Test, value: true }],
181
+ };
182
+ export const BaiParam_TestDebugPort = {
183
+ keys: ['--test-debug', '-td'],
184
+ keyName: 'testDebugPort',
185
+ type: 'number',
161
186
  group: 'Test',
162
- description: 'Run the tests in all the project packages\naccepts test label to run optionally. default will be empty string',
163
- process: regexTemplate,
187
+ defaultValue: 8010,
188
+ description: 'If provided will allow a debugger connection on the specified port, and will run the tests in watch mode',
189
+ dependencies: [{ param: BaiParam_Test, value: true }],
164
190
  };
165
- exports.BaiParam_Launch = {
191
+ export const BaiParam_Launch = {
166
192
  keys: ['--launch', '-l'],
167
193
  keyName: 'launch',
168
- type: 'string',
169
- group: 'Apps',
170
- process: regexTemplate,
171
- description: 'It will add the provided App to the launch list \nrequired input: path-to-app-to-launch(string)'
172
- };
173
- exports.BaiParam_LaunchFrontend = {
174
- keys: ['--launch-frontend', '-lf'],
175
- keyName: 'launchFrontend',
176
194
  type: 'boolean',
177
195
  group: 'Apps',
178
- description: 'Will add the app-frontend to the launch list'
179
- };
180
- exports.BaiParam_LaunchBackend = {
181
- keys: ['--launch-backend', '-lb'],
182
- keyName: 'launchBackend',
183
- group: 'Apps',
184
- type: 'boolean',
185
- description: 'Will add the app-backend to the launch list'
196
+ description: 'It will add the provided App to the launch list \nrequired input: path-to-app-to-launch(string)'
186
197
  };
187
- exports.BaiParam_DebugBackend = {
198
+ export const BaiParam_DebugBackend = {
188
199
  keys: ['--debug-backend', '-lbd'],
189
200
  keyName: 'debugBackend',
190
201
  type: 'boolean',
191
202
  group: 'Apps',
192
203
  description: 'Will add the app backend to the launch list - in debug mode'
193
204
  };
194
- exports.BaiParam_Deploy = {
205
+ export const BaiParam_Deploy = {
195
206
  keys: ['--deploy', '-dep'],
196
207
  keyName: 'deploy',
197
208
  type: 'string',
198
209
  group: 'Apps',
199
- process: regexTemplate,
200
210
  description: 'Will add the provided App to the deploy list or all applications'
201
211
  };
202
- exports.BaiParam_DeployBackend = {
203
- keys: ['--deploy-backend', '-db'],
204
- keyName: 'deployBackend',
205
- group: 'Apps',
206
- type: 'string',
207
- process: regexTemplate,
208
- description: 'Will add the app-backend to the deploy list'
209
- };
210
- exports.BaiParam_DeployFrontend = {
211
- keys: ['--deploy-frontend', '-df'],
212
- keyName: 'deployFrontend',
213
- type: 'string',
214
- group: 'Apps',
215
- process: regexTemplate,
216
- description: 'Will add the app frontend to the deploy list'
217
- };
218
- exports.BaiParam_NoGit = {
219
- keys: ['--no-git'],
220
- keyName: 'noGit',
221
- type: 'boolean',
222
- group: 'Other',
223
- description: '',
224
- };
225
- exports.BaiParam_Debug = {
212
+ export const BaiParam_Debug = {
226
213
  keys: ['--debug', '-d'],
227
214
  keyName: 'debug',
228
215
  group: 'Other',
229
216
  type: 'boolean',
230
217
  description: 'Will print the parameters the script is running with'
231
218
  };
232
- exports.BaiParam_DebugLifecycle = {
219
+ export const BaiParam_DebugLifecycle = {
233
220
  keys: ['--debug-lifecycle', '-dl'],
234
221
  keyName: 'debugLifecycle',
235
222
  group: 'Other',
236
223
  type: 'boolean',
237
224
  description: 'Will only print the run config and die'
238
225
  };
239
- exports.BaiParam_Verbose = {
226
+ export const BaiParam_Verbose = {
240
227
  keys: ['--verbose', '-d'],
241
228
  keyName: 'verbose',
242
229
  group: 'Other',
243
230
  type: 'boolean',
244
231
  description: 'Set log level to verbose'
245
232
  };
246
- exports.BaiParam_QuickDeploy = {
233
+ export const BaiParam_QuickDeploy = {
247
234
  keys: ['--quick-deploy', '-qd'],
248
235
  keyName: 'quickDeploy',
249
236
  type: 'boolean',
250
237
  group: 'Other',
251
238
  description: 'Will deploy both frontend & backend, without any other lifecycle action'
252
239
  };
253
- exports.BaiParam_Publish = {
240
+ export const BaiParam_Publish = {
254
241
  keys: ['--publish'],
255
242
  keyName: 'publish',
256
243
  type: 'string',
257
244
  group: 'Other',
258
- description: 'Will publish thunderstorm && promote thunderstorm version \nenum options: patch | minor | major \nDefault Param: patch',
259
- process: (part) => part !== null && part !== void 0 ? part : 'patch'
260
- };
261
- exports.BaiParam_AllLogs = {
262
- keys: ['--all-logs', '-al'],
263
- keyName: 'allLogs',
264
- type: 'boolean',
265
- group: 'UI',
266
- description: 'will disable ui and show verbose logs for bai run',
267
- };
268
- exports.BaiParam_CloseScreenOnExit = {
269
- keys: ['--close-on-exit', '-cox'],
270
- keyName: 'closeOnExit',
271
- type: 'boolean',
272
- group: 'UI',
273
- description: 'will close all the fancy screens once process is done',
274
- };
275
- exports.BaiParam_EncounterManager = {
276
- keys: ['-em', '--encounter-manager'],
277
- keyName: 'encounterManager',
278
- type: 'boolean',
279
- group: 'Other',
280
- description: 'Will install encounter manager shit',
245
+ options: ['patch', 'minor', 'major'],
246
+ defaultValue: 'patch',
247
+ description: 'Will publish to NPM any package that is not marked as private in its __package.json \nenum options: patch | minor | major \nDefault Param: patch',
248
+ process: (part) => part ?? 'patch'
281
249
  };
282
- exports.BaiParam_EncounterManagerListen = {
283
- keys: ['-eml', '--encounter-manager-listen'],
284
- keyName: 'encounterManagerListen',
250
+ export const BaiParam_PublishDryRun = {
251
+ keys: ['--publish-dry-run'],
252
+ keyName: 'publishDryRun',
285
253
  type: 'boolean',
286
254
  group: 'Other',
287
- description: 'Will install encounter manager shit and launch after advisor and km',
255
+ description: 'Will pack and prepare a package for publish, but will NOT publish to NPM any package',
288
256
  };
289
- exports.BaiParam_UsePackage = {
257
+ export const BaiParam_UsePackage = {
290
258
  keys: ['-up', '--use-packages'],
291
259
  keyName: 'usePackage',
292
260
  type: 'string[]',
@@ -296,47 +264,43 @@ exports.BaiParam_UsePackage = {
296
264
  if (!value)
297
265
  return [];
298
266
  return value.split(',').map(str => str.trim());
299
- }
300
- };
301
- exports.AllBaiParams = [
302
- exports.BaiParam_Help,
303
- exports.BaiParam_DependencyTree,
304
- exports.BaiParam_CheckCyclicImports,
305
- exports.BaiParam_PrintEnv,
306
- exports.BaiParam_Purge,
307
- exports.BaiParam_Clean,
308
- exports.BaiParam_continue,
309
- exports.BaiParam_SetEnv,
310
- exports.BaiParam_Setup,
311
- exports.BaiParam_Install,
312
- exports.BaiParam_InstallPackages,
313
- exports.BaiParam_InstallGlobals,
314
- exports.BaiParam_Generate, // TODO: to implement
315
- exports.BaiParam_GenerateDocs, // TODO: to implement
316
- exports.BaiParam_NoBuild,
317
- exports.BaiParam_DryRun,
318
- exports.BaiParam_RunWithThunderstorm,
319
- exports.BaiParam_WithCommando,
320
- exports.BaiParam_NoThunderstorm,
321
- exports.BaiParam_Lint,
322
- exports.BaiParam_Watch,
323
- exports.BaiParam_Test, // TODO: to implement
324
- exports.BaiParam_Launch,
325
- exports.BaiParam_LaunchFrontend, // TODO: to implement
326
- exports.BaiParam_LaunchBackend, // TODO: to implement
327
- exports.BaiParam_DebugBackend,
328
- exports.BaiParam_Deploy,
329
- exports.BaiParam_DeployBackend,
330
- exports.BaiParam_DeployFrontend,
331
- exports.BaiParam_NoGit, // TODO: to implement
332
- exports.BaiParam_Debug,
333
- exports.BaiParam_Verbose,
334
- exports.BaiParam_Publish, // TODO: to implement
335
- exports.BaiParam_AllLogs,
336
- exports.BaiParam_CloseScreenOnExit,
337
- exports.BaiParam_EncounterManager,
338
- exports.BaiParam_EncounterManagerListen, exports.BaiParam_UsePackage,
339
- exports.BaiParam_DebugLifecycle
267
+ },
268
+ dependencies: [{ param: BaiParam_AllUnits, value: true }]
269
+ };
270
+ export const AllBaiParams = [
271
+ BaiParam_AllUnits,
272
+ BaiParam_DependencyTree,
273
+ BaiParam_CheckCyclicImports,
274
+ BaiParam_Purge,
275
+ BaiParam_Clean,
276
+ BaiParam_continue,
277
+ BaiParam_Prepare,
278
+ BaiParam_SetEnv,
279
+ BaiParam_Setup,
280
+ BaiParam_Install,
281
+ BaiParam_Generate, // TODO: to implement
282
+ BaiParam_GenerateDocs, // TODO: to implement
283
+ BaiParam_NoBuild,
284
+ BaiParam_DryRun,
285
+ BaiParam_RunWithThunderstorm,
286
+ BaiParam_WithCommando,
287
+ BaiParam_NoThunderstorm,
288
+ BaiParam_Lint,
289
+ BaiParam_Watch,
290
+ BaiParam_WatchBuildTree,
291
+ BaiParam_Test,
292
+ BaiParam_TestType,
293
+ BaiParam_TestFile,
294
+ BaiParam_TestCase,
295
+ BaiParam_TestDebugPort,
296
+ BaiParam_Launch,
297
+ BaiParam_Deploy,
298
+ BaiParam_DebugBackend,
299
+ BaiParam_Debug,
300
+ BaiParam_Verbose,
301
+ BaiParam_PublishDryRun,
302
+ BaiParam_Publish,
303
+ BaiParam_UsePackage,
304
+ BaiParam_DebugLifecycle
340
305
  ];
341
- const params = CLIParamsResolver_1.CLIParamsResolver.create(...exports.AllBaiParams).resolveParamValue();
342
- exports.RuntimeParams = params;
306
+ //# sourceMappingURL=params.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"params.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/params/params.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
2
+ //# sourceMappingURL=firebasejson.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"firebasejson.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/types/configs/firebasejson.ts"],"names":[],"mappings":""}
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
2
+ //# sourceMappingURL=firebaserc.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"firebaserc.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/types/configs/firebaserc.ts"],"names":[],"mappings":""}
@@ -1,3 +1,3 @@
1
- export * from './firebasejson';
2
- export * from './firebaserc';
3
- export * from './package-json';
1
+ export * from './firebasejson.js';
2
+ export * from './firebaserc.js';
3
+ export * from './package-json.js';
@@ -1,19 +1,4 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./firebasejson"), exports);
18
- __exportStar(require("./firebaserc"), exports);
19
- __exportStar(require("./package-json"), exports);
1
+ export * from './firebasejson.js';
2
+ export * from './firebaserc.js';
3
+ export * from './package-json.js';
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/types/configs/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import { StringMap } from '@nu-art/ts-common';
2
- import { JSONVersion } from '../core';
2
+ import { JSONVersion } from '../core.js';
3
3
  export type PackageJson = JSONVersion & {
4
4
  'name': string;
5
5
  'description': string;
@@ -13,5 +13,6 @@ export type PackageJson = JSONVersion & {
13
13
  'types': string;
14
14
  'scripts'?: StringMap;
15
15
  'dependencies'?: StringMap;
16
+ 'devDependencies'?: StringMap;
16
17
  '_moduleAliases'?: StringMap;
17
18
  };
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
2
+ //# sourceMappingURL=package-json.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"package-json.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/types/configs/package-json.ts"],"names":[],"mappings":""}
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
2
+ //# sourceMappingURL=core.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/types/core.ts"],"names":[],"mappings":""}
@@ -1,4 +1,4 @@
1
- export * from './core';
2
- export * from './configs';
3
- export * from './package';
4
- export * from './project-config';
1
+ export * from './core.js';
2
+ export * from './configs/index.js';
3
+ export * from './package/index.js';
4
+ export * from './project-config.js';
@@ -1,20 +1,5 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./core"), exports);
18
- __exportStar(require("./configs"), exports);
19
- __exportStar(require("./package"), exports);
20
- __exportStar(require("./project-config"), exports);
1
+ export * from './core.js';
2
+ export * from './configs/index.js';
3
+ export * from './package/index.js';
4
+ export * from './project-config.js';
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/build-and-install/src/main/","sources":["core/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
@@ -1,2 +1,2 @@
1
- export * from './package';
2
- export * from './runtime-package';
1
+ export * from './package.js';
2
+ export * from './runtime-package.js';