tnp-config 13.1.64 → 13.1.65
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/app.d.ts +2 -2
- package/browser/README.md +24 -24
- package/browser/esm2020/lib/config.mjs +767 -767
- 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 +687 -687
- package/browser/fesm2020/tnp-config.mjs +760 -760
- 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 +767 -767
- 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 +687 -687
- package/client/fesm2020/tnp-config.mjs +760 -760
- package/client/lib/config.d.ts +227 -227
- package/client/tnp-config.d.ts +4 -4
- package/index.d.ts +1 -1
- package/lib/config.d.ts +436 -436
- package/lib/index.d.ts +1 -1
- package/package.json +2 -2
- package/package.json_devDependencies.json +218 -218
- package/package.json_tnp.json5 +35 -35
- package/tmp-environment.json +7 -7
- package/websql/README.md +24 -24
- package/websql/esm2020/lib/config.mjs +767 -767
- 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 +687 -687
- package/websql/fesm2020/tnp-config.mjs +760 -760
- package/websql/lib/config.d.ts +227 -227
- package/websql/tnp-config.d.ts +4 -4
package/client/lib/config.d.ts
CHANGED
@@ -1,229 +1,229 @@
|
|
1
1
|
// @ts-nocheck
|
2
|
-
/**
|
3
|
-
* Dariusz Filipiak
|
4
|
-
* @author darekf77@gmail.com
|
5
|
-
* Recommended config for all isomorphic libs *
|
6
|
-
*/
|
7
|
-
export { CoreHelpers as Helpers } from 'tnp-core/browser';
|
8
|
-
export declare namespace ConfigModels {
|
9
|
-
type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
10
|
-
type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
11
|
-
type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
|
12
|
-
type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
13
|
-
type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
14
|
-
type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
15
|
-
type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
16
|
-
type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
17
|
-
type TsUsage = 'import' | 'export';
|
18
|
-
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';
|
19
|
-
type NewFactoryType = LibType | 'model' | 'single-file-project';
|
20
|
-
type CoreLibCategory = LibType | 'common';
|
21
|
-
interface Position {
|
22
|
-
x: number;
|
23
|
-
y: number;
|
24
|
-
}
|
25
|
-
interface Size {
|
26
|
-
w: number;
|
27
|
-
h: number;
|
28
|
-
}
|
29
|
-
interface GlobalNpmDependency {
|
30
|
-
name: string;
|
31
|
-
installName?: string;
|
32
|
-
version?: string | number;
|
33
|
-
}
|
34
|
-
interface GlobalCommandLineProgramDependency {
|
35
|
-
name: string;
|
36
|
-
website: string;
|
37
|
-
version?: string;
|
38
|
-
}
|
39
|
-
interface GlobalDependencies {
|
40
|
-
npm?: GlobalNpmDependency[];
|
41
|
-
programs?: GlobalCommandLineProgramDependency[];
|
42
|
-
}
|
43
|
-
type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
44
|
-
type OutFolder = 'dist' | 'bundle' | 'browser';
|
45
|
-
type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
|
46
|
-
type DatabaseType = 'better-sqlite3' | 'mysql';
|
47
|
-
}
|
48
|
-
export declare const GlobalLibTypeName: {};
|
49
|
-
export declare const LibTypeArr: ConfigModels.LibType[];
|
50
|
-
export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
|
51
|
-
export declare const config: {
|
52
|
-
packagesThat: {
|
53
|
-
areTrustedForPatchUpdate: any[];
|
54
|
-
};
|
55
|
-
coreProjectVersions: string[];
|
56
|
-
quickFixes: {};
|
57
|
-
packageJsonSplit: any[];
|
58
|
-
regexString: {
|
59
|
-
pathPartStringRegex: string;
|
60
|
-
};
|
61
|
-
placeholders: {
|
62
|
-
forProjectsInEnvironmentFile: string;
|
63
|
-
};
|
64
|
-
array: {
|
65
|
-
isomorphicPackages: string;
|
66
|
-
};
|
67
|
-
defaultFrameworkVersion: ConfigModels.FrameworkVersion;
|
68
|
-
CONST: {};
|
69
|
-
debug: {};
|
70
|
-
frameworkName: "firedev" | "tnp";
|
71
|
-
frameworkNames: {
|
72
|
-
tnp: string;
|
73
|
-
firedev: string;
|
74
|
-
};
|
75
|
-
startPort: number;
|
76
|
-
frameworks: ConfigModels.UIFramework[];
|
77
|
-
allowedEnvironments: ConfigModels.EnvironmentName[];
|
78
|
-
folder: {
|
79
|
-
bundle: string;
|
80
|
-
vendor: string;
|
81
|
-
docs: string;
|
82
|
-
dist: string;
|
83
|
-
tmp: string;
|
84
|
-
tmpBundleRelease: string;
|
85
|
-
tempSrc: string;
|
86
|
-
tempSrcDist: string;
|
87
|
-
previewDistApp: string;
|
88
|
-
preview: string;
|
89
|
-
browser: string;
|
90
|
-
websql: string;
|
91
|
-
_browser: string;
|
92
|
-
module: string;
|
93
|
-
backup: string;
|
94
|
-
node_modules: string;
|
95
|
-
client: string;
|
96
|
-
tnp_tests_context: string;
|
97
|
-
tmpPackage: string;
|
98
|
-
tmpScenarios: string;
|
99
|
-
tmpTestsEnvironments: string;
|
100
|
-
testsEnvironments: string;
|
101
|
-
scripts: string;
|
102
|
-
scenarios: string;
|
103
|
-
bower: string;
|
104
|
-
src: string;
|
105
|
-
out: string;
|
106
|
-
app: string;
|
107
|
-
lib: string;
|
108
|
-
libs: string;
|
109
|
-
source: string;
|
110
|
-
custom: string;
|
111
|
-
components: string;
|
112
|
-
assets: string;
|
113
|
-
generated: string;
|
114
|
-
apps: string;
|
115
|
-
workspace: string;
|
116
|
-
container: string;
|
117
|
-
bin: string;
|
118
|
-
_bin: string;
|
119
|
-
_vscode: string;
|
120
|
-
project: string;
|
121
|
-
external: string;
|
122
|
-
tmpDist: string;
|
123
|
-
tmpFor(d: ConfigModels.OutFolder): string;
|
124
|
-
targetProjects: {
|
125
|
-
DEFAULT_PATH_GENERATED: string;
|
126
|
-
DEFAULT_PATH_ORIGINS: string;
|
127
|
-
};
|
128
|
-
};
|
129
|
-
tempFolders: {
|
130
|
-
bundle: string;
|
131
|
-
vendor: string;
|
132
|
-
docs: string;
|
133
|
-
dist: string;
|
134
|
-
tmp: string;
|
135
|
-
tmpBundleRelease: string;
|
136
|
-
tempSrc: string;
|
137
|
-
tempSrcDist: string;
|
138
|
-
previewDistApp: string;
|
139
|
-
preview: string;
|
140
|
-
browser: string;
|
141
|
-
websql: string;
|
142
|
-
_browser: string;
|
143
|
-
module: string;
|
144
|
-
backup: string;
|
145
|
-
node_modules: string;
|
146
|
-
client: string;
|
147
|
-
tnp_tests_context: string;
|
148
|
-
tmpPackage: string;
|
149
|
-
tmpScenarios: string;
|
150
|
-
tmpTestsEnvironments: string;
|
151
|
-
testsEnvironments: string;
|
152
|
-
};
|
153
|
-
filesNotAllowedToClean: string[];
|
154
|
-
file: {
|
155
|
-
_bowerrc: string;
|
156
|
-
bower_json: string;
|
157
|
-
controllers_ts: string;
|
158
|
-
entities_ts: string;
|
159
|
-
angular_json: string;
|
160
|
-
autob_actions_js: string;
|
161
|
-
local_config_js: string;
|
162
|
-
build_config_js: string;
|
163
|
-
local_config: string;
|
164
|
-
start_backend_ts: string;
|
165
|
-
package_json: string;
|
166
|
-
result_packages_json: string;
|
167
|
-
package_json5: string;
|
168
|
-
package_json__tnp_json: string;
|
169
|
-
package_json__tnp_json5: string;
|
170
|
-
package_json__devDependencies_json: string;
|
171
|
-
yarn_lock: string;
|
172
|
-
package_lock_json: string;
|
173
|
-
tnpEnvironment_json: string;
|
174
|
-
environment: string;
|
175
|
-
environment_js: string;
|
176
|
-
tmp_transaction_pid_txt: string;
|
177
|
-
manifest_webmanifest: string;
|
178
|
-
public_api_d_ts: string;
|
179
|
-
public_api_ts: string;
|
180
|
-
public_api: string;
|
181
|
-
_babelrc: string;
|
182
|
-
index: string;
|
183
|
-
index_d_ts: string;
|
184
|
-
index_ts: string;
|
185
|
-
index_js: string;
|
186
|
-
index_js_map: string;
|
187
|
-
db_json: string;
|
188
|
-
db_for_tests_json: string;
|
189
|
-
tmpDockerImageId: string;
|
190
|
-
tmp_recent_json: string;
|
191
|
-
tmpIsomorphicPackagesJson: string;
|
192
|
-
tsconfig_json: string;
|
193
|
-
README_MD: string;
|
194
|
-
server_key: string;
|
195
|
-
server_cert: string;
|
196
|
-
server_chain_cert: string;
|
197
|
-
meta_config_md: string;
|
198
|
-
logo_png: string;
|
199
|
-
logo_svg: string;
|
200
|
-
};
|
201
|
-
default: {};
|
202
|
-
SUBERIZED_PREFIX: string;
|
203
|
-
names: {
|
204
|
-
env: {};
|
205
|
-
baseline: string;
|
206
|
-
defaultServer: string;
|
207
|
-
};
|
208
|
-
reservedArgumentsNamesUglify: string[];
|
209
|
-
extensions: {};
|
210
|
-
notFiredevProjects: ConfigModels.LibType[];
|
211
|
-
/**
|
212
|
-
* Build allowed types
|
213
|
-
*/
|
214
|
-
allowedTypes: {};
|
215
|
-
moduleNameAngularLib: any[];
|
216
|
-
moduleNameIsomorphicLib: any[];
|
217
|
-
filesExtensions: {
|
218
|
-
filetemplate: string;
|
219
|
-
styles: any[];
|
220
|
-
};
|
221
|
-
projectTypes: {};
|
222
|
-
localLibs: any[];
|
223
|
-
helpAlias: string[];
|
224
|
-
required: {
|
225
|
-
npm: any[];
|
226
|
-
niceTools: any[];
|
227
|
-
programs: any[];
|
228
|
-
};
|
2
|
+
/**
|
3
|
+
* Dariusz Filipiak
|
4
|
+
* @author darekf77@gmail.com
|
5
|
+
* Recommended config for all isomorphic libs *
|
6
|
+
*/
|
7
|
+
export { CoreHelpers as Helpers } from 'tnp-core/browser';
|
8
|
+
export declare namespace ConfigModels {
|
9
|
+
type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
10
|
+
type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
11
|
+
type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
|
12
|
+
type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
13
|
+
type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
14
|
+
type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
15
|
+
type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
16
|
+
type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
17
|
+
type TsUsage = 'import' | 'export';
|
18
|
+
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';
|
19
|
+
type NewFactoryType = LibType | 'model' | 'single-file-project';
|
20
|
+
type CoreLibCategory = LibType | 'common';
|
21
|
+
interface Position {
|
22
|
+
x: number;
|
23
|
+
y: number;
|
24
|
+
}
|
25
|
+
interface Size {
|
26
|
+
w: number;
|
27
|
+
h: number;
|
28
|
+
}
|
29
|
+
interface GlobalNpmDependency {
|
30
|
+
name: string;
|
31
|
+
installName?: string;
|
32
|
+
version?: string | number;
|
33
|
+
}
|
34
|
+
interface GlobalCommandLineProgramDependency {
|
35
|
+
name: string;
|
36
|
+
website: string;
|
37
|
+
version?: string;
|
38
|
+
}
|
39
|
+
interface GlobalDependencies {
|
40
|
+
npm?: GlobalNpmDependency[];
|
41
|
+
programs?: GlobalCommandLineProgramDependency[];
|
42
|
+
}
|
43
|
+
type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
44
|
+
type OutFolder = 'dist' | 'bundle' | 'browser';
|
45
|
+
type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
|
46
|
+
type DatabaseType = 'better-sqlite3' | 'mysql';
|
47
|
+
}
|
48
|
+
export declare const GlobalLibTypeName: {};
|
49
|
+
export declare const LibTypeArr: ConfigModels.LibType[];
|
50
|
+
export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
|
51
|
+
export declare const config: {
|
52
|
+
packagesThat: {
|
53
|
+
areTrustedForPatchUpdate: any[];
|
54
|
+
};
|
55
|
+
coreProjectVersions: string[];
|
56
|
+
quickFixes: {};
|
57
|
+
packageJsonSplit: any[];
|
58
|
+
regexString: {
|
59
|
+
pathPartStringRegex: string;
|
60
|
+
};
|
61
|
+
placeholders: {
|
62
|
+
forProjectsInEnvironmentFile: string;
|
63
|
+
};
|
64
|
+
array: {
|
65
|
+
isomorphicPackages: string;
|
66
|
+
};
|
67
|
+
defaultFrameworkVersion: ConfigModels.FrameworkVersion;
|
68
|
+
CONST: {};
|
69
|
+
debug: {};
|
70
|
+
frameworkName: "firedev" | "tnp";
|
71
|
+
frameworkNames: {
|
72
|
+
tnp: string;
|
73
|
+
firedev: string;
|
74
|
+
};
|
75
|
+
startPort: number;
|
76
|
+
frameworks: ConfigModels.UIFramework[];
|
77
|
+
allowedEnvironments: ConfigModels.EnvironmentName[];
|
78
|
+
folder: {
|
79
|
+
bundle: string;
|
80
|
+
vendor: string;
|
81
|
+
docs: string;
|
82
|
+
dist: string;
|
83
|
+
tmp: string;
|
84
|
+
tmpBundleRelease: string;
|
85
|
+
tempSrc: string;
|
86
|
+
tempSrcDist: string;
|
87
|
+
previewDistApp: string;
|
88
|
+
preview: string;
|
89
|
+
browser: string;
|
90
|
+
websql: string;
|
91
|
+
_browser: string;
|
92
|
+
module: string;
|
93
|
+
backup: string;
|
94
|
+
node_modules: string;
|
95
|
+
client: string;
|
96
|
+
tnp_tests_context: string;
|
97
|
+
tmpPackage: string;
|
98
|
+
tmpScenarios: string;
|
99
|
+
tmpTestsEnvironments: string;
|
100
|
+
testsEnvironments: string;
|
101
|
+
scripts: string;
|
102
|
+
scenarios: string;
|
103
|
+
bower: string;
|
104
|
+
src: string;
|
105
|
+
out: string;
|
106
|
+
app: string;
|
107
|
+
lib: string;
|
108
|
+
libs: string;
|
109
|
+
source: string;
|
110
|
+
custom: string;
|
111
|
+
components: string;
|
112
|
+
assets: string;
|
113
|
+
generated: string;
|
114
|
+
apps: string;
|
115
|
+
workspace: string;
|
116
|
+
container: string;
|
117
|
+
bin: string;
|
118
|
+
_bin: string;
|
119
|
+
_vscode: string;
|
120
|
+
project: string;
|
121
|
+
external: string;
|
122
|
+
tmpDist: string;
|
123
|
+
tmpFor(d: ConfigModels.OutFolder): string;
|
124
|
+
targetProjects: {
|
125
|
+
DEFAULT_PATH_GENERATED: string;
|
126
|
+
DEFAULT_PATH_ORIGINS: string;
|
127
|
+
};
|
128
|
+
};
|
129
|
+
tempFolders: {
|
130
|
+
bundle: string;
|
131
|
+
vendor: string;
|
132
|
+
docs: string;
|
133
|
+
dist: string;
|
134
|
+
tmp: string;
|
135
|
+
tmpBundleRelease: string;
|
136
|
+
tempSrc: string;
|
137
|
+
tempSrcDist: string;
|
138
|
+
previewDistApp: string;
|
139
|
+
preview: string;
|
140
|
+
browser: string;
|
141
|
+
websql: string;
|
142
|
+
_browser: string;
|
143
|
+
module: string;
|
144
|
+
backup: string;
|
145
|
+
node_modules: string;
|
146
|
+
client: string;
|
147
|
+
tnp_tests_context: string;
|
148
|
+
tmpPackage: string;
|
149
|
+
tmpScenarios: string;
|
150
|
+
tmpTestsEnvironments: string;
|
151
|
+
testsEnvironments: string;
|
152
|
+
};
|
153
|
+
filesNotAllowedToClean: string[];
|
154
|
+
file: {
|
155
|
+
_bowerrc: string;
|
156
|
+
bower_json: string;
|
157
|
+
controllers_ts: string;
|
158
|
+
entities_ts: string;
|
159
|
+
angular_json: string;
|
160
|
+
autob_actions_js: string;
|
161
|
+
local_config_js: string;
|
162
|
+
build_config_js: string;
|
163
|
+
local_config: string;
|
164
|
+
start_backend_ts: string;
|
165
|
+
package_json: string;
|
166
|
+
result_packages_json: string;
|
167
|
+
package_json5: string;
|
168
|
+
package_json__tnp_json: string;
|
169
|
+
package_json__tnp_json5: string;
|
170
|
+
package_json__devDependencies_json: string;
|
171
|
+
yarn_lock: string;
|
172
|
+
package_lock_json: string;
|
173
|
+
tnpEnvironment_json: string;
|
174
|
+
environment: string;
|
175
|
+
environment_js: string;
|
176
|
+
tmp_transaction_pid_txt: string;
|
177
|
+
manifest_webmanifest: string;
|
178
|
+
public_api_d_ts: string;
|
179
|
+
public_api_ts: string;
|
180
|
+
public_api: string;
|
181
|
+
_babelrc: string;
|
182
|
+
index: string;
|
183
|
+
index_d_ts: string;
|
184
|
+
index_ts: string;
|
185
|
+
index_js: string;
|
186
|
+
index_js_map: string;
|
187
|
+
db_json: string;
|
188
|
+
db_for_tests_json: string;
|
189
|
+
tmpDockerImageId: string;
|
190
|
+
tmp_recent_json: string;
|
191
|
+
tmpIsomorphicPackagesJson: string;
|
192
|
+
tsconfig_json: string;
|
193
|
+
README_MD: string;
|
194
|
+
server_key: string;
|
195
|
+
server_cert: string;
|
196
|
+
server_chain_cert: string;
|
197
|
+
meta_config_md: string;
|
198
|
+
logo_png: string;
|
199
|
+
logo_svg: string;
|
200
|
+
};
|
201
|
+
default: {};
|
202
|
+
SUBERIZED_PREFIX: string;
|
203
|
+
names: {
|
204
|
+
env: {};
|
205
|
+
baseline: string;
|
206
|
+
defaultServer: string;
|
207
|
+
};
|
208
|
+
reservedArgumentsNamesUglify: string[];
|
209
|
+
extensions: {};
|
210
|
+
notFiredevProjects: ConfigModels.LibType[];
|
211
|
+
/**
|
212
|
+
* Build allowed types
|
213
|
+
*/
|
214
|
+
allowedTypes: {};
|
215
|
+
moduleNameAngularLib: any[];
|
216
|
+
moduleNameIsomorphicLib: any[];
|
217
|
+
filesExtensions: {
|
218
|
+
filetemplate: string;
|
219
|
+
styles: any[];
|
220
|
+
};
|
221
|
+
projectTypes: {};
|
222
|
+
localLibs: any[];
|
223
|
+
helpAlias: string[];
|
224
|
+
required: {
|
225
|
+
npm: any[];
|
226
|
+
niceTools: any[];
|
227
|
+
programs: any[];
|
228
|
+
};
|
229
229
|
};
|
package/client/tnp-config.d.ts
CHANGED
package/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from './lib';
|
1
|
+
export * from './lib';
|