tnp-config 13.1.50 → 13.1.51
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 +443 -338
- package/browser/fesm2015/tnp-config.mjs +446 -271
- package/browser/fesm2020/tnp-config.mjs +442 -337
- package/browser/lib/config.d.ts +21 -236
- package/client/esm2020/lib/config.mjs +443 -338
- package/client/fesm2015/tnp-config.mjs +446 -271
- package/client/fesm2020/tnp-config.mjs +442 -337
- package/client/lib/config.d.ts +21 -236
- package/lib/config.js +102 -34
- package/package.json +3 -3
- package/tmp-environment.json +27 -27
- package/websql/esm2020/lib/config.mjs +443 -338
- package/websql/fesm2015/tnp-config.mjs +446 -271
- package/websql/fesm2020/tnp-config.mjs +442 -337
- package/websql/lib/config.d.ts +21 -236
package/browser/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,140 +75,11 @@ export declare const config: {
|
|
102
75
|
startPort: number;
|
103
76
|
frameworks: ConfigModels.UIFramework[];
|
104
77
|
allowedEnvironments: ConfigModels.EnvironmentName[];
|
105
|
-
folder: {
|
106
|
-
|
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
|
-
};
|
155
|
-
tempFolders: {
|
156
|
-
bundle: string;
|
157
|
-
vendor: string;
|
158
|
-
docs: string;
|
159
|
-
dist: string;
|
160
|
-
tmp: string;
|
161
|
-
tmpBundleRelease: string;
|
162
|
-
tempSrc: string;
|
163
|
-
tempSrcDist: string;
|
164
|
-
previewDistApp: string;
|
165
|
-
preview: string;
|
166
|
-
browser: string;
|
167
|
-
websql: string;
|
168
|
-
_browser: string;
|
169
|
-
module: string;
|
170
|
-
backup: string;
|
171
|
-
node_modules: string;
|
172
|
-
client: string;
|
173
|
-
tnp_tests_context: string;
|
174
|
-
tmpPackage: string;
|
175
|
-
tmpScenarios: string;
|
176
|
-
tmpTestsEnvironments: string;
|
177
|
-
testsEnvironments: string;
|
178
|
-
};
|
78
|
+
folder: {};
|
79
|
+
tempFolders: {};
|
179
80
|
filesNotAllowedToClean: string[];
|
180
|
-
file: {
|
181
|
-
|
182
|
-
_npmrc: string;
|
183
|
-
_npmignore: string;
|
184
|
-
tslint_json: string;
|
185
|
-
_editorconfig: string;
|
186
|
-
_angularCli_json: string;
|
187
|
-
_vscode_launch_json: string;
|
188
|
-
_bowerrc: string;
|
189
|
-
bower_json: string;
|
190
|
-
controllers_ts: string;
|
191
|
-
entities_ts: string;
|
192
|
-
angular_json: string;
|
193
|
-
autob_actions_js: string;
|
194
|
-
local_config_js: string;
|
195
|
-
build_config_js: string;
|
196
|
-
local_config: string;
|
197
|
-
start_backend_ts: string;
|
198
|
-
package_json: string;
|
199
|
-
result_packages_json: string;
|
200
|
-
package_json5: string;
|
201
|
-
package_json__tnp_json: string;
|
202
|
-
package_json__tnp_json5: string;
|
203
|
-
package_json__devDependencies_json: string;
|
204
|
-
yarn_lock: string;
|
205
|
-
package_lock_json: string;
|
206
|
-
tnpEnvironment_json: string;
|
207
|
-
environment: string;
|
208
|
-
environment_js: string;
|
209
|
-
tmp_transaction_pid_txt: string;
|
210
|
-
manifest_webmanifest: string;
|
211
|
-
public_api_d_ts: string;
|
212
|
-
public_api_ts: string;
|
213
|
-
public_api: string;
|
214
|
-
_babelrc: string;
|
215
|
-
index: string;
|
216
|
-
index_d_ts: string;
|
217
|
-
index_ts: string;
|
218
|
-
index_js: string;
|
219
|
-
index_js_map: string;
|
220
|
-
db_json: string;
|
221
|
-
db_for_tests_json: string;
|
222
|
-
tmpDockerImageId: string;
|
223
|
-
tmp_recent_json: string;
|
224
|
-
tmpIsomorphicPackagesJson: string;
|
225
|
-
tsconfig_json: string;
|
226
|
-
README_MD: string;
|
227
|
-
server_key: string;
|
228
|
-
server_cert: string;
|
229
|
-
server_chain_cert: string;
|
230
|
-
meta_config_md: string;
|
231
|
-
};
|
232
|
-
default: {
|
233
|
-
cloud: {
|
234
|
-
environment: {
|
235
|
-
name: ConfigModels.EnvironmentName;
|
236
|
-
};
|
237
|
-
};
|
238
|
-
};
|
81
|
+
file: {};
|
82
|
+
default: {};
|
239
83
|
SUBERIZED_PREFIX: string;
|
240
84
|
names: {
|
241
85
|
env: {};
|
@@ -243,83 +87,24 @@ export declare const config: {
|
|
243
87
|
defaultServer: string;
|
244
88
|
};
|
245
89
|
reservedArgumentsNamesUglify: string[];
|
246
|
-
extensions: {
|
247
|
-
/**
|
248
|
-
* Modify source: import,export, requires
|
249
|
-
*/
|
250
|
-
readonly modificableByReplaceFn: string[];
|
251
|
-
};
|
90
|
+
extensions: {};
|
252
91
|
notFiredevProjects: ConfigModels.LibType[];
|
253
92
|
/**
|
254
93
|
* Build allowed types
|
255
94
|
*/
|
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[];
|
95
|
+
allowedTypes: {};
|
96
|
+
moduleNameAngularLib: any[];
|
97
|
+
moduleNameIsomorphicLib: any[];
|
268
98
|
filesExtensions: {
|
269
99
|
filetemplate: string;
|
270
|
-
styles:
|
271
|
-
};
|
272
|
-
projectTypes: {
|
273
|
-
forNpmLibs: string[];
|
274
|
-
with: {
|
275
|
-
angularAsCore: string[];
|
276
|
-
componetsAsSrc: string[];
|
277
|
-
};
|
100
|
+
styles: any[];
|
278
101
|
};
|
279
|
-
|
102
|
+
projectTypes: {};
|
103
|
+
localLibs: any[];
|
280
104
|
helpAlias: string[];
|
281
105
|
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
|
-
}[];
|
106
|
+
npm: any[];
|
107
|
+
niceTools: any[];
|
108
|
+
programs: any[];
|
324
109
|
};
|
325
110
|
};
|