tnp-config 13.1.72 → 13.1.73

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.
Files changed (37) hide show
  1. package/README.md +17 -17
  2. package/assets/shared/shared_folder_info.txt +1 -1
  3. package/browser/README.md +24 -24
  4. package/browser/esm2020/lib/config.mjs +770 -770
  5. package/browser/esm2020/lib/index.mjs +3 -3
  6. package/browser/esm2020/public-api.mjs +1 -1
  7. package/browser/esm2020/tnp-config.mjs +4 -4
  8. package/browser/fesm2015/tnp-config.mjs +689 -689
  9. package/browser/fesm2020/tnp-config.mjs +763 -763
  10. package/browser/lib/config.d.ts +228 -228
  11. package/browser/tnp-config.d.ts +4 -4
  12. package/client/README.md +24 -24
  13. package/client/esm2020/lib/config.mjs +770 -770
  14. package/client/esm2020/lib/index.mjs +3 -3
  15. package/client/esm2020/public-api.mjs +1 -1
  16. package/client/esm2020/tnp-config.mjs +4 -4
  17. package/client/fesm2015/tnp-config.mjs +689 -689
  18. package/client/fesm2020/tnp-config.mjs +763 -763
  19. package/client/lib/config.d.ts +228 -228
  20. package/client/package.json +6 -6
  21. package/client/tnp-config.d.ts +4 -4
  22. package/index.d.ts +1 -1
  23. package/lib/config.d.ts +438 -438
  24. package/lib/index.d.ts +1 -1
  25. package/package.json +3 -3
  26. package/package.json_devDependencies.json +218 -218
  27. package/package.json_tnp.json5 +35 -35
  28. package/tmp-environment.json +9 -9
  29. package/websql/README.md +24 -24
  30. package/websql/esm2020/lib/config.mjs +770 -770
  31. package/websql/esm2020/lib/index.mjs +3 -3
  32. package/websql/esm2020/public-api.mjs +1 -1
  33. package/websql/esm2020/tnp-config.mjs +4 -4
  34. package/websql/fesm2015/tnp-config.mjs +689 -689
  35. package/websql/fesm2020/tnp-config.mjs +763 -763
  36. package/websql/lib/config.d.ts +228 -228
  37. package/websql/tnp-config.d.ts +4 -4
@@ -1,230 +1,230 @@
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
- shared: string;
116
- workspace: string;
117
- container: string;
118
- bin: string;
119
- _bin: string;
120
- _vscode: string;
121
- project: string;
122
- external: string;
123
- tmpDist: string;
124
- tmpFor(d: ConfigModels.OutFolder): string;
125
- targetProjects: {
126
- DEFAULT_PATH_GENERATED: string;
127
- DEFAULT_PATH_ORIGINS: string;
128
- };
129
- };
130
- tempFolders: {
131
- bundle: string;
132
- vendor: string;
133
- docs: string;
134
- dist: string;
135
- tmp: string;
136
- tmpBundleRelease: string;
137
- tempSrc: string;
138
- tempSrcDist: string;
139
- previewDistApp: string;
140
- preview: string;
141
- browser: string;
142
- websql: string;
143
- _browser: string;
144
- module: string;
145
- backup: string;
146
- node_modules: string;
147
- client: string;
148
- tnp_tests_context: string;
149
- tmpPackage: string;
150
- tmpScenarios: string;
151
- tmpTestsEnvironments: string;
152
- testsEnvironments: string;
153
- };
154
- filesNotAllowedToClean: string[];
155
- file: {
156
- _bowerrc: string;
157
- bower_json: string;
158
- controllers_ts: string;
159
- entities_ts: string;
160
- angular_json: string;
161
- autob_actions_js: string;
162
- local_config_js: string;
163
- build_config_js: string;
164
- local_config: string;
165
- start_backend_ts: string;
166
- package_json: string;
167
- result_packages_json: string;
168
- package_json5: string;
169
- package_json__tnp_json: string;
170
- package_json__tnp_json5: string;
171
- package_json__devDependencies_json: string;
172
- yarn_lock: string;
173
- package_lock_json: string;
174
- tnpEnvironment_json: string;
175
- environment: string;
176
- environment_js: string;
177
- tmp_transaction_pid_txt: string;
178
- manifest_webmanifest: string;
179
- public_api_d_ts: string;
180
- public_api_ts: string;
181
- public_api: string;
182
- _babelrc: string;
183
- index: string;
184
- index_d_ts: string;
185
- index_ts: string;
186
- index_js: string;
187
- index_js_map: string;
188
- db_json: string;
189
- db_for_tests_json: string;
190
- tmpDockerImageId: string;
191
- tmp_recent_json: string;
192
- tmpIsomorphicPackagesJson: string;
193
- tsconfig_json: string;
194
- README_MD: string;
195
- server_key: string;
196
- server_cert: string;
197
- server_chain_cert: string;
198
- meta_config_md: string;
199
- logo_png: string;
200
- logo_svg: string;
201
- };
202
- default: {};
203
- SUBERIZED_PREFIX: string;
204
- names: {
205
- env: {};
206
- baseline: string;
207
- defaultServer: string;
208
- };
209
- reservedArgumentsNamesUglify: string[];
210
- extensions: {};
211
- notFiredevProjects: ConfigModels.LibType[];
212
- /**
213
- * Build allowed types
214
- */
215
- allowedTypes: {};
216
- moduleNameAngularLib: any[];
217
- moduleNameIsomorphicLib: any[];
218
- filesExtensions: {
219
- filetemplate: string;
220
- styles: any[];
221
- };
222
- projectTypes: {};
223
- localLibs: any[];
224
- helpAlias: string[];
225
- required: {
226
- npm: any[];
227
- niceTools: any[];
228
- programs: any[];
229
- };
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
+ shared: string;
116
+ workspace: string;
117
+ container: string;
118
+ bin: string;
119
+ _bin: string;
120
+ _vscode: string;
121
+ project: string;
122
+ external: string;
123
+ tmpDist: string;
124
+ tmpFor(d: ConfigModels.OutFolder): string;
125
+ targetProjects: {
126
+ DEFAULT_PATH_GENERATED: string;
127
+ DEFAULT_PATH_ORIGINS: string;
128
+ };
129
+ };
130
+ tempFolders: {
131
+ bundle: string;
132
+ vendor: string;
133
+ docs: string;
134
+ dist: string;
135
+ tmp: string;
136
+ tmpBundleRelease: string;
137
+ tempSrc: string;
138
+ tempSrcDist: string;
139
+ previewDistApp: string;
140
+ preview: string;
141
+ browser: string;
142
+ websql: string;
143
+ _browser: string;
144
+ module: string;
145
+ backup: string;
146
+ node_modules: string;
147
+ client: string;
148
+ tnp_tests_context: string;
149
+ tmpPackage: string;
150
+ tmpScenarios: string;
151
+ tmpTestsEnvironments: string;
152
+ testsEnvironments: string;
153
+ };
154
+ filesNotAllowedToClean: string[];
155
+ file: {
156
+ _bowerrc: string;
157
+ bower_json: string;
158
+ controllers_ts: string;
159
+ entities_ts: string;
160
+ angular_json: string;
161
+ autob_actions_js: string;
162
+ local_config_js: string;
163
+ build_config_js: string;
164
+ local_config: string;
165
+ start_backend_ts: string;
166
+ package_json: string;
167
+ result_packages_json: string;
168
+ package_json5: string;
169
+ package_json__tnp_json: string;
170
+ package_json__tnp_json5: string;
171
+ package_json__devDependencies_json: string;
172
+ yarn_lock: string;
173
+ package_lock_json: string;
174
+ tnpEnvironment_json: string;
175
+ environment: string;
176
+ environment_js: string;
177
+ tmp_transaction_pid_txt: string;
178
+ manifest_webmanifest: string;
179
+ public_api_d_ts: string;
180
+ public_api_ts: string;
181
+ public_api: string;
182
+ _babelrc: string;
183
+ index: string;
184
+ index_d_ts: string;
185
+ index_ts: string;
186
+ index_js: string;
187
+ index_js_map: string;
188
+ db_json: string;
189
+ db_for_tests_json: string;
190
+ tmpDockerImageId: string;
191
+ tmp_recent_json: string;
192
+ tmpIsomorphicPackagesJson: string;
193
+ tsconfig_json: string;
194
+ README_MD: string;
195
+ server_key: string;
196
+ server_cert: string;
197
+ server_chain_cert: string;
198
+ meta_config_md: string;
199
+ logo_png: string;
200
+ logo_svg: string;
201
+ };
202
+ default: {};
203
+ SUBERIZED_PREFIX: string;
204
+ names: {
205
+ env: {};
206
+ baseline: string;
207
+ defaultServer: string;
208
+ };
209
+ reservedArgumentsNamesUglify: string[];
210
+ extensions: {};
211
+ notFiredevProjects: ConfigModels.LibType[];
212
+ /**
213
+ * Build allowed types
214
+ */
215
+ allowedTypes: {};
216
+ moduleNameAngularLib: any[];
217
+ moduleNameIsomorphicLib: any[];
218
+ filesExtensions: {
219
+ filetemplate: string;
220
+ styles: any[];
221
+ };
222
+ projectTypes: {};
223
+ localLibs: any[];
224
+ helpAlias: string[];
225
+ required: {
226
+ npm: any[];
227
+ niceTools: any[];
228
+ programs: any[];
229
+ };
230
230
  };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "tnp-core": "~13.2.14"
3
+ "tnp-core": "~13.2.15"
4
4
  },
5
5
  "devDependencies": {
6
6
  "@angular-devkit/build-angular": "~13.3.9",
@@ -170,7 +170,7 @@
170
170
  "ng-packagr": "13.0.0",
171
171
  "ng-talkback": "~13.1.19",
172
172
  "ng2-file-upload": "1.3.0",
173
- "ng2-logger": "~13.1.20",
173
+ "ng2-logger": "~13.1.21",
174
174
  "ng2-rest": "~13.2.4",
175
175
  "ng4-icons": "~13.1.21",
176
176
  "ng4-modal": "~13.1.23",
@@ -220,8 +220,8 @@
220
220
  "sudo-block": "3.0.0",
221
221
  "systeminformation": "3.45.7",
222
222
  "task.js": "0.1.5",
223
- "tnp-cli": "~13.1.55",
224
- "tnp-config": "~13.1.71",
223
+ "tnp-cli": "~13.1.56",
224
+ "tnp-config": "~13.1.72",
225
225
  "tnp-db": "~13.1.18",
226
226
  "tnp-helpers": "~13.1.29",
227
227
  "tnp-models": "~13.1.21",
@@ -246,6 +246,6 @@
246
246
  "private": false,
247
247
  "main": "index.js",
248
248
  "name": "tnp-config",
249
- "version": "13.1.72",
250
- "lastBuildTagHash": "85a3016bb203917527f053fa5a3919bd239711ca"
249
+ "version": "13.1.73",
250
+ "lastBuildTagHash": "f9546a26c18c7cc8c8ede811d2dcb7fb95fc72cf"
251
251
  }
@@ -1,6 +1,6 @@
1
1
  // @ts-nocheck
2
- /**
3
- * Generated bundle index. Do not edit.
4
- */
5
- /// <amd-module name="tnp-config" />
2
+ /**
3
+ * Generated bundle index. Do not edit.
4
+ */
5
+ /// <amd-module name="tnp-config" />
6
6
  export * from './public-api';
package/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './lib';
1
+ export * from './lib';