tnp-config 13.1.75 → 13.1.76

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 (40) 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 +771 -771
  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 +690 -690
  9. package/browser/fesm2020/tnp-config.mjs +764 -764
  10. package/browser/lib/config.d.ts +227 -227
  11. package/browser/tnp-config.d.ts +4 -4
  12. package/client/README.md +24 -24
  13. package/client/esm2020/lib/config.mjs +771 -771
  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 +690 -690
  18. package/client/fesm2020/tnp-config.mjs +764 -764
  19. package/client/lib/config.d.ts +227 -227
  20. package/client/package.json +33 -31
  21. package/client/tnp-config.d.ts +4 -4
  22. package/index.d.ts +1 -1
  23. package/index.js.map +1 -1
  24. package/lib/config.d.ts +439 -439
  25. package/lib/config.js.map +1 -1
  26. package/lib/index.d.ts +1 -1
  27. package/lib/index.js.map +1 -1
  28. package/package.json +3 -3
  29. package/package.json_devDependencies.json +218 -218
  30. package/package.json_tnp.json5 +36 -36
  31. package/tmp-environment.json +37 -35
  32. package/websql/README.md +24 -24
  33. package/websql/esm2020/lib/config.mjs +771 -771
  34. package/websql/esm2020/lib/index.mjs +3 -3
  35. package/websql/esm2020/public-api.mjs +1 -1
  36. package/websql/esm2020/tnp-config.mjs +4 -4
  37. package/websql/fesm2015/tnp-config.mjs +690 -690
  38. package/websql/fesm2020/tnp-config.mjs +764 -764
  39. package/websql/lib/config.d.ts +227 -227
  40. package/websql/tnp-config.d.ts +4 -4
@@ -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 DatabaseType = 'better-sqlite3' | 'mysql';
46
- }
47
- export declare const GlobalLibTypeName: {};
48
- export declare const LibTypeArr: ConfigModels.LibType[];
49
- export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
50
- export declare const config: {
51
- packagesThat: {
52
- areTrustedForPatchUpdate: any[];
53
- };
54
- coreProjectVersions: string[];
55
- quickFixes: {};
56
- packageJsonSplit: any[];
57
- regexString: {
58
- pathPartStringRegex: string;
59
- };
60
- placeholders: {
61
- forProjectsInEnvironmentFile: string;
62
- };
63
- array: {
64
- isomorphicPackages: string;
65
- };
66
- defaultFrameworkVersion: ConfigModels.FrameworkVersion;
67
- CONST: {};
68
- debug: {};
69
- frameworkName: "firedev" | "tnp";
70
- frameworkNames: {
71
- tnp: string;
72
- firedev: string;
73
- };
74
- startPort: number;
75
- frameworks: ConfigModels.UIFramework[];
76
- allowedEnvironments: ConfigModels.EnvironmentName[];
77
- folder: {
78
- bundle: string;
79
- vendor: string;
80
- docs: string;
81
- dist: string;
82
- tmp: string;
83
- tmpBundleRelease: string;
84
- tempSrc: string;
85
- tempSrcDist: string;
86
- previewDistApp: string;
87
- preview: string;
88
- browser: string;
89
- websql: string;
90
- _browser: string;
91
- module: string;
92
- backup: string;
93
- node_modules: string;
94
- client: string;
95
- tnp_tests_context: string;
96
- tmpPackage: string;
97
- tmpScenarios: string;
98
- tmpTestsEnvironments: string;
99
- testsEnvironments: string;
100
- scripts: string;
101
- scenarios: string;
102
- bower: string;
103
- src: string;
104
- out: string;
105
- app: string;
106
- lib: string;
107
- libs: string;
108
- source: string;
109
- custom: string;
110
- components: string;
111
- assets: string;
112
- generated: string;
113
- apps: string;
114
- shared: 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 DatabaseType = 'better-sqlite3' | 'mysql';
46
+ }
47
+ export declare const GlobalLibTypeName: {};
48
+ export declare const LibTypeArr: ConfigModels.LibType[];
49
+ export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
50
+ export declare const config: {
51
+ packagesThat: {
52
+ areTrustedForPatchUpdate: any[];
53
+ };
54
+ coreProjectVersions: string[];
55
+ quickFixes: {};
56
+ packageJsonSplit: any[];
57
+ regexString: {
58
+ pathPartStringRegex: string;
59
+ };
60
+ placeholders: {
61
+ forProjectsInEnvironmentFile: string;
62
+ };
63
+ array: {
64
+ isomorphicPackages: string;
65
+ };
66
+ defaultFrameworkVersion: ConfigModels.FrameworkVersion;
67
+ CONST: {};
68
+ debug: {};
69
+ frameworkName: "firedev" | "tnp";
70
+ frameworkNames: {
71
+ tnp: string;
72
+ firedev: string;
73
+ };
74
+ startPort: number;
75
+ frameworks: ConfigModels.UIFramework[];
76
+ allowedEnvironments: ConfigModels.EnvironmentName[];
77
+ folder: {
78
+ bundle: string;
79
+ vendor: string;
80
+ docs: string;
81
+ dist: string;
82
+ tmp: string;
83
+ tmpBundleRelease: string;
84
+ tempSrc: string;
85
+ tempSrcDist: string;
86
+ previewDistApp: string;
87
+ preview: string;
88
+ browser: string;
89
+ websql: string;
90
+ _browser: string;
91
+ module: string;
92
+ backup: string;
93
+ node_modules: string;
94
+ client: string;
95
+ tnp_tests_context: string;
96
+ tmpPackage: string;
97
+ tmpScenarios: string;
98
+ tmpTestsEnvironments: string;
99
+ testsEnvironments: string;
100
+ scripts: string;
101
+ scenarios: string;
102
+ bower: string;
103
+ src: string;
104
+ out: string;
105
+ app: string;
106
+ lib: string;
107
+ libs: string;
108
+ source: string;
109
+ custom: string;
110
+ components: string;
111
+ assets: string;
112
+ generated: string;
113
+ apps: string;
114
+ shared: 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
  };
@@ -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/client/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # MyLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
+ > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.