tnp-config 13.1.75 → 16.0.2

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 (46) hide show
  1. package/assets/shared/shared_folder_info.txt +1 -1
  2. package/{client/esm2020 → browser/esm2022}/lib/config.mjs +774 -772
  3. package/{client/esm2020 → browser/esm2022}/lib/index.mjs +3 -3
  4. package/{client/esm2020 → browser/esm2022}/public-api.mjs +1 -1
  5. package/{client/esm2020 → browser/esm2022}/tnp-config.mjs +4 -4
  6. package/{client/fesm2020 → browser/fesm2022}/tnp-config.mjs +773 -764
  7. package/browser/fesm2022/tnp-config.mjs.map +1 -0
  8. package/browser/{tnp-config.d.ts → index.d.ts} +4 -4
  9. package/browser/lib/config.d.ts +228 -227
  10. package/browser/package.json +6 -12
  11. package/client/esm2022/lib/config.mjs +774 -0
  12. package/{browser/esm2020 → client/esm2022}/lib/index.mjs +3 -3
  13. package/{browser/esm2020 → client/esm2022}/public-api.mjs +1 -1
  14. package/{browser/esm2020 → client/esm2022}/tnp-config.mjs +4 -4
  15. package/{browser/fesm2020 → client/fesm2022}/tnp-config.mjs +773 -764
  16. package/client/fesm2022/tnp-config.mjs.map +1 -0
  17. package/client/{tnp-config.d.ts → index.d.ts} +4 -4
  18. package/client/lib/config.d.ts +228 -227
  19. package/client/package.json +89 -85
  20. package/index.d.ts +1 -1
  21. package/lib/config.d.ts +440 -439
  22. package/lib/config.js +4 -2
  23. package/lib/config.js.map +1 -1
  24. package/lib/index.d.ts +1 -1
  25. package/package.json +3 -3
  26. package/package.json_tnp.json5 +2 -2
  27. package/tmp-environment.json +94 -90
  28. package/{browser/esm2020 → websql/esm2022}/lib/config.mjs +774 -772
  29. package/websql/{esm2020 → esm2022}/lib/index.mjs +3 -3
  30. package/websql/{esm2020 → esm2022}/public-api.mjs +1 -1
  31. package/websql/{esm2020 → esm2022}/tnp-config.mjs +4 -4
  32. package/websql/{fesm2020 → fesm2022}/tnp-config.mjs +773 -764
  33. package/websql/fesm2022/tnp-config.mjs.map +1 -0
  34. package/websql/{tnp-config.d.ts → index.d.ts} +4 -4
  35. package/websql/lib/config.d.ts +228 -227
  36. package/websql/package.json +6 -12
  37. package/browser/fesm2015/tnp-config.mjs +0 -701
  38. package/browser/fesm2015/tnp-config.mjs.map +0 -1
  39. package/browser/fesm2020/tnp-config.mjs.map +0 -1
  40. package/client/fesm2015/tnp-config.mjs +0 -701
  41. package/client/fesm2015/tnp-config.mjs.map +0 -1
  42. package/client/fesm2020/tnp-config.mjs.map +0 -1
  43. package/websql/esm2020/lib/config.mjs +0 -772
  44. package/websql/fesm2015/tnp-config.mjs +0 -701
  45. package/websql/fesm2015/tnp-config.mjs.map +0 -1
  46. package/websql/fesm2020/tnp-config.mjs.map +0 -1
package/lib/config.d.ts CHANGED
@@ -1,439 +1,440 @@
1
- export { CoreHelpers as Helpers } from 'tnp-core';
2
- export declare namespace ConfigModels {
3
- type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
4
- type UIFramework = 'bootstrap' | 'material' | 'ionic';
5
- type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
6
- type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
7
- type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
8
- type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
9
- type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
10
- type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
11
- type TsUsage = 'import' | 'export';
12
- type LibType = 'unknow' | 'isomorphic-lib' | 'angular-lib' | 'electron-client' | 'ionic-lib' | 'angular-client' | 'ionic-client' | 'workspace' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project' | 'scenario' | 'navi' | 'leaf' | 'game-engine-lib-pixi' | 'game-engine-lib-phaser' | 'game-engine-lib-excalibur' | 'game-engine-lib-babylon';
13
- type NewFactoryType = LibType | 'model' | 'single-file-project';
14
- type CoreLibCategory = LibType | 'common';
15
- interface Position {
16
- x: number;
17
- y: number;
18
- }
19
- interface Size {
20
- w: number;
21
- h: number;
22
- }
23
- interface GlobalNpmDependency {
24
- name: string;
25
- installName?: string;
26
- version?: string | number;
27
- }
28
- interface GlobalCommandLineProgramDependency {
29
- name: string;
30
- website: string;
31
- version?: string;
32
- }
33
- interface GlobalDependencies {
34
- npm?: GlobalNpmDependency[];
35
- programs?: GlobalCommandLineProgramDependency[];
36
- }
37
- type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
38
- type OutFolder = 'dist' | 'bundle' | 'browser';
39
- type DatabaseType = 'better-sqlite3' | 'mysql';
40
- }
41
- export declare const GlobalLibTypeName: {
42
- isomorphicLib: string;
43
- angularLib: string;
44
- electronClient: string;
45
- ionicLib: string;
46
- angularClient: string;
47
- ionicClient: string;
48
- workspace: string;
49
- container: string;
50
- docker: string;
51
- unknowNpmProject: string;
52
- vscodeExt: string;
53
- chromeExt: string;
54
- singleFileProject: string;
55
- navi: string;
56
- scenario: string;
57
- };
58
- export declare const LibTypeArr: ConfigModels.LibType[];
59
- export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
60
- export declare const config: {
61
- packagesThat: {
62
- areTrustedForPatchUpdate: string[];
63
- };
64
- readonly dbLocation: string;
65
- coreProjectVersions: string[];
66
- quickFixes: {
67
- missingLibs: any[];
68
- };
69
- packageJsonSplit: string[];
70
- regexString: {
71
- pathPartStringRegex: string;
72
- };
73
- placeholders: {
74
- forProjectsInEnvironmentFile: string;
75
- };
76
- array: {
77
- isomorphicPackages: string;
78
- };
79
- defaultFrameworkVersion: ConfigModels.FrameworkVersion;
80
- CONST: {
81
- UNIT_TEST_TIMEOUT: number;
82
- INTEGRATION_TEST: number;
83
- BACKEND_HTTP_REQUEST_TIMEOUT: number;
84
- };
85
- debug: {
86
- sourceModifier: any[];
87
- baselineSiteJoin: {
88
- DEBUG_PATHES: any[];
89
- DEBUG_MERGE_PATHES: any[];
90
- };
91
- };
92
- frameworkName: "firedev" | "tnp";
93
- frameworkNames: {
94
- tnp: string;
95
- firedev: string;
96
- };
97
- startPort: number;
98
- frameworks: ConfigModels.UIFramework[];
99
- tempFiles: {
100
- FILE_NAME_ISOMORPHIC_PACKAGES: string;
101
- };
102
- OVERRIDE_FROM_TNP: string[];
103
- morphiPathUserInUserDir: string;
104
- urlMorphi: string;
105
- argsReplacementsBuild: {
106
- ba: string;
107
- baw: string;
108
- bw: string;
109
- s: string;
110
- sw: string;
111
- bda: string;
112
- bdap: string;
113
- bd: string;
114
- bdw: string;
115
- bba: string;
116
- bbap: string;
117
- bb: string;
118
- bbw: string;
119
- };
120
- argsGlobalFlags: string[];
121
- argsReplacements: {
122
- ghpush: string;
123
- ghpull: string;
124
- l: string;
125
- sl: string;
126
- lb: string;
127
- i: string;
128
- si: string;
129
- il: string;
130
- rc: string;
131
- rp: string;
132
- r: string;
133
- rmajor: string;
134
- rminor: string;
135
- 'r:major': string;
136
- 'r:minor': string;
137
- ar: string;
138
- ard: string;
139
- re: string;
140
- '--version': string;
141
- '-v': string;
142
- occ: string;
143
- ocp: string;
144
- o: string;
145
- twd: string;
146
- tdw: string;
147
- tw: string;
148
- td: string;
149
- t: string;
150
- pt: string;
151
- p: string;
152
- pa: string;
153
- sj: string;
154
- scm: string;
155
- tpu: string;
156
- ugd: string;
157
- ud: string;
158
- dgl: string;
159
- pr: string;
160
- c: string;
161
- au: string;
162
- up: string;
163
- rev: string;
164
- rw: string;
165
- ba: string;
166
- baw: string;
167
- bw: string;
168
- s: string;
169
- sw: string;
170
- bda: string;
171
- bdap: string;
172
- bd: string;
173
- bdw: string;
174
- bba: string;
175
- bbap: string;
176
- bb: string;
177
- bbw: string;
178
- };
179
- coreBuildFrameworkNames: string[];
180
- ports: {
181
- VPN_SPLIT_SERVER: number;
182
- };
183
- domains: {
184
- localhost: string;
185
- firedev_io: string;
186
- };
187
- pathes: {
188
- logoSvg: string;
189
- logoPng: string;
190
- /**
191
- * Location of compiled source code for tnp framework
192
- * Can be in 3 places:
193
- * - <..>/tnp/dist @DEPRACATED
194
- * - <..>/tnp/bundle @DEPRACATED
195
- * - <some-project>/node_modules/tnp @DEPRACATED
196
- * - <some-project>/node_modules/tnp-config
197
- */
198
- tnp_folder_location: string;
199
- tnp_vscode_ext_location: string;
200
- tnp_tests_context: string;
201
- tnp_db_for_tests_json: string;
202
- scripts: {
203
- HELP_js: string;
204
- allHelpFiles: string;
205
- allPattern: string;
206
- };
207
- projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
208
- workspace: string;
209
- container: string;
210
- projectByType(libType: ConfigModels.NewFactoryType): string;
211
- singlefileproject: string;
212
- };
213
- };
214
- allowedEnvironments: ConfigModels.EnvironmentName[];
215
- folder: {
216
- bundle: string;
217
- vendor: string;
218
- docs: string;
219
- dist: string;
220
- tmp: string;
221
- tmpBundleRelease: string;
222
- tempSrc: string;
223
- tempSrcDist: string;
224
- previewDistApp: string;
225
- preview: string;
226
- browser: string;
227
- websql: string;
228
- _browser: string;
229
- module: string;
230
- backup: string;
231
- node_modules: string;
232
- client: string;
233
- tnp_tests_context: string;
234
- tmpPackage: string;
235
- tmpScenarios: string;
236
- tmpTestsEnvironments: string;
237
- testsEnvironments: string;
238
- scripts: string;
239
- scenarios: string;
240
- bower: string;
241
- src: string;
242
- out: string;
243
- app: string;
244
- lib: string;
245
- libs: string;
246
- source: string;
247
- custom: string;
248
- components: string;
249
- assets: string;
250
- generated: string;
251
- apps: string;
252
- shared: string;
253
- workspace: string;
254
- container: string;
255
- bin: string;
256
- _bin: string;
257
- _vscode: string;
258
- project: string;
259
- external: string;
260
- tmpDist: string;
261
- tmpFor(d: ConfigModels.OutFolder): string;
262
- targetProjects: {
263
- DEFAULT_PATH_GENERATED: string;
264
- DEFAULT_PATH_ORIGINS: string;
265
- };
266
- };
267
- tempFolders: {
268
- bundle: string;
269
- vendor: string;
270
- docs: string;
271
- dist: string;
272
- tmp: string;
273
- tmpBundleRelease: string;
274
- tempSrc: string;
275
- tempSrcDist: string;
276
- previewDistApp: string;
277
- preview: string;
278
- browser: string;
279
- websql: string;
280
- _browser: string;
281
- module: string;
282
- backup: string;
283
- node_modules: string;
284
- client: string;
285
- tnp_tests_context: string;
286
- tmpPackage: string;
287
- tmpScenarios: string;
288
- tmpTestsEnvironments: string;
289
- testsEnvironments: string;
290
- };
291
- filesNotAllowedToClean: string[];
292
- file: {
293
- _gitignore: string;
294
- _npmrc: string;
295
- _npmignore: string;
296
- tslint_json: string;
297
- _editorconfig: string;
298
- _angularCli_json: string;
299
- _vscode_launch_json: string;
300
- _bowerrc: string;
301
- bower_json: string;
302
- controllers_ts: string;
303
- entities_ts: string;
304
- angular_json: string;
305
- autob_actions_js: string;
306
- local_config_js: string;
307
- build_config_js: string;
308
- local_config: string;
309
- start_backend_ts: string;
310
- package_json: string;
311
- result_packages_json: string;
312
- package_json5: string;
313
- package_json__tnp_json: string;
314
- package_json__tnp_json5: string;
315
- package_json__devDependencies_json: string;
316
- yarn_lock: string;
317
- package_lock_json: string;
318
- tnpEnvironment_json: string;
319
- environment: string;
320
- environment_js: string;
321
- tmp_transaction_pid_txt: string;
322
- manifest_webmanifest: string;
323
- public_api_d_ts: string;
324
- public_api_ts: string;
325
- public_api: string;
326
- _babelrc: string;
327
- index: string;
328
- index_d_ts: string;
329
- index_ts: string;
330
- index_js: string;
331
- index_js_map: string;
332
- db_json: string;
333
- db_for_tests_json: string;
334
- tmpDockerImageId: string;
335
- tmp_recent_json: string;
336
- tmpIsomorphicPackagesJson: string;
337
- tsconfig_json: string;
338
- README_MD: string;
339
- server_key: string;
340
- server_cert: string;
341
- server_chain_cert: string;
342
- meta_config_md: string;
343
- logo_png: string;
344
- logo_svg: string;
345
- };
346
- default: {
347
- cloud: {
348
- environment: {
349
- name: ConfigModels.EnvironmentName;
350
- };
351
- };
352
- };
353
- SUBERIZED_PREFIX: string;
354
- names: {
355
- env: {};
356
- baseline: string;
357
- defaultServer: string;
358
- };
359
- reservedArgumentsNamesUglify: string[];
360
- extensions: {
361
- /**
362
- * Modify source: import,export, requires
363
- */
364
- readonly modificableByReplaceFn: string[];
365
- };
366
- notFiredevProjects: ConfigModels.LibType[];
367
- /**
368
- * Build allowed types
369
- */
370
- allowedTypes: {
371
- /**
372
- * Projects for build:app:watch command
373
- */
374
- app: ConfigModels.LibType[];
375
- /**
376
- * Projects for build:(dist|bundle):(watch) command
377
- */
378
- libs: ConfigModels.LibType[];
379
- };
380
- moduleNameAngularLib: string[];
381
- moduleNameIsomorphicLib: string[];
382
- filesExtensions: {
383
- filetemplate: string;
384
- styles: string[];
385
- };
386
- projectTypes: {
387
- forNpmLibs: string[];
388
- with: {
389
- angularAsCore: string[];
390
- componetsAsSrc: string[];
391
- };
392
- };
393
- localLibs: string[];
394
- helpAlias: string[];
395
- required: {
396
- npm: ({
397
- name: string;
398
- version: string;
399
- installName: string;
400
- } | {
401
- name: string;
402
- version: string;
403
- installName?: undefined;
404
- } | {
405
- name: string;
406
- version?: undefined;
407
- installName?: undefined;
408
- } | {
409
- name: string;
410
- installName: string;
411
- version?: undefined;
412
- })[];
413
- niceTools: ({
414
- name: string;
415
- platform?: undefined;
416
- installName?: undefined;
417
- isNotCli?: undefined;
418
- } | {
419
- name: string;
420
- platform: string;
421
- installName?: undefined;
422
- isNotCli?: undefined;
423
- } | {
424
- name: string;
425
- installName: string;
426
- platform?: undefined;
427
- isNotCli?: undefined;
428
- } | {
429
- name: string;
430
- isNotCli: boolean;
431
- platform?: undefined;
432
- installName?: undefined;
433
- })[];
434
- programs: {
435
- name: string;
436
- website: string;
437
- }[];
438
- };
439
- };
1
+ export { CoreHelpers as Helpers } from 'tnp-core';
2
+ export declare namespace ConfigModels {
3
+ type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
4
+ type UIFramework = 'bootstrap' | 'material' | 'ionic';
5
+ type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5' | 'v6' | 'v7' | 'v8' | 'v9';
6
+ type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
7
+ type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
8
+ type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
9
+ type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
10
+ type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
11
+ type TsUsage = 'import' | 'export';
12
+ type LibType = 'unknow' | 'isomorphic-lib' | 'angular-lib' | 'electron-client' | 'ionic-lib' | 'angular-client' | 'ionic-client' | 'workspace' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project' | 'scenario' | 'navi' | 'leaf' | 'game-engine-lib-pixi' | 'game-engine-lib-phaser' | 'game-engine-lib-excalibur' | 'game-engine-lib-babylon';
13
+ type NewFactoryType = LibType | 'model' | 'single-file-project';
14
+ type CoreLibCategory = LibType | 'common';
15
+ interface Position {
16
+ x: number;
17
+ y: number;
18
+ }
19
+ interface Size {
20
+ w: number;
21
+ h: number;
22
+ }
23
+ interface GlobalNpmDependency {
24
+ name: string;
25
+ installName?: string;
26
+ version?: string | number;
27
+ }
28
+ interface GlobalCommandLineProgramDependency {
29
+ name: string;
30
+ website: string;
31
+ version?: string;
32
+ }
33
+ interface GlobalDependencies {
34
+ npm?: GlobalNpmDependency[];
35
+ programs?: GlobalCommandLineProgramDependency[];
36
+ }
37
+ type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
38
+ type OutFolder = 'dist' | 'bundle' | 'browser';
39
+ type DatabaseType = 'better-sqlite3' | 'mysql';
40
+ }
41
+ export declare const GlobalLibTypeName: {
42
+ isomorphicLib: string;
43
+ angularLib: string;
44
+ electronClient: string;
45
+ ionicLib: string;
46
+ angularClient: string;
47
+ ionicClient: string;
48
+ workspace: string;
49
+ container: string;
50
+ docker: string;
51
+ unknowNpmProject: string;
52
+ vscodeExt: string;
53
+ chromeExt: string;
54
+ singleFileProject: string;
55
+ navi: string;
56
+ scenario: string;
57
+ };
58
+ export declare const LibTypeArr: ConfigModels.LibType[];
59
+ export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
60
+ export declare const config: {
61
+ packagesThat: {
62
+ areTrustedForPatchUpdate: string[];
63
+ };
64
+ readonly dbLocation: string;
65
+ quickFixes: {
66
+ missingLibs: any[];
67
+ };
68
+ packageJsonSplit: string[];
69
+ regexString: {
70
+ pathPartStringRegex: string;
71
+ };
72
+ placeholders: {
73
+ forProjectsInEnvironmentFile: string;
74
+ };
75
+ array: {
76
+ isomorphicPackages: string;
77
+ };
78
+ defaultFrameworkVersion: ConfigModels.FrameworkVersion;
79
+ activeFramewrokVersions: ConfigModels.FrameworkVersion[];
80
+ coreProjectVersions: string[];
81
+ CONST: {
82
+ UNIT_TEST_TIMEOUT: number;
83
+ INTEGRATION_TEST: number;
84
+ BACKEND_HTTP_REQUEST_TIMEOUT: number;
85
+ };
86
+ debug: {
87
+ sourceModifier: any[];
88
+ baselineSiteJoin: {
89
+ DEBUG_PATHES: any[];
90
+ DEBUG_MERGE_PATHES: any[];
91
+ };
92
+ };
93
+ frameworkName: "firedev" | "tnp";
94
+ frameworkNames: {
95
+ tnp: string;
96
+ firedev: string;
97
+ };
98
+ startPort: number;
99
+ frameworks: ConfigModels.UIFramework[];
100
+ tempFiles: {
101
+ FILE_NAME_ISOMORPHIC_PACKAGES: string;
102
+ };
103
+ OVERRIDE_FROM_TNP: string[];
104
+ morphiPathUserInUserDir: string;
105
+ urlMorphi: string;
106
+ argsReplacementsBuild: {
107
+ ba: string;
108
+ baw: string;
109
+ bw: string;
110
+ s: string;
111
+ sw: string;
112
+ bda: string;
113
+ bdap: string;
114
+ bd: string;
115
+ bdw: string;
116
+ bba: string;
117
+ bbap: string;
118
+ bb: string;
119
+ bbw: string;
120
+ };
121
+ argsGlobalFlags: string[];
122
+ argsReplacements: {
123
+ ghpush: string;
124
+ ghpull: string;
125
+ l: string;
126
+ sl: string;
127
+ lb: string;
128
+ i: string;
129
+ si: string;
130
+ il: string;
131
+ rc: string;
132
+ rp: string;
133
+ r: string;
134
+ rmajor: string;
135
+ rminor: string;
136
+ 'r:major': string;
137
+ 'r:minor': string;
138
+ ar: string;
139
+ ard: string;
140
+ re: string;
141
+ '--version': string;
142
+ '-v': string;
143
+ occ: string;
144
+ ocp: string;
145
+ o: string;
146
+ twd: string;
147
+ tdw: string;
148
+ tw: string;
149
+ td: string;
150
+ t: string;
151
+ pt: string;
152
+ p: string;
153
+ pa: string;
154
+ sj: string;
155
+ scm: string;
156
+ tpu: string;
157
+ ugd: string;
158
+ ud: string;
159
+ dgl: string;
160
+ pr: string;
161
+ c: string;
162
+ au: string;
163
+ up: string;
164
+ rev: string;
165
+ rw: string;
166
+ ba: string;
167
+ baw: string;
168
+ bw: string;
169
+ s: string;
170
+ sw: string;
171
+ bda: string;
172
+ bdap: string;
173
+ bd: string;
174
+ bdw: string;
175
+ bba: string;
176
+ bbap: string;
177
+ bb: string;
178
+ bbw: string;
179
+ };
180
+ coreBuildFrameworkNames: string[];
181
+ ports: {
182
+ VPN_SPLIT_SERVER: number;
183
+ };
184
+ domains: {
185
+ localhost: string;
186
+ firedev_io: string;
187
+ };
188
+ pathes: {
189
+ logoSvg: string;
190
+ logoPng: string;
191
+ /**
192
+ * Location of compiled source code for tnp framework
193
+ * Can be in 3 places:
194
+ * - <..>/tnp/dist @DEPRACATED
195
+ * - <..>/tnp/bundle @DEPRACATED
196
+ * - <some-project>/node_modules/tnp @DEPRACATED
197
+ * - <some-project>/node_modules/tnp-config
198
+ */
199
+ tnp_folder_location: string;
200
+ tnp_vscode_ext_location: string;
201
+ tnp_tests_context: string;
202
+ tnp_db_for_tests_json: string;
203
+ scripts: {
204
+ HELP_js: string;
205
+ allHelpFiles: string;
206
+ allPattern: string;
207
+ };
208
+ projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
209
+ workspace: string;
210
+ container: string;
211
+ projectByType(libType: ConfigModels.NewFactoryType): string;
212
+ singlefileproject: string;
213
+ };
214
+ };
215
+ allowedEnvironments: ConfigModels.EnvironmentName[];
216
+ folder: {
217
+ bundle: string;
218
+ vendor: string;
219
+ docs: string;
220
+ dist: string;
221
+ tmp: string;
222
+ tmpBundleRelease: string;
223
+ tempSrc: string;
224
+ tempSrcDist: string;
225
+ previewDistApp: string;
226
+ preview: string;
227
+ browser: string;
228
+ websql: string;
229
+ _browser: string;
230
+ module: string;
231
+ backup: string;
232
+ node_modules: string;
233
+ client: string;
234
+ tnp_tests_context: string;
235
+ tmpPackage: string;
236
+ tmpScenarios: string;
237
+ tmpTestsEnvironments: string;
238
+ testsEnvironments: string;
239
+ scripts: string;
240
+ scenarios: string;
241
+ bower: string;
242
+ src: string;
243
+ out: string;
244
+ app: string;
245
+ lib: string;
246
+ libs: string;
247
+ source: string;
248
+ custom: string;
249
+ components: string;
250
+ assets: string;
251
+ generated: string;
252
+ apps: string;
253
+ shared: string;
254
+ workspace: string;
255
+ container: string;
256
+ bin: string;
257
+ _bin: string;
258
+ _vscode: string;
259
+ project: string;
260
+ external: string;
261
+ tmpDist: string;
262
+ tmpFor(d: ConfigModels.OutFolder): string;
263
+ targetProjects: {
264
+ DEFAULT_PATH_GENERATED: string;
265
+ DEFAULT_PATH_ORIGINS: string;
266
+ };
267
+ };
268
+ tempFolders: {
269
+ bundle: string;
270
+ vendor: string;
271
+ docs: string;
272
+ dist: string;
273
+ tmp: string;
274
+ tmpBundleRelease: string;
275
+ tempSrc: string;
276
+ tempSrcDist: string;
277
+ previewDistApp: string;
278
+ preview: string;
279
+ browser: string;
280
+ websql: string;
281
+ _browser: string;
282
+ module: string;
283
+ backup: string;
284
+ node_modules: string;
285
+ client: string;
286
+ tnp_tests_context: string;
287
+ tmpPackage: string;
288
+ tmpScenarios: string;
289
+ tmpTestsEnvironments: string;
290
+ testsEnvironments: string;
291
+ };
292
+ filesNotAllowedToClean: string[];
293
+ file: {
294
+ _gitignore: string;
295
+ _npmrc: string;
296
+ _npmignore: string;
297
+ tslint_json: string;
298
+ _editorconfig: string;
299
+ _angularCli_json: string;
300
+ _vscode_launch_json: string;
301
+ _bowerrc: string;
302
+ bower_json: string;
303
+ controllers_ts: string;
304
+ entities_ts: string;
305
+ angular_json: string;
306
+ autob_actions_js: string;
307
+ local_config_js: string;
308
+ build_config_js: string;
309
+ local_config: string;
310
+ start_backend_ts: string;
311
+ package_json: string;
312
+ result_packages_json: string;
313
+ package_json5: string;
314
+ package_json__tnp_json: string;
315
+ package_json__tnp_json5: string;
316
+ package_json__devDependencies_json: string;
317
+ yarn_lock: string;
318
+ package_lock_json: string;
319
+ tnpEnvironment_json: string;
320
+ environment: string;
321
+ environment_js: string;
322
+ tmp_transaction_pid_txt: string;
323
+ manifest_webmanifest: string;
324
+ public_api_d_ts: string;
325
+ public_api_ts: string;
326
+ public_api: string;
327
+ _babelrc: string;
328
+ index: string;
329
+ index_d_ts: string;
330
+ index_ts: string;
331
+ index_js: string;
332
+ index_js_map: string;
333
+ db_json: string;
334
+ db_for_tests_json: string;
335
+ tmpDockerImageId: string;
336
+ tmp_recent_json: string;
337
+ tmpIsomorphicPackagesJson: string;
338
+ tsconfig_json: string;
339
+ README_MD: string;
340
+ server_key: string;
341
+ server_cert: string;
342
+ server_chain_cert: string;
343
+ meta_config_md: string;
344
+ logo_png: string;
345
+ logo_svg: string;
346
+ };
347
+ default: {
348
+ cloud: {
349
+ environment: {
350
+ name: ConfigModels.EnvironmentName;
351
+ };
352
+ };
353
+ };
354
+ SUBERIZED_PREFIX: string;
355
+ names: {
356
+ env: {};
357
+ baseline: string;
358
+ defaultServer: string;
359
+ };
360
+ reservedArgumentsNamesUglify: string[];
361
+ extensions: {
362
+ /**
363
+ * Modify source: import,export, requires
364
+ */
365
+ readonly modificableByReplaceFn: string[];
366
+ };
367
+ notFiredevProjects: ConfigModels.LibType[];
368
+ /**
369
+ * Build allowed types
370
+ */
371
+ allowedTypes: {
372
+ /**
373
+ * Projects for build:app:watch command
374
+ */
375
+ app: ConfigModels.LibType[];
376
+ /**
377
+ * Projects for build:(dist|bundle):(watch) command
378
+ */
379
+ libs: ConfigModels.LibType[];
380
+ };
381
+ moduleNameAngularLib: string[];
382
+ moduleNameIsomorphicLib: string[];
383
+ filesExtensions: {
384
+ filetemplate: string;
385
+ styles: string[];
386
+ };
387
+ projectTypes: {
388
+ forNpmLibs: string[];
389
+ with: {
390
+ angularAsCore: string[];
391
+ componetsAsSrc: string[];
392
+ };
393
+ };
394
+ localLibs: string[];
395
+ helpAlias: string[];
396
+ required: {
397
+ npm: ({
398
+ name: string;
399
+ version: string;
400
+ installName: string;
401
+ } | {
402
+ name: string;
403
+ version: string;
404
+ installName?: undefined;
405
+ } | {
406
+ name: string;
407
+ version?: undefined;
408
+ installName?: undefined;
409
+ } | {
410
+ name: string;
411
+ installName: string;
412
+ version?: undefined;
413
+ })[];
414
+ niceTools: ({
415
+ name: string;
416
+ platform?: undefined;
417
+ installName?: undefined;
418
+ isNotCli?: undefined;
419
+ } | {
420
+ name: string;
421
+ platform: string;
422
+ installName?: undefined;
423
+ isNotCli?: undefined;
424
+ } | {
425
+ name: string;
426
+ installName: string;
427
+ platform?: undefined;
428
+ isNotCli?: undefined;
429
+ } | {
430
+ name: string;
431
+ isNotCli: boolean;
432
+ platform?: undefined;
433
+ installName?: undefined;
434
+ })[];
435
+ programs: {
436
+ name: string;
437
+ website: string;
438
+ }[];
439
+ };
440
+ };