tnp-config 16.5.15 → 16.5.24
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/assets/shared/shared_folder_info.txt +1 -1
- package/browser/esm2022/lib/config.mjs +7 -364
- package/browser/esm2022/lib/constants.mjs +1 -1
- package/browser/fesm2022/tnp-config.mjs +6 -363
- package/browser/fesm2022/tnp-config.mjs.map +1 -1
- package/browser/lib/config.d.ts +9 -131
- package/client/esm2022/lib/config.mjs +7 -364
- package/client/esm2022/lib/constants.mjs +1 -1
- package/client/fesm2022/tnp-config.mjs +6 -363
- package/client/fesm2022/tnp-config.mjs.map +1 -1
- package/client/lib/config.d.ts +9 -131
- package/client/package.json +37 -34
- package/lib/config.d.ts +10 -259
- package/lib/config.js +38 -353
- package/lib/config.js.map +1 -1
- package/lib/constants.js.map +1 -1
- package/package.json +7 -4
- package/package.json_tnp.json5 +4 -1
- package/tmp-environment.json +41 -45
- package/websql/esm2022/lib/config.mjs +7 -364
- package/websql/esm2022/lib/constants.mjs +1 -1
- package/websql/fesm2022/tnp-config.mjs +6 -363
- package/websql/fesm2022/tnp-config.mjs.map +1 -1
- package/websql/lib/config.d.ts +9 -131
package/client/lib/config.d.ts
CHANGED
@@ -1,118 +1,14 @@
|
|
1
1
|
// @ts-nocheck
|
2
|
-
|
3
|
-
* Dariusz Filipiak
|
4
|
-
* @author darekf77@gmail.com
|
5
|
-
* Recommended config for all isomorphic libs *
|
6
|
-
*/
|
7
|
-
import { ContentType } from 'tnp-core/browser';
|
2
|
+
import { CoreModels } from 'tnp-core/browser';
|
8
3
|
export { CoreHelpers as Helpers } from 'tnp-core/browser';
|
9
|
-
export declare namespace ConfigModels {
|
10
|
-
export type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
11
|
-
export type PUSHTYPE = 'feat' | 'chore' | 'feature' | 'refactor' | 'perf' | 'styles' | 'ci' | 'build' | 'fix' | 'bugfix' | 'release' | 'docs';
|
12
|
-
export type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
13
|
-
export type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5' | 'v6' | 'v7' | 'v8' | 'v9';
|
14
|
-
export type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
15
|
-
export type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
16
|
-
export type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
17
|
-
export type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
18
|
-
export type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
19
|
-
export type TsUsage = 'import' | 'export';
|
20
|
-
export interface UploadedBackendFile {
|
21
|
-
data: any;
|
22
|
-
encoding: string;
|
23
|
-
md5: string;
|
24
|
-
tempFilePath: string;
|
25
|
-
mimetype: ContentType;
|
26
|
-
mv: (path: any, callback: any) => any;
|
27
|
-
name: string;
|
28
|
-
truncated: boolean;
|
29
|
-
}
|
30
|
-
export interface VSCodeSettings {
|
31
|
-
'files.exclude': {
|
32
|
-
[files: string]: boolean;
|
33
|
-
};
|
34
|
-
'workbench.colorTheme': 'Default Light+' | 'Kimbie Dark';
|
35
|
-
'workbench.colorCustomizations': {
|
36
|
-
'activityBar.background'?: string;
|
37
|
-
'activityBar.foreground'?: string;
|
38
|
-
'statusBar.background'?: string;
|
39
|
-
};
|
40
|
-
}
|
41
|
-
export type LibType = 'unknow' | 'isomorphic-lib' | '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';
|
42
|
-
export type NewFactoryType = LibType | 'model' | 'single-file-project';
|
43
|
-
export type CoreLibCategory = LibType | 'common';
|
44
|
-
export interface Position {
|
45
|
-
x: number;
|
46
|
-
y: number;
|
47
|
-
}
|
48
|
-
export interface Size {
|
49
|
-
w: number;
|
50
|
-
h: number;
|
51
|
-
}
|
52
|
-
export interface GlobalNpmDependency {
|
53
|
-
name: string;
|
54
|
-
installName?: string;
|
55
|
-
version?: string | number;
|
56
|
-
}
|
57
|
-
export interface GlobalCommandLineProgramDependency {
|
58
|
-
name: string;
|
59
|
-
website: string;
|
60
|
-
version?: string;
|
61
|
-
}
|
62
|
-
export interface GlobalDependencies {
|
63
|
-
npm?: GlobalNpmDependency[];
|
64
|
-
programs?: GlobalCommandLineProgramDependency[];
|
65
|
-
}
|
66
|
-
export type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
67
|
-
export type OutFolder = 'dist' | 'browser';
|
68
|
-
export type DatabaseType = 'better-sqlite3' | 'mysql';
|
69
|
-
export interface TsConfigJson {
|
70
|
-
extends: string;
|
71
|
-
exclude: string[];
|
72
|
-
compileOnSave: boolean;
|
73
|
-
compilerOptions: CompilerOptions;
|
74
|
-
angularCompilerOptions: AngularCompilerOptions;
|
75
|
-
}
|
76
|
-
interface AngularCompilerOptions {
|
77
|
-
fullTemplateTypeCheck: boolean;
|
78
|
-
strictInjectionParameters: boolean;
|
79
|
-
compilationMode: string;
|
80
|
-
preserveSymlinks: boolean;
|
81
|
-
enableIvy: boolean;
|
82
|
-
}
|
83
|
-
interface CompilerOptions {
|
84
|
-
baseUrl: string;
|
85
|
-
outDir: string;
|
86
|
-
sourceMap: boolean;
|
87
|
-
declaration: boolean;
|
88
|
-
strictNullChecks: boolean;
|
89
|
-
downlevelIteration: boolean;
|
90
|
-
experimentalDecorators: boolean;
|
91
|
-
emitDecoratorMetadata: boolean;
|
92
|
-
esModuleInterop: boolean;
|
93
|
-
module: string;
|
94
|
-
moduleResolution: string;
|
95
|
-
importHelpers: boolean;
|
96
|
-
skipLibCheck: boolean;
|
97
|
-
target: string;
|
98
|
-
typeRoots: string[];
|
99
|
-
types: string[];
|
100
|
-
lib: string[];
|
101
|
-
paths: {
|
102
|
-
[fullPackageName: string]: string[];
|
103
|
-
};
|
104
|
-
useDefineForClassFields: boolean;
|
105
|
-
}
|
106
|
-
export {};
|
107
|
-
}
|
108
4
|
export declare const GlobalLibTypeName: {};
|
109
|
-
export declare const LibTypeArr:
|
110
|
-
export declare const CoreLibCategoryArr:
|
5
|
+
export declare const LibTypeArr: CoreModels.LibType[];
|
6
|
+
export declare const CoreLibCategoryArr: CoreModels.CoreLibCategory[];
|
111
7
|
export declare const config: {
|
8
|
+
dirnameForTnp: string;
|
112
9
|
packagesThat: {
|
113
10
|
areTrustedForPatchUpdate: any[];
|
114
11
|
};
|
115
|
-
quickFixes: {};
|
116
12
|
packageJsonSplit: any[];
|
117
13
|
regexString: {
|
118
14
|
pathPartStringRegex: string;
|
@@ -123,19 +19,17 @@ export declare const config: {
|
|
123
19
|
array: {
|
124
20
|
isomorphicPackages: string;
|
125
21
|
};
|
126
|
-
defaultFrameworkVersion:
|
127
|
-
activeFramewrokVersions:
|
22
|
+
defaultFrameworkVersion: CoreModels.FrameworkVersion;
|
23
|
+
activeFramewrokVersions: CoreModels.FrameworkVersion[];
|
128
24
|
coreProjectVersions: string[];
|
129
|
-
CONST: {};
|
130
|
-
debug: {};
|
131
25
|
frameworkName: "firedev" | "tnp";
|
132
26
|
frameworkNames: {
|
133
27
|
tnp: string;
|
134
28
|
firedev: string;
|
135
29
|
};
|
136
30
|
startPort: number;
|
137
|
-
frameworks:
|
138
|
-
allowedEnvironments:
|
31
|
+
frameworks: CoreModels.UIFramework[];
|
32
|
+
allowedEnvironments: CoreModels.EnvironmentName[];
|
139
33
|
folder: {
|
140
34
|
vendor: string;
|
141
35
|
docs: string;
|
@@ -182,7 +76,7 @@ export declare const config: {
|
|
182
76
|
project: string;
|
183
77
|
external: string;
|
184
78
|
tmpDist: string;
|
185
|
-
tmpFor(d:
|
79
|
+
tmpFor(d: CoreModels.OutFolder): string;
|
186
80
|
targetProjects: {
|
187
81
|
DEFAULT_PATH_GENERATED: string;
|
188
82
|
DEFAULT_PATH_ORIGINS: string;
|
@@ -262,26 +156,10 @@ export declare const config: {
|
|
262
156
|
ric_proj_json: string;
|
263
157
|
};
|
264
158
|
default: {};
|
265
|
-
SUBERIZED_PREFIX: string;
|
266
|
-
names: {
|
267
|
-
env: {};
|
268
|
-
baseline: string;
|
269
|
-
defaultServer: string;
|
270
|
-
};
|
271
159
|
reservedArgumentsNamesUglify: string[];
|
272
|
-
extensions: {};
|
273
|
-
notFiredevProjects: ConfigModels.LibType[];
|
274
|
-
/**
|
275
|
-
* Build allowed types
|
276
|
-
*/
|
277
|
-
allowedTypes: {};
|
278
|
-
moduleNameAngularLib: any[];
|
279
|
-
moduleNameIsomorphicLib: any[];
|
280
160
|
filesExtensions: {
|
281
161
|
filetemplate: string;
|
282
|
-
styles: any[];
|
283
162
|
};
|
284
|
-
projectTypes: {};
|
285
163
|
localLibs: any[];
|
286
164
|
helpAlias: string[];
|
287
165
|
required: {
|
package/client/package.json
CHANGED
@@ -20,7 +20,10 @@
|
|
20
20
|
"nodts": false,
|
21
21
|
"obscure": false,
|
22
22
|
"ugly": false,
|
23
|
-
"includeNodeModules": false
|
23
|
+
"includeNodeModules": false,
|
24
|
+
"cliBuildNoDts": false,
|
25
|
+
"cliBuildObscure": false,
|
26
|
+
"cliBuildIncludeNodeModules": false
|
24
27
|
},
|
25
28
|
"smartContainerTarget": "",
|
26
29
|
"type": "isomorphic-lib",
|
@@ -39,7 +42,7 @@
|
|
39
42
|
"workerPlugins": {}
|
40
43
|
},
|
41
44
|
"dependencies": {
|
42
|
-
"tnp-core": "~16.
|
45
|
+
"tnp-core": "~16.6.11"
|
43
46
|
},
|
44
47
|
"devDependencies": {
|
45
48
|
"@angular-devkit/build-angular": "~16.0.5",
|
@@ -122,9 +125,9 @@
|
|
122
125
|
"angular-material-css-vars": "5.0.2",
|
123
126
|
"angular-resize-event": "3.2.0",
|
124
127
|
"animate.css": "4.1.1 ",
|
125
|
-
"any-project-cli": "~16.5.
|
128
|
+
"any-project-cli": "~16.5.15",
|
126
129
|
"axios": "1.3.5",
|
127
|
-
"background-worker-process": "~16.5.
|
130
|
+
"background-worker-process": "~16.5.15",
|
128
131
|
"base32": "0.0.7",
|
129
132
|
"bcryptjs": "2.4.3",
|
130
133
|
"better-sqlite3": "7.6.2",
|
@@ -171,13 +174,13 @@
|
|
171
174
|
"file-saver": "2.0.5",
|
172
175
|
"file-type": "18.5.0",
|
173
176
|
"firedev": "^16",
|
174
|
-
"firedev-crud": "~16.5.
|
175
|
-
"firedev-crud-deamon": "~16.5.
|
176
|
-
"firedev-ports": "~16.5.
|
177
|
-
"firedev-storage": "~16.5.
|
178
|
-
"firedev-type-sql": "~16.5.
|
179
|
-
"firedev-typeorm": "~16.5.
|
180
|
-
"firedev-ui": "~16.5.
|
177
|
+
"firedev-crud": "~16.5.15",
|
178
|
+
"firedev-crud-deamon": "~16.5.14",
|
179
|
+
"firedev-ports": "~16.5.15",
|
180
|
+
"firedev-storage": "~16.5.13",
|
181
|
+
"firedev-type-sql": "~16.5.13",
|
182
|
+
"firedev-typeorm": "~16.5.15",
|
183
|
+
"firedev-ui": "~16.5.14",
|
181
184
|
"fkill": "6.1.0",
|
182
185
|
"font-awesome": "4.7.0",
|
183
186
|
"form-data": "4.0.0",
|
@@ -188,17 +191,17 @@
|
|
188
191
|
"helmet": "7.0.0",
|
189
192
|
"hostile": "1.3.3",
|
190
193
|
"howler": "2.2.3",
|
191
|
-
"http-proxy": "1.
|
194
|
+
"http-proxy": "1.18.1",
|
192
195
|
"http-proxy-middleware": "0.19.1",
|
193
196
|
"http-server": "0.11.1",
|
194
197
|
"image-focus": "1.2.1",
|
195
198
|
"immer": "10.0.2",
|
196
199
|
"immutable": "4.3.0",
|
197
|
-
"incremental-compiler": "~16.5.
|
200
|
+
"incremental-compiler": "~16.5.24",
|
198
201
|
"inquirer": "7.3.3",
|
199
202
|
"inquirer-autocomplete-prompt": "1.3.0",
|
200
203
|
"is-elevated": "3.0.0",
|
201
|
-
"isomorphic-region-loader": "~16.5.
|
204
|
+
"isomorphic-region-loader": "~16.5.14",
|
202
205
|
"istanbul-instrumenter-loader": "2.0.0",
|
203
206
|
"jest": "29.5.0",
|
204
207
|
"jest-date-mock": "1.0.8",
|
@@ -209,8 +212,8 @@
|
|
209
212
|
"joi": "17.9.2",
|
210
213
|
"jscodeshift": "0.6.3",
|
211
214
|
"json-stringify-safe": "5.0.1",
|
212
|
-
"json10": "~16.5.
|
213
|
-
"json10-writer": "~16.5.
|
215
|
+
"json10": "~16.5.13",
|
216
|
+
"json10-writer": "~16.5.14",
|
214
217
|
"json5": "2.2.1",
|
215
218
|
"json5-writer": "0.2.0",
|
216
219
|
"jszip": "3.10.1",
|
@@ -219,23 +222,23 @@
|
|
219
222
|
"localforage": "1.10.0",
|
220
223
|
"lockfile": "1.0.4",
|
221
224
|
"lodash": "4.17.20",
|
222
|
-
"lodash-walk-object": "~16.5.
|
225
|
+
"lodash-walk-object": "~16.5.13",
|
223
226
|
"lowdb": "1.0.0",
|
224
|
-
"magic-renamer": "~16.5.
|
227
|
+
"magic-renamer": "~16.5.13",
|
225
228
|
"material-design-icons": "3.0.1",
|
226
229
|
"method-override": "2.3.10",
|
227
230
|
"minimist": "1.2.0",
|
228
231
|
"mkdirp": "0.5.1",
|
229
232
|
"mocha": "10.2.0",
|
230
233
|
"moment": "2.29.3",
|
231
|
-
"morphi": "~16.5.
|
234
|
+
"morphi": "~16.5.13",
|
232
235
|
"ng-for-track-by-property": "16.0.1",
|
233
236
|
"ng-in-viewport": "15.0.2",
|
234
237
|
"ng-lock": "16.0.1",
|
235
238
|
"ng-packagr": "16.0.1",
|
236
|
-
"ng-talkback": "~16.5.
|
237
|
-
"ng2-logger": "~16.5.
|
238
|
-
"ng2-rest": "~16.5.
|
239
|
+
"ng-talkback": "~16.5.14",
|
240
|
+
"ng2-logger": "~16.5.16",
|
241
|
+
"ng2-rest": "~16.5.13",
|
239
242
|
"ngx-ace-wrapper": "14.0.0",
|
240
243
|
"ngx-editor": "15.3.0",
|
241
244
|
"ngx-highlightjs": "9.0.0",
|
@@ -248,7 +251,7 @@
|
|
248
251
|
"ngx-scrolltop": "6.0.0",
|
249
252
|
"ngx-store": "3.1.1",
|
250
253
|
"ngx-typed-js": "2.1.1",
|
251
|
-
"node-cli-tester": "~16.5.
|
254
|
+
"node-cli-tester": "~16.5.14",
|
252
255
|
"node-localstorage": "2.1.6",
|
253
256
|
"node-notifier": "6.0.0",
|
254
257
|
"node-polyfill-webpack-plugin": "2.0.1",
|
@@ -275,7 +278,7 @@
|
|
275
278
|
"q": "1.5.1",
|
276
279
|
"rallax.js": "2.0.4",
|
277
280
|
"randomcolor": "0.5.3",
|
278
|
-
"record-replay-req-res-scenario": "~16.5.
|
281
|
+
"record-replay-req-res-scenario": "~16.5.14",
|
279
282
|
"reflect-metadata": "0.1.10",
|
280
283
|
"rimraf": "2.6.2",
|
281
284
|
"rxjs": "~7.8.0",
|
@@ -286,7 +289,7 @@
|
|
286
289
|
"socket.io": "2.4.1",
|
287
290
|
"sort-package-json": "1.11.0",
|
288
291
|
"sql.js": "1.8.0",
|
289
|
-
"static-columns": "~16.5.
|
292
|
+
"static-columns": "~16.5.17",
|
290
293
|
"string-similarity": "4.0.2",
|
291
294
|
"sudo-block": "3.0.0",
|
292
295
|
"supertest": "6.3.3",
|
@@ -294,11 +297,11 @@
|
|
294
297
|
"systeminformation": "3.45.7",
|
295
298
|
"task.js": "0.1.5",
|
296
299
|
"threads": "1.7.0",
|
297
|
-
"tnp-cli": "~16.5.
|
298
|
-
"tnp-config": "~16.5.
|
299
|
-
"tnp-db": "~16.5.
|
300
|
-
"tnp-helpers": "~16.5.
|
301
|
-
"tnp-models": "~16.5.
|
300
|
+
"tnp-cli": "~16.5.13",
|
301
|
+
"tnp-config": "~16.5.23",
|
302
|
+
"tnp-db": "~16.5.13",
|
303
|
+
"tnp-helpers": "~16.5.16",
|
304
|
+
"tnp-models": "~16.5.14",
|
302
305
|
"ts-debug": "1.3.0",
|
303
306
|
"ts-loader": "2.3.1",
|
304
307
|
"ts-node": "10.9.1",
|
@@ -307,13 +310,13 @@
|
|
307
310
|
"turndown": "7.1.2",
|
308
311
|
"typeorm": "~0.3.10",
|
309
312
|
"typescript": "~5.0.2",
|
310
|
-
"typescript-class-helpers": "~16.5.
|
313
|
+
"typescript-class-helpers": "~16.5.15",
|
311
314
|
"typescript-formatter": "~7.2.2",
|
312
315
|
"underscore": "1.9.1",
|
313
316
|
"uuid": "8.3.2",
|
314
317
|
"validator": "9.2.0",
|
315
318
|
"video.js": "8.3.0",
|
316
|
-
"vpn-split": "~16.5.
|
319
|
+
"vpn-split": "~16.5.15",
|
317
320
|
"watch": "1.0.2",
|
318
321
|
"yup": "1.1.1",
|
319
322
|
"zone.js": "~0.13.0"
|
@@ -321,6 +324,6 @@
|
|
321
324
|
"license": "MIT",
|
322
325
|
"private": false,
|
323
326
|
"name": "tnp-config",
|
324
|
-
"version": "16.5.
|
325
|
-
"lastBuildTagHash": "
|
327
|
+
"version": "16.5.24",
|
328
|
+
"lastBuildTagHash": "239f2dba7b37101d819a61182ff4096c6d72df1a"
|
326
329
|
}
|
package/lib/config.d.ts
CHANGED
@@ -1,105 +1,5 @@
|
|
1
|
-
|
2
|
-
import { ContentType } from 'tnp-core/src';
|
1
|
+
import { CoreModels } from 'tnp-core/src';
|
3
2
|
export { CoreHelpers as Helpers } from 'tnp-core/src';
|
4
|
-
export declare namespace ConfigModels {
|
5
|
-
export type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
6
|
-
export type PUSHTYPE = 'feat' | 'chore' | 'feature' | 'refactor' | 'perf' | 'styles' | 'ci' | 'build' | 'fix' | 'bugfix' | 'release' | 'docs';
|
7
|
-
export type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
8
|
-
export type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5' | 'v6' | 'v7' | 'v8' | 'v9';
|
9
|
-
export type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
10
|
-
export type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
11
|
-
export type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
12
|
-
export type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
13
|
-
export type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
14
|
-
export type TsUsage = 'import' | 'export';
|
15
|
-
export interface UploadedBackendFile {
|
16
|
-
data: any | Buffer;
|
17
|
-
encoding: string;
|
18
|
-
md5: string;
|
19
|
-
tempFilePath: string;
|
20
|
-
mimetype: ContentType;
|
21
|
-
mv: (path: any, callback: any) => any;
|
22
|
-
name: string;
|
23
|
-
truncated: boolean;
|
24
|
-
}
|
25
|
-
export interface VSCodeSettings {
|
26
|
-
'files.exclude': {
|
27
|
-
[files: string]: boolean;
|
28
|
-
};
|
29
|
-
'workbench.colorTheme': 'Default Light+' | 'Kimbie Dark';
|
30
|
-
'workbench.colorCustomizations': {
|
31
|
-
'activityBar.background'?: string;
|
32
|
-
'activityBar.foreground'?: string;
|
33
|
-
'statusBar.background'?: string;
|
34
|
-
};
|
35
|
-
}
|
36
|
-
export type LibType = 'unknow' | 'isomorphic-lib' | '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';
|
37
|
-
export type NewFactoryType = LibType | 'model' | 'single-file-project';
|
38
|
-
export type CoreLibCategory = LibType | 'common';
|
39
|
-
export interface Position {
|
40
|
-
x: number;
|
41
|
-
y: number;
|
42
|
-
}
|
43
|
-
export interface Size {
|
44
|
-
w: number;
|
45
|
-
h: number;
|
46
|
-
}
|
47
|
-
export interface GlobalNpmDependency {
|
48
|
-
name: string;
|
49
|
-
installName?: string;
|
50
|
-
version?: string | number;
|
51
|
-
}
|
52
|
-
export interface GlobalCommandLineProgramDependency {
|
53
|
-
name: string;
|
54
|
-
website: string;
|
55
|
-
version?: string;
|
56
|
-
}
|
57
|
-
export interface GlobalDependencies {
|
58
|
-
npm?: GlobalNpmDependency[];
|
59
|
-
programs?: GlobalCommandLineProgramDependency[];
|
60
|
-
}
|
61
|
-
export type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
62
|
-
export type OutFolder = 'dist' | 'browser';
|
63
|
-
export type DatabaseType = 'better-sqlite3' | 'mysql';
|
64
|
-
export interface TsConfigJson {
|
65
|
-
extends: string;
|
66
|
-
exclude: string[];
|
67
|
-
compileOnSave: boolean;
|
68
|
-
compilerOptions: CompilerOptions;
|
69
|
-
angularCompilerOptions: AngularCompilerOptions;
|
70
|
-
}
|
71
|
-
interface AngularCompilerOptions {
|
72
|
-
fullTemplateTypeCheck: boolean;
|
73
|
-
strictInjectionParameters: boolean;
|
74
|
-
compilationMode: string;
|
75
|
-
preserveSymlinks: boolean;
|
76
|
-
enableIvy: boolean;
|
77
|
-
}
|
78
|
-
interface CompilerOptions {
|
79
|
-
baseUrl: string;
|
80
|
-
outDir: string;
|
81
|
-
sourceMap: boolean;
|
82
|
-
declaration: boolean;
|
83
|
-
strictNullChecks: boolean;
|
84
|
-
downlevelIteration: boolean;
|
85
|
-
experimentalDecorators: boolean;
|
86
|
-
emitDecoratorMetadata: boolean;
|
87
|
-
esModuleInterop: boolean;
|
88
|
-
module: string;
|
89
|
-
moduleResolution: string;
|
90
|
-
importHelpers: boolean;
|
91
|
-
skipLibCheck: boolean;
|
92
|
-
target: string;
|
93
|
-
typeRoots: string[];
|
94
|
-
types: string[];
|
95
|
-
lib: string[];
|
96
|
-
paths: {
|
97
|
-
[fullPackageName: string]: string[];
|
98
|
-
};
|
99
|
-
useDefineForClassFields: boolean;
|
100
|
-
}
|
101
|
-
export {};
|
102
|
-
}
|
103
3
|
export declare const GlobalLibTypeName: {
|
104
4
|
isomorphicLib: string;
|
105
5
|
container: string;
|
@@ -111,16 +11,13 @@ export declare const GlobalLibTypeName: {
|
|
111
11
|
navi: string;
|
112
12
|
scenario: string;
|
113
13
|
};
|
114
|
-
export declare const LibTypeArr:
|
115
|
-
export declare const CoreLibCategoryArr:
|
14
|
+
export declare const LibTypeArr: CoreModels.LibType[];
|
15
|
+
export declare const CoreLibCategoryArr: CoreModels.CoreLibCategory[];
|
116
16
|
export declare const config: {
|
17
|
+
dirnameForTnp: string;
|
117
18
|
packagesThat: {
|
118
19
|
areTrustedForPatchUpdate: string[];
|
119
20
|
};
|
120
|
-
readonly dbLocation: string;
|
121
|
-
quickFixes: {
|
122
|
-
missingLibs: any[];
|
123
|
-
};
|
124
21
|
packageJsonSplit: string[];
|
125
22
|
regexString: {
|
126
23
|
pathPartStringRegex: string;
|
@@ -131,139 +28,25 @@ export declare const config: {
|
|
131
28
|
array: {
|
132
29
|
isomorphicPackages: string;
|
133
30
|
};
|
134
|
-
defaultFrameworkVersion:
|
135
|
-
activeFramewrokVersions:
|
31
|
+
defaultFrameworkVersion: CoreModels.FrameworkVersion;
|
32
|
+
activeFramewrokVersions: CoreModels.FrameworkVersion[];
|
136
33
|
coreProjectVersions: string[];
|
137
|
-
CONST: {
|
138
|
-
UNIT_TEST_TIMEOUT: number;
|
139
|
-
INTEGRATION_TEST: number;
|
140
|
-
BACKEND_HTTP_REQUEST_TIMEOUT: number;
|
141
|
-
};
|
142
|
-
debug: {
|
143
|
-
sourceModifier: any[];
|
144
|
-
baselineSiteJoin: {
|
145
|
-
DEBUG_PATHES: any[];
|
146
|
-
DEBUG_MERGE_PATHES: any[];
|
147
|
-
};
|
148
|
-
};
|
149
34
|
frameworkName: "firedev" | "tnp";
|
150
35
|
frameworkNames: {
|
151
36
|
tnp: string;
|
152
37
|
firedev: string;
|
153
38
|
};
|
154
39
|
startPort: number;
|
155
|
-
frameworks:
|
40
|
+
frameworks: CoreModels.UIFramework[];
|
156
41
|
tempFiles: {
|
157
42
|
FILE_NAME_ISOMORPHIC_PACKAGES: string;
|
158
43
|
};
|
159
|
-
OVERRIDE_FROM_TNP: string[];
|
160
|
-
morphiPathUserInUserDir: string;
|
161
44
|
urlMorphi: string;
|
162
|
-
argsReplacementsBuild: {
|
163
|
-
ba: string;
|
164
|
-
baw: string;
|
165
|
-
bw: string;
|
166
|
-
s: string;
|
167
|
-
sw: string;
|
168
|
-
bda: string;
|
169
|
-
bdap: string;
|
170
|
-
ew: string;
|
171
|
-
bd: string;
|
172
|
-
bdw: string;
|
173
|
-
};
|
174
|
-
argsGlobalFlags: string[];
|
175
|
-
argsReplacements: {
|
176
|
-
ghpush: string;
|
177
|
-
ghpull: string;
|
178
|
-
l: string;
|
179
|
-
sl: string;
|
180
|
-
lb: string;
|
181
|
-
i: string;
|
182
|
-
si: string;
|
183
|
-
il: string;
|
184
|
-
rc: string;
|
185
|
-
rp: string;
|
186
|
-
r: string;
|
187
|
-
rmajor: string;
|
188
|
-
rminor: string;
|
189
|
-
'r:major': string;
|
190
|
-
'r:minor': string;
|
191
|
-
ar: string;
|
192
|
-
ard: string;
|
193
|
-
re: string;
|
194
|
-
'--version': string;
|
195
|
-
'-v': string;
|
196
|
-
occ: string;
|
197
|
-
ocp: string;
|
198
|
-
o: string;
|
199
|
-
twd: string;
|
200
|
-
tdw: string;
|
201
|
-
tw: string;
|
202
|
-
td: string;
|
203
|
-
t: string;
|
204
|
-
pt: string;
|
205
|
-
p: string;
|
206
|
-
pa: string;
|
207
|
-
sj: string;
|
208
|
-
scm: string;
|
209
|
-
tpu: string;
|
210
|
-
ugd: string;
|
211
|
-
ud: string;
|
212
|
-
dgl: string;
|
213
|
-
pr: string;
|
214
|
-
c: string;
|
215
|
-
au: string;
|
216
|
-
up: string;
|
217
|
-
rev: string;
|
218
|
-
rw: string;
|
219
|
-
a: string;
|
220
|
-
wa: string;
|
221
|
-
b: string;
|
222
|
-
ba: string;
|
223
|
-
baw: string;
|
224
|
-
bw: string;
|
225
|
-
s: string;
|
226
|
-
sw: string;
|
227
|
-
bda: string;
|
228
|
-
bdap: string;
|
229
|
-
ew: string;
|
230
|
-
bd: string;
|
231
|
-
bdw: string;
|
232
|
-
};
|
233
|
-
coreBuildFrameworkNames: string[];
|
234
|
-
ports: {
|
235
|
-
VPN_SPLIT_SERVER: number;
|
236
|
-
};
|
237
|
-
domains: {
|
238
|
-
localhost: string;
|
239
|
-
firedev_io: string;
|
240
|
-
};
|
241
45
|
pathes: {
|
242
46
|
logoSvg: string;
|
243
47
|
logoPng: string;
|
244
|
-
/**
|
245
|
-
* Location of compiled source code for tnp framework
|
246
|
-
* Can be in 3 places:
|
247
|
-
* - <..>/tnp/dist @DEPRACATED
|
248
|
-
* - <some-project>/node_modules/tnp @DEPRACATED
|
249
|
-
* - <some-project>/node_modules/tnp-config
|
250
|
-
*/
|
251
|
-
tnp_folder_location: string;
|
252
|
-
tnp_vscode_ext_location: string;
|
253
|
-
tnp_tests_context: string;
|
254
|
-
tnp_db_for_tests_json: string;
|
255
|
-
scripts: {
|
256
|
-
HELP_js: string;
|
257
|
-
allHelpFiles: string;
|
258
|
-
allPattern: string;
|
259
|
-
};
|
260
|
-
projectsExamples: (version?: ConfigModels.FrameworkVersion) => {
|
261
|
-
container: string;
|
262
|
-
projectByType(libType: ConfigModels.NewFactoryType): string;
|
263
|
-
singlefileproject: string;
|
264
|
-
};
|
265
48
|
};
|
266
|
-
allowedEnvironments:
|
49
|
+
allowedEnvironments: CoreModels.EnvironmentName[];
|
267
50
|
folder: {
|
268
51
|
vendor: string;
|
269
52
|
docs: string;
|
@@ -310,7 +93,7 @@ export declare const config: {
|
|
310
93
|
project: string;
|
311
94
|
external: string;
|
312
95
|
tmpDist: string;
|
313
|
-
tmpFor(d:
|
96
|
+
tmpFor(d: CoreModels.OutFolder): string;
|
314
97
|
targetProjects: {
|
315
98
|
DEFAULT_PATH_GENERATED: string;
|
316
99
|
DEFAULT_PATH_ORIGINS: string;
|
@@ -399,45 +182,13 @@ export declare const config: {
|
|
399
182
|
default: {
|
400
183
|
cloud: {
|
401
184
|
environment: {
|
402
|
-
name:
|
185
|
+
name: CoreModels.EnvironmentName;
|
403
186
|
};
|
404
187
|
};
|
405
188
|
};
|
406
|
-
SUBERIZED_PREFIX: string;
|
407
|
-
names: {
|
408
|
-
env: {};
|
409
|
-
baseline: string;
|
410
|
-
defaultServer: string;
|
411
|
-
};
|
412
189
|
reservedArgumentsNamesUglify: string[];
|
413
|
-
extensions: {
|
414
|
-
/**
|
415
|
-
* Modify source: import,export, requires
|
416
|
-
*/
|
417
|
-
readonly modificableByReplaceFn: string[];
|
418
|
-
};
|
419
|
-
notFiredevProjects: ConfigModels.LibType[];
|
420
|
-
/**
|
421
|
-
* Build allowed types
|
422
|
-
*/
|
423
|
-
allowedTypes: {
|
424
|
-
/**
|
425
|
-
* Projects for build:app:watch command
|
426
|
-
*/
|
427
|
-
app: ConfigModels.LibType[];
|
428
|
-
/**
|
429
|
-
* Projects for build:(dist):(watch) command
|
430
|
-
*/
|
431
|
-
libs: ConfigModels.LibType[];
|
432
|
-
};
|
433
|
-
moduleNameAngularLib: string[];
|
434
|
-
moduleNameIsomorphicLib: string[];
|
435
190
|
filesExtensions: {
|
436
191
|
filetemplate: string;
|
437
|
-
styles: string[];
|
438
|
-
};
|
439
|
-
projectTypes: {
|
440
|
-
forNpmLibs: string[];
|
441
192
|
};
|
442
193
|
localLibs: string[];
|
443
194
|
helpAlias: string[];
|