tnp-config 13.1.50 → 13.1.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/esm2020/lib/config.mjs +375 -272
- package/browser/fesm2015/tnp-config.mjs +376 -248
- package/browser/fesm2020/tnp-config.mjs +374 -271
- package/browser/lib/config.d.ts +19 -167
- package/client/esm2020/lib/config.mjs +375 -272
- package/client/fesm2015/tnp-config.mjs +376 -248
- package/client/fesm2020/tnp-config.mjs +374 -271
- package/client/lib/config.d.ts +19 -167
- package/lib/config.js +95 -33
- package/package.json +3 -3
- package/tmp-environment.json +27 -27
- package/websql/esm2020/lib/config.mjs +375 -272
- package/websql/fesm2015/tnp-config.mjs +376 -248
- package/websql/fesm2020/tnp-config.mjs +374 -271
- package/websql/lib/config.d.ts +19 -167
package/websql/lib/config.d.ts
CHANGED
@@ -45,34 +45,16 @@ export declare namespace ConfigModels {
|
|
45
45
|
type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
|
46
46
|
type DatabaseType = 'better-sqlite3' | 'sqlite' | 'mysql';
|
47
47
|
}
|
48
|
-
export declare const GlobalLibTypeName: {
|
49
|
-
isomorphicLib: string;
|
50
|
-
angularLib: string;
|
51
|
-
electronClient: string;
|
52
|
-
ionicLib: string;
|
53
|
-
angularClient: string;
|
54
|
-
ionicClient: string;
|
55
|
-
workspace: string;
|
56
|
-
container: string;
|
57
|
-
docker: string;
|
58
|
-
unknowNpmProject: string;
|
59
|
-
vscodeExt: string;
|
60
|
-
chromeExt: string;
|
61
|
-
singleFileProject: string;
|
62
|
-
navi: string;
|
63
|
-
scenario: string;
|
64
|
-
};
|
48
|
+
export declare const GlobalLibTypeName: {};
|
65
49
|
export declare const LibTypeArr: ConfigModels.LibType[];
|
66
50
|
export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
|
67
51
|
export declare const config: {
|
68
52
|
packagesThat: {
|
69
|
-
areTrustedForPatchUpdate:
|
53
|
+
areTrustedForPatchUpdate: any[];
|
70
54
|
};
|
71
55
|
coreProjectVersions: string[];
|
72
|
-
quickFixes: {
|
73
|
-
|
74
|
-
};
|
75
|
-
packageJsonSplit: string[];
|
56
|
+
quickFixes: {};
|
57
|
+
packageJsonSplit: any[];
|
76
58
|
regexString: {
|
77
59
|
pathPartStringRegex: string;
|
78
60
|
};
|
@@ -83,18 +65,9 @@ export declare const config: {
|
|
83
65
|
isomorphicPackages: string;
|
84
66
|
};
|
85
67
|
defaultFrameworkVersion: ConfigModels.FrameworkVersion;
|
86
|
-
CONST: {
|
87
|
-
|
88
|
-
|
89
|
-
BACKEND_HTTP_REQUEST_TIMEOUT: number;
|
90
|
-
};
|
91
|
-
debug: {
|
92
|
-
sourceModifier: any[];
|
93
|
-
baselineSiteJoin: {
|
94
|
-
DEBUG_PATHES: any[];
|
95
|
-
DEBUG_MERGE_PATHES: any[];
|
96
|
-
};
|
97
|
-
};
|
68
|
+
CONST: {};
|
69
|
+
debug: {};
|
70
|
+
frameworkName: "firedev" | "tnp";
|
98
71
|
frameworkNames: {
|
99
72
|
tnp: string;
|
100
73
|
firedev: string;
|
@@ -102,56 +75,7 @@ export declare const config: {
|
|
102
75
|
startPort: number;
|
103
76
|
frameworks: ConfigModels.UIFramework[];
|
104
77
|
allowedEnvironments: ConfigModels.EnvironmentName[];
|
105
|
-
folder: {
|
106
|
-
bundle: string;
|
107
|
-
vendor: string;
|
108
|
-
docs: string;
|
109
|
-
dist: string;
|
110
|
-
tmp: string;
|
111
|
-
tmpBundleRelease: string;
|
112
|
-
tempSrc: string;
|
113
|
-
tempSrcDist: string;
|
114
|
-
previewDistApp: string;
|
115
|
-
preview: string;
|
116
|
-
browser: string;
|
117
|
-
websql: string;
|
118
|
-
_browser: string;
|
119
|
-
module: string;
|
120
|
-
backup: string;
|
121
|
-
node_modules: string;
|
122
|
-
client: string;
|
123
|
-
tnp_tests_context: string;
|
124
|
-
tmpPackage: string;
|
125
|
-
tmpScenarios: string;
|
126
|
-
tmpTestsEnvironments: string;
|
127
|
-
testsEnvironments: string;
|
128
|
-
scripts: string;
|
129
|
-
scenarios: string;
|
130
|
-
bower: string;
|
131
|
-
src: string;
|
132
|
-
out: string;
|
133
|
-
app: string;
|
134
|
-
lib: string;
|
135
|
-
libs: string;
|
136
|
-
source: string;
|
137
|
-
custom: string;
|
138
|
-
components: string;
|
139
|
-
assets: string;
|
140
|
-
apps: string;
|
141
|
-
workspace: string;
|
142
|
-
container: string;
|
143
|
-
bin: string;
|
144
|
-
_bin: string;
|
145
|
-
_vscode: string;
|
146
|
-
project: string;
|
147
|
-
external: string;
|
148
|
-
tmpDist: string;
|
149
|
-
tmpFor(d: ConfigModels.OutFolder): string;
|
150
|
-
targetProjects: {
|
151
|
-
DEFAULT_PATH_GENERATED: string;
|
152
|
-
DEFAULT_PATH_ORIGINS: string;
|
153
|
-
};
|
154
|
-
};
|
78
|
+
folder: {};
|
155
79
|
tempFolders: {
|
156
80
|
bundle: string;
|
157
81
|
vendor: string;
|
@@ -178,13 +102,6 @@ export declare const config: {
|
|
178
102
|
};
|
179
103
|
filesNotAllowedToClean: string[];
|
180
104
|
file: {
|
181
|
-
_gitignore: string;
|
182
|
-
_npmrc: string;
|
183
|
-
_npmignore: string;
|
184
|
-
tslint_json: string;
|
185
|
-
_editorconfig: string;
|
186
|
-
_angularCli_json: string;
|
187
|
-
_vscode_launch_json: string;
|
188
105
|
_bowerrc: string;
|
189
106
|
bower_json: string;
|
190
107
|
controllers_ts: string;
|
@@ -229,13 +146,7 @@ export declare const config: {
|
|
229
146
|
server_chain_cert: string;
|
230
147
|
meta_config_md: string;
|
231
148
|
};
|
232
|
-
default: {
|
233
|
-
cloud: {
|
234
|
-
environment: {
|
235
|
-
name: ConfigModels.EnvironmentName;
|
236
|
-
};
|
237
|
-
};
|
238
|
-
};
|
149
|
+
default: {};
|
239
150
|
SUBERIZED_PREFIX: string;
|
240
151
|
names: {
|
241
152
|
env: {};
|
@@ -243,83 +154,24 @@ export declare const config: {
|
|
243
154
|
defaultServer: string;
|
244
155
|
};
|
245
156
|
reservedArgumentsNamesUglify: string[];
|
246
|
-
extensions: {
|
247
|
-
/**
|
248
|
-
* Modify source: import,export, requires
|
249
|
-
*/
|
250
|
-
readonly modificableByReplaceFn: string[];
|
251
|
-
};
|
157
|
+
extensions: {};
|
252
158
|
notFiredevProjects: ConfigModels.LibType[];
|
253
159
|
/**
|
254
160
|
* Build allowed types
|
255
161
|
*/
|
256
|
-
allowedTypes: {
|
257
|
-
|
258
|
-
|
259
|
-
*/
|
260
|
-
app: ConfigModels.LibType[];
|
261
|
-
/**
|
262
|
-
* Projects for build:(dist|bundle):(watch) command
|
263
|
-
*/
|
264
|
-
libs: ConfigModels.LibType[];
|
265
|
-
};
|
266
|
-
moduleNameAngularLib: string[];
|
267
|
-
moduleNameIsomorphicLib: string[];
|
162
|
+
allowedTypes: {};
|
163
|
+
moduleNameAngularLib: any[];
|
164
|
+
moduleNameIsomorphicLib: any[];
|
268
165
|
filesExtensions: {
|
269
166
|
filetemplate: string;
|
270
|
-
styles:
|
271
|
-
};
|
272
|
-
projectTypes: {
|
273
|
-
forNpmLibs: string[];
|
274
|
-
with: {
|
275
|
-
angularAsCore: string[];
|
276
|
-
componetsAsSrc: string[];
|
277
|
-
};
|
167
|
+
styles: any[];
|
278
168
|
};
|
279
|
-
|
169
|
+
projectTypes: {};
|
170
|
+
localLibs: any[];
|
280
171
|
helpAlias: string[];
|
281
172
|
required: {
|
282
|
-
npm:
|
283
|
-
|
284
|
-
|
285
|
-
installName?: undefined;
|
286
|
-
} | {
|
287
|
-
name: string;
|
288
|
-
version: string;
|
289
|
-
installName: string;
|
290
|
-
} | {
|
291
|
-
name: string;
|
292
|
-
version?: undefined;
|
293
|
-
installName?: undefined;
|
294
|
-
} | {
|
295
|
-
name: string;
|
296
|
-
installName: string;
|
297
|
-
version?: undefined;
|
298
|
-
})[];
|
299
|
-
niceTools: ({
|
300
|
-
name: string;
|
301
|
-
platform?: undefined;
|
302
|
-
installName?: undefined;
|
303
|
-
isNotCli?: undefined;
|
304
|
-
} | {
|
305
|
-
name: string;
|
306
|
-
platform: string;
|
307
|
-
installName?: undefined;
|
308
|
-
isNotCli?: undefined;
|
309
|
-
} | {
|
310
|
-
name: string;
|
311
|
-
installName: string;
|
312
|
-
platform?: undefined;
|
313
|
-
isNotCli?: undefined;
|
314
|
-
} | {
|
315
|
-
name: string;
|
316
|
-
isNotCli: boolean;
|
317
|
-
platform?: undefined;
|
318
|
-
installName?: undefined;
|
319
|
-
})[];
|
320
|
-
programs: {
|
321
|
-
name: string;
|
322
|
-
website: string;
|
323
|
-
}[];
|
173
|
+
npm: any[];
|
174
|
+
niceTools: any[];
|
175
|
+
programs: any[];
|
324
176
|
};
|
325
177
|
};
|