tnp-config 13.1.74 → 13.1.75
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/README.md +17 -17
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/esm2020/lib/config.mjs +772 -771
- package/browser/esm2020/lib/index.mjs +3 -3
- package/browser/esm2020/public-api.mjs +1 -1
- package/browser/esm2020/tnp-config.mjs +4 -4
- package/browser/fesm2015/tnp-config.mjs +690 -689
- package/browser/fesm2015/tnp-config.mjs.map +1 -1
- package/browser/fesm2020/tnp-config.mjs +764 -763
- package/browser/fesm2020/tnp-config.mjs.map +1 -1
- package/browser/lib/config.d.ts +227 -227
- package/browser/tnp-config.d.ts +4 -4
- package/client/README.md +24 -24
- package/client/esm2020/lib/config.mjs +772 -771
- package/client/esm2020/lib/index.mjs +3 -3
- package/client/esm2020/public-api.mjs +1 -1
- package/client/esm2020/tnp-config.mjs +4 -4
- package/client/fesm2015/tnp-config.mjs +690 -689
- package/client/fesm2015/tnp-config.mjs.map +1 -1
- package/client/fesm2020/tnp-config.mjs +764 -763
- package/client/fesm2020/tnp-config.mjs.map +1 -1
- package/client/lib/config.d.ts +227 -227
- package/client/package.json +28 -28
- package/client/tnp-config.d.ts +4 -4
- package/index.d.ts +1 -1
- package/index.js.map +1 -1
- package/lib/config.d.ts +439 -437
- package/lib/config.js +1 -0
- package/lib/config.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +3 -3
- package/package.json_devDependencies.json +218 -218
- package/package.json_tnp.json5 +36 -35
- package/tmp-environment.json +34 -33
- package/websql/README.md +24 -24
- package/websql/esm2020/lib/config.mjs +772 -771
- package/websql/esm2020/lib/index.mjs +3 -3
- package/websql/esm2020/public-api.mjs +1 -1
- package/websql/esm2020/tnp-config.mjs +4 -4
- package/websql/fesm2015/tnp-config.mjs +690 -689
- package/websql/fesm2015/tnp-config.mjs.map +1 -1
- package/websql/fesm2020/tnp-config.mjs +764 -763
- package/websql/fesm2020/tnp-config.mjs.map +1 -1
- package/websql/lib/config.d.ts +227 -227
- package/websql/tnp-config.d.ts +4 -4
package/lib/config.d.ts
CHANGED
@@ -1,437 +1,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';
|
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
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
'r:
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
'
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
*
|
192
|
-
*
|
193
|
-
* -
|
194
|
-
*
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
};
|
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
|
+
};
|