tnp-config 13.1.51 → 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 +67 -69
- package/browser/fesm2015/tnp-config.mjs +23 -70
- package/browser/fesm2020/tnp-config.mjs +66 -68
- package/browser/lib/config.d.ts +69 -2
- package/client/esm2020/lib/config.mjs +67 -69
- package/client/fesm2015/tnp-config.mjs +23 -70
- package/client/fesm2020/tnp-config.mjs +66 -68
- package/client/lib/config.d.ts +69 -2
- package/lib/config.js +1 -7
- package/package.json +2 -2
- package/tmp-environment.json +8 -8
- package/websql/esm2020/lib/config.mjs +67 -69
- package/websql/fesm2015/tnp-config.mjs +23 -70
- package/websql/fesm2020/tnp-config.mjs +66 -68
- package/websql/lib/config.d.ts +69 -2
package/websql/lib/config.d.ts
CHANGED
@@ -76,9 +76,76 @@ export declare const config: {
|
|
76
76
|
frameworks: ConfigModels.UIFramework[];
|
77
77
|
allowedEnvironments: ConfigModels.EnvironmentName[];
|
78
78
|
folder: {};
|
79
|
-
tempFolders: {
|
79
|
+
tempFolders: {
|
80
|
+
bundle: string;
|
81
|
+
vendor: string;
|
82
|
+
docs: string;
|
83
|
+
dist: string;
|
84
|
+
tmp: string;
|
85
|
+
tmpBundleRelease: string;
|
86
|
+
tempSrc: string;
|
87
|
+
tempSrcDist: string;
|
88
|
+
previewDistApp: string;
|
89
|
+
preview: string;
|
90
|
+
browser: string;
|
91
|
+
websql: string;
|
92
|
+
_browser: string;
|
93
|
+
module: string;
|
94
|
+
backup: string;
|
95
|
+
node_modules: string;
|
96
|
+
client: string;
|
97
|
+
tnp_tests_context: string;
|
98
|
+
tmpPackage: string;
|
99
|
+
tmpScenarios: string;
|
100
|
+
tmpTestsEnvironments: string;
|
101
|
+
testsEnvironments: string;
|
102
|
+
};
|
80
103
|
filesNotAllowedToClean: string[];
|
81
|
-
file: {
|
104
|
+
file: {
|
105
|
+
_bowerrc: string;
|
106
|
+
bower_json: string;
|
107
|
+
controllers_ts: string;
|
108
|
+
entities_ts: string;
|
109
|
+
angular_json: string;
|
110
|
+
autob_actions_js: string;
|
111
|
+
local_config_js: string;
|
112
|
+
build_config_js: string;
|
113
|
+
local_config: string;
|
114
|
+
start_backend_ts: string;
|
115
|
+
package_json: string;
|
116
|
+
result_packages_json: string;
|
117
|
+
package_json5: string;
|
118
|
+
package_json__tnp_json: string;
|
119
|
+
package_json__tnp_json5: string;
|
120
|
+
package_json__devDependencies_json: string;
|
121
|
+
yarn_lock: string;
|
122
|
+
package_lock_json: string;
|
123
|
+
tnpEnvironment_json: string;
|
124
|
+
environment: string;
|
125
|
+
environment_js: string;
|
126
|
+
tmp_transaction_pid_txt: string;
|
127
|
+
manifest_webmanifest: string;
|
128
|
+
public_api_d_ts: string;
|
129
|
+
public_api_ts: string;
|
130
|
+
public_api: string;
|
131
|
+
_babelrc: string;
|
132
|
+
index: string;
|
133
|
+
index_d_ts: string;
|
134
|
+
index_ts: string;
|
135
|
+
index_js: string;
|
136
|
+
index_js_map: string;
|
137
|
+
db_json: string;
|
138
|
+
db_for_tests_json: string;
|
139
|
+
tmpDockerImageId: string;
|
140
|
+
tmp_recent_json: string;
|
141
|
+
tmpIsomorphicPackagesJson: string;
|
142
|
+
tsconfig_json: string;
|
143
|
+
README_MD: string;
|
144
|
+
server_key: string;
|
145
|
+
server_cert: string;
|
146
|
+
server_chain_cert: string;
|
147
|
+
meta_config_md: string;
|
148
|
+
};
|
82
149
|
default: {};
|
83
150
|
SUBERIZED_PREFIX: string;
|
84
151
|
names: {
|